merged tag ooo/OOO330_m14
[LibreOffice.git] / offapi / com / sun / star / embed / EmbedVerbs.idl
blob5d34fb1e815360ac1658f86669eec300331da6f4
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_EmbedVerbs_idl__
28 #define __com_sun_star_embed_EmbedVerbs_idl__
31 //============================================================================
33 module com { module sun { module star { module embed {
35 //============================================================================
36 /** This constants set contains possible verbs for a contained object.
38 @see XEmbeddedObject
40 published constants EmbedVerbs
42 //------------------------------------------------------------------------
43 /** lets the object do default activation, as by doubleclick.
45 const long MS_OLEVERB_PRIMARY = 0;
47 //------------------------------------------------------------------------
48 /** lets the object open itself for editing of viewing.
50 const long MS_OLEVERB_SHOW = -1;
52 //------------------------------------------------------------------------
53 /** lets the object activate itself outplace.
55 const long MS_OLEVERB_OPEN = -2;
57 //------------------------------------------------------------------------
58 /** lets the inplace object remove its UI from container.
60 const long MS_OLEVERB_HIDE = -3;
62 //------------------------------------------------------------------------
63 /** lets the object proceed with UI activation.
65 const long MS_OLEVERB_UIACTIVATE = -4;
67 //------------------------------------------------------------------------
68 /** lets the object activate itself inplace.
70 const long MS_OLEVERB_IPACTIVATE = -5;
72 //------------------------------------------------------------------------
73 /** lets the object forget any undo state.
75 const long MS_OLEVERB_DISCARDUNDOSTATE = -6;
79 //============================================================================
81 }; }; }; };
83 #endif