1/************************************************************************* 2 * 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 * 5 * Copyright 2000, 2010 Oracle and/or its affiliates. 6 * 7 * OpenOffice.org - a multi-platform office productivity suite 8 * 9 * This file is part of OpenOffice.org. 10 * 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. 14 * 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). 20 * 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. 25 * 26 ************************************************************************/ 27#ifndef __com_sun_star_embed_EmbedMisc_idl__ 28#define __com_sun_star_embed_EmbedMisc_idl__ 29 30 31//============================================================================ 32 33module com { module sun { module star { module embed { 34 35//============================================================================ 36/** The constant set contains flags describing miscellaneous charactetistics 37 of embedded objects. 38 39 <p> 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 45 not be used. 46 </p> 47 48 @see XEmbeddedObject 49*/ 50published constants EmbedMisc 51{ 52 // analog of the MS OLEMISC enum 53 54 // ---------------------------------------------------------------------- 55 /** means that the object wish to regenerate view representation if it's 56 view in the container is resized. 57 */ 58 const hyper MS_EMBED_RECOMPOSEONRESIZE = 1; 59 60 // ---------------------------------------------------------------------- 61 /** The object has no view representation except icon. 62 */ 63 const hyper MS_EMBED_ONLYICONIC = 2; 64 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. 68 */ 69 const hyper MS_EMBED_INSERTNOTREPLACE = 4; 70 71 // ---------------------------------------------------------------------- 72 /** The object is a static object that contains only representation. 73 */ 74 const hyper MS_EMBED_STATIC = 8; 75 76 // ---------------------------------------------------------------------- 77 /** 78 */ 79 const hyper MS_EMBED_CANTLINKINSIDE = 16; 80 81 // ---------------------------------------------------------------------- 82 /** 83 */ 84 const hyper MS_EMBED_CANLINKBYOLE1 = 32; 85 86 // ---------------------------------------------------------------------- 87 /** 88 */ 89 const hyper MS_EMBED_ISLINKOBJECT = 64; 90 91 // ---------------------------------------------------------------------- 92 /** 93 */ 94 const hyper MS_EMBED_INSIDEOUT = 128; 95 96 // ---------------------------------------------------------------------- 97 /** 98 */ 99 const hyper MS_EMBED_ACTIVATEWHENVISIBLE = 256; 100 101 // ---------------------------------------------------------------------- 102 /** 103 */ 104 const hyper MS_EMBED_RENDERINGISDEVICEINDEPENDENT = 512; 105 106 // ---------------------------------------------------------------------- 107 /** 108 */ 109 const hyper MS_EMBED_INVISIBLEATRUNTIME = 1024; 110 111 // ---------------------------------------------------------------------- 112 /** 113 */ 114 const hyper MS_EMBED_ALWAYSRUN = 2048; 115 116 // ---------------------------------------------------------------------- 117 /** 118 */ 119 const hyper MS_EMBED_ACTSLIKEBUTTON = 4096; 120 121 // ---------------------------------------------------------------------- 122 /** 123 */ 124 const hyper MS_EMBED_ACTSLIKELABEL = 8192; 125 126 // ---------------------------------------------------------------------- 127 /** 128 */ 129 const hyper MS_EMBED_NOUIACTIVATE = 16384; 130 131 // ---------------------------------------------------------------------- 132 /** 133 */ 134 const hyper MS_EMBED_ALIGNABLE = 32768; 135 136 // ---------------------------------------------------------------------- 137 /** 138 */ 139 const hyper MS_EMBED_SIMPLEFRAME = 65536; 140 141 // ---------------------------------------------------------------------- 142 /** 143 */ 144 const hyper MS_EMBED_SETCLIENTSITEFIRST = 131072; 145 146 // ---------------------------------------------------------------------- 147 /** 148 */ 149 const hyper MS_EMBED_IMEMODE = 262144; 150 151 // ---------------------------------------------------------------------- 152 /** 153 */ 154 const hyper MS_EMBED_IGNOREACTIVATEWHENVISIBLE = 524288; 155 156 // ---------------------------------------------------------------------- 157 /** 158 */ 159 const hyper MS_EMBED_WANTSTOMENUMERGE = 1048576; 160 161 // ---------------------------------------------------------------------- 162 /** 163 */ 164 const hyper MS_EMBED_SUPPORTSMULTILEVELUNDO = 2097152; 165 166 // ---------------------------------------------------------------------- 167 /** 168 */ 169 const hyper EMBED_ACTIVATEIMMEDIATELY = 0x100000000; 170 171 // ---------------------------------------------------------------------- 172 /** 173 */ 174 const hyper EMBED_NEVERRESIZE = 0x200000000; 175 176 // ---------------------------------------------------------------------- 177 /** The object needs the size to be provided from the container after 178 it is loaded to function in optimal way. 179 */ 180 const hyper EMBED_NEEDSSIZEONLOAD = 0x400000000; 181 182}; 183 184//============================================================================= 185 186}; }; }; }; 187 188#endif 189