summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2004-05-10 16:59:02 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2004-05-10 16:59:02 +0000
commit320639bdf586f885778ba3b97277b7b8c500b3b7 (patch)
treecf57be12c535d43c27e784f9ca2b68f60bc70778
parentec0ad6731bd77a84c38167dc7181a92194393dd3 (diff)
INTEGRATION: CWS fwkbugfix02 (1.3.102); FILE MERGED
2004/03/25 09:06:19 mav 1.3.102.2: #116056# interfaces review 2004/03/22 10:14:23 mav 1.3.102.1: #115011# review idl files
-rw-r--r--offapi/com/sun/star/embed/Aspects.idl49
1 files changed, 33 insertions, 16 deletions
diff --git a/offapi/com/sun/star/embed/Aspects.idl b/offapi/com/sun/star/embed/Aspects.idl
index 42ff215e9..ce8a49ea9 100644
--- a/offapi/com/sun/star/embed/Aspects.idl
+++ b/offapi/com/sun/star/embed/Aspects.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: Aspects.idl,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: rt $ $Date: 2004-01-06 08:49:41 $
+ * last change: $Author: hr $ $Date: 2004-05-10 17:59:02 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -62,40 +62,57 @@
#define __com_sun_star_embed_Aspects_idl__
-//=============================================================================
+//============================================================================
module com { module sun { module star { module embed {
-//=============================================================================
-/** Possible aspects for an embedded object.
- The first 32 bits are reserved for MS aspects.
+//============================================================================
+/** The constant set contains possible aspects for an embedded object.
+
+ <p>
+ This constant set provides a set of values that
+ can be used to specify the kind of object view.
+ It can be used for example by container to request
+ view representation of a certain kind from
+ <type>XEmbeddedObject</type>.
+ </p>
+
+ <p>
+ The first 32 bits are reserved for MS OLE aspects.
+ </p>
@see XEmbeddedObject
*/
constants Aspects
{
- // MS aspects
+ // MS OLE aspects
- /** Representation of an object to be displayed as an embedded object inside a container.
+ // -----------------------------------------------------------------------
+ /** specifies view of the object to be displayed as an embedded object
+ inside a container.
*/
- const hyper MSASPECT_CONTENT = 1;
+ const hyper MSOLE_CONTENT = 1;
- /** Representation of an object to be displayed in a browsing tool.
+ // -----------------------------------------------------------------------
+ /** specifies view of the object to be displayed in a browsing tool.
*/
- const hyper MSASPECT_THUMBNAIL = 2;
+ const hyper MSOLE_THUMBNAIL = 2;
- /** Icon represents an object.
+ // -----------------------------------------------------------------------
+ /** specifies view of the object when object is represented by Icon.
*/
- const hyper MSASPECT_ICON = 4;
+ const hyper MSOLE_ICON = 4;
- /** Print preview representation.
+ // -----------------------------------------------------------------------
+ /** specifies view of the object for print preview.
*/
- const hyper MSASPECT_DOCPRINT = 8;
+ const hyper MSOLE_DOCPRINT = 8;
};
-//=============================================================================
+//============================================================================
}; }; }; };
#endif
+