summaryrefslogtreecommitdiff
path: root/offapi
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2004-10-04 16:38:16 +0000
committerKurt Zenker <kz@openoffice.org>2004-10-04 16:38:16 +0000
commit6b05019f352b6f872514fbd930dfc17301bdd1bf (patch)
treedc1493930733adbc8f8eecb0c48f7da2b6983847 /offapi
parentffa3c14111c372760a274cd5e9f21fae3e3746a7 (diff)
INTEGRATION: CWS mav09 (1.3.2); FILE MERGED
2004/07/06 16:22:47 mba 1.3.2.2: #i27773#: new constant for non-resizable objects 2004/05/24 08:43:01 mba 1.3.2.1: #i27773#: some changes about MapUnit
Diffstat (limited to 'offapi')
-rw-r--r--offapi/com/sun/star/embed/EmbedMisc.idl95
1 files changed, 53 insertions, 42 deletions
diff --git a/offapi/com/sun/star/embed/EmbedMisc.idl b/offapi/com/sun/star/embed/EmbedMisc.idl
index 95b3e49ff..c8ce03a0c 100644
--- a/offapi/com/sun/star/embed/EmbedMisc.idl
+++ b/offapi/com/sun/star/embed/EmbedMisc.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: EmbedMisc.idl,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: hr $ $Date: 2004-05-10 17:59:44 $
+ * last change: $Author: kz $ $Date: 2004-10-04 17:38:16 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -69,7 +69,7 @@ module com { module sun { module star { module embed {
//============================================================================
/** The constant set contains flags describing miscellaneous charactetistics
of embedded objects.
-
+
<p>
The constant values can be combined with 'or' operation.
The first 32 bits are reserved for MS values, they are added because
@@ -78,7 +78,7 @@ module com { module sun { module star { module embed {
to container. In case own specific values should be added those bits can
not be used.
</p>
-
+
@see XEmbeddedObject
*/
constants EmbedMisc
@@ -89,113 +89,124 @@ constants EmbedMisc
/** means that the object wish to regenerate view representation if it's
view in the container is resized.
*/
- const hyper MS_EMBED_RECOMPOSEONRESIZE = 1;
+ const hyper MS_EMBED_RECOMPOSEONRESIZE = 1;
// ----------------------------------------------------------------------
/** The object has no view representation except icon.
*/
- const hyper MS_EMBED_ONLYICONIC = 2;
+ const hyper MS_EMBED_ONLYICONIC = 2;
// ----------------------------------------------------------------------
/** If the object is generated from a selection, the selection should not
be removed, the object should be inserted beside the selection.
*/
- const hyper MS_EMBED_INSERTNOTREPLACE = 4;
+ const hyper MS_EMBED_INSERTNOTREPLACE = 4;
// ----------------------------------------------------------------------
/** The object is a static object that contains only representation.
*/
- const hyper MS_EMBED_STATIC = 8;
+ const hyper MS_EMBED_STATIC = 8;
// ----------------------------------------------------------------------
- /**
+ /**
*/
- const hyper MS_EMBED_CANTLINKINSIDE = 16;
+ const hyper MS_EMBED_CANTLINKINSIDE = 16;
// ----------------------------------------------------------------------
- /**
+ /**
*/
- const hyper MS_EMBED_CANLINKBYOLE1 = 32;
+ const hyper MS_EMBED_CANLINKBYOLE1 = 32;
// ----------------------------------------------------------------------
- /**
+ /**
*/
- const hyper MS_EMBED_ISLINKOBJECT = 64;
+ const hyper MS_EMBED_ISLINKOBJECT = 64;
// ----------------------------------------------------------------------
- /**
+ /**
*/
- const hyper MS_EMBED_INSIDEOUT = 128;
+ const hyper MS_EMBED_INSIDEOUT = 128;
// ----------------------------------------------------------------------
- /**
+ /**
*/
- const hyper MS_EMBED_ACTIVATEWHENVISIBLE = 256;
+ const hyper MS_EMBED_ACTIVATEWHENVISIBLE = 256;
// ----------------------------------------------------------------------
- /**
+ /**
*/
- const hyper MS_EMBED_RENDERINGISDEVICEINDEPENDENT = 512;
+ const hyper MS_EMBED_RENDERINGISDEVICEINDEPENDENT = 512;
// ----------------------------------------------------------------------
- /**
+ /**
*/
const hyper MS_EMBED_INVISIBLEATRUNTIME = 1024;
// ----------------------------------------------------------------------
- /**
+ /**
*/
- const hyper MS_EMBED_ALWAYSRUN = 2048;
+ const hyper MS_EMBED_ALWAYSRUN = 2048;
// ----------------------------------------------------------------------
- /**
+ /**
*/
- const hyper MS_EMBED_ACTSLIKEBUTTON = 4096;
+ const hyper MS_EMBED_ACTSLIKEBUTTON = 4096;
// ----------------------------------------------------------------------
- /**
+ /**
*/
- const hyper MS_EMBED_ACTSLIKELABEL = 8192;
+ const hyper MS_EMBED_ACTSLIKELABEL = 8192;
// ----------------------------------------------------------------------
- /**
+ /**
*/
- const hyper MS_EMBED_NOUIACTIVATE = 16384;
+ const hyper MS_EMBED_NOUIACTIVATE = 16384;
// ----------------------------------------------------------------------
- /**
+ /**
*/
- const hyper MS_EMBED_ALIGNABLE = 32768;
+ const hyper MS_EMBED_ALIGNABLE = 32768;
// ----------------------------------------------------------------------
- /**
+ /**
*/
- const hyper MS_EMBED_SIMPLEFRAME = 65536;
+ const hyper MS_EMBED_SIMPLEFRAME = 65536;
// ----------------------------------------------------------------------
- /**
+ /**
*/
- const hyper MS_EMBED_SETCLIENTSITEFIRST = 131072;
+ const hyper MS_EMBED_SETCLIENTSITEFIRST = 131072;
// ----------------------------------------------------------------------
- /**
+ /**
*/
- const hyper MS_EMBED_IMEMODE = 262144;
+ const hyper MS_EMBED_IMEMODE = 262144;
// ----------------------------------------------------------------------
- /**
+ /**
*/
- const hyper MS_EMBED_IGNOREACTIVATEWHENVISIBLE = 524288;
+ const hyper MS_EMBED_IGNOREACTIVATEWHENVISIBLE = 524288;
// ----------------------------------------------------------------------
- /**
+ /**
*/
- const hyper MS_EMBED_WANTSTOMENUMERGE = 1048576;
+ const hyper MS_EMBED_WANTSTOMENUMERGE = 1048576;
// ----------------------------------------------------------------------
- /**
+ /**
*/
const hyper MS_EMBED_SUPPORTSMULTILEVELUNDO = 2097152;
+
+ // ----------------------------------------------------------------------
+ /**
+ */
+ const hyper EMBED_ACTIVATEIMMEDIATELY = 4294967296;
+
+ // ----------------------------------------------------------------------
+ /**
+ */
+ const hyper EMBED_NEVERRESIZE = 8589934592;
+
};
//=============================================================================