1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * This file is part of OpenOffice.org.
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org. If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
26 ************************************************************************/
27 #ifndef __com_sun_star_embed_EmbedMisc_idl__
28 #define __com_sun_star_embed_EmbedMisc_idl__
31 //============================================================================
33 module com
{ module sun
{ module star
{ module embed
{
35 //============================================================================
36 /** The constant set contains flags describing miscellaneous charactetistics
40 The constant values can be combined with 'or' operation.
41 The first 32 bits are reserved for MS values, they are added because
42 this API is going to be used to embed MS OLE objects into OOo documents,
43 so there should be a possibility to transfer all the possible MS flags
44 to container. In case own specific values should be added those bits can
50 published constants EmbedMisc
52 // analog of the MS OLEMISC enum
54 // ----------------------------------------------------------------------
55 /** means that the object wish to regenerate view representation if it's
56 view in the container is resized.
58 const hyper MS_EMBED_RECOMPOSEONRESIZE
= 1;
60 // ----------------------------------------------------------------------
61 /** The object has no view representation except icon.
63 const hyper MS_EMBED_ONLYICONIC
= 2;
65 // ----------------------------------------------------------------------
66 /** If the object is generated from a selection, the selection should not
67 be removed, the object should be inserted beside the selection.
69 const hyper MS_EMBED_INSERTNOTREPLACE
= 4;
71 // ----------------------------------------------------------------------
72 /** The object is a static object that contains only representation.
74 const hyper MS_EMBED_STATIC
= 8;
76 // ----------------------------------------------------------------------
79 const hyper MS_EMBED_CANTLINKINSIDE
= 16;
81 // ----------------------------------------------------------------------
84 const hyper MS_EMBED_CANLINKBYOLE1
= 32;
86 // ----------------------------------------------------------------------
89 const hyper MS_EMBED_ISLINKOBJECT
= 64;
91 // ----------------------------------------------------------------------
94 const hyper MS_EMBED_INSIDEOUT
= 128;
96 // ----------------------------------------------------------------------
99 const hyper MS_EMBED_ACTIVATEWHENVISIBLE
= 256;
101 // ----------------------------------------------------------------------
104 const hyper MS_EMBED_RENDERINGISDEVICEINDEPENDENT
= 512;
106 // ----------------------------------------------------------------------
109 const hyper MS_EMBED_INVISIBLEATRUNTIME
= 1024;
111 // ----------------------------------------------------------------------
114 const hyper MS_EMBED_ALWAYSRUN
= 2048;
116 // ----------------------------------------------------------------------
119 const hyper MS_EMBED_ACTSLIKEBUTTON
= 4096;
121 // ----------------------------------------------------------------------
124 const hyper MS_EMBED_ACTSLIKELABEL
= 8192;
126 // ----------------------------------------------------------------------
129 const hyper MS_EMBED_NOUIACTIVATE
= 16384;
131 // ----------------------------------------------------------------------
134 const hyper MS_EMBED_ALIGNABLE
= 32768;
136 // ----------------------------------------------------------------------
139 const hyper MS_EMBED_SIMPLEFRAME
= 65536;
141 // ----------------------------------------------------------------------
144 const hyper MS_EMBED_SETCLIENTSITEFIRST
= 131072;
146 // ----------------------------------------------------------------------
149 const hyper MS_EMBED_IMEMODE
= 262144;
151 // ----------------------------------------------------------------------
154 const hyper MS_EMBED_IGNOREACTIVATEWHENVISIBLE
= 524288;
156 // ----------------------------------------------------------------------
159 const hyper MS_EMBED_WANTSTOMENUMERGE
= 1048576;
161 // ----------------------------------------------------------------------
164 const hyper MS_EMBED_SUPPORTSMULTILEVELUNDO
= 2097152;
166 // ----------------------------------------------------------------------
169 const hyper EMBED_ACTIVATEIMMEDIATELY
= 0x100000000;
171 // ----------------------------------------------------------------------
174 const hyper EMBED_NEVERRESIZE
= 0x200000000;
176 // ----------------------------------------------------------------------
177 /** The object needs the size to be provided from the container after
178 it is loaded to function in optimal way.
180 const hyper EMBED_NEEDSSIZEONLOAD
= 0x400000000;
184 //=============================================================================