summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/embed
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2004-05-10 17:02:48 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2004-05-10 17:02:48 +0000
commit3be3286b65076a93a88608290e4f02b8c50ce2c3 (patch)
tree7de7d283e5c27f9fc28b5496e168c11a5a75a019 /offapi/com/sun/star/embed
parent12d9d8b21f25ce60a4a219b0e293399ad87606f5 (diff)
INTEGRATION: CWS fwkbugfix02 (1.2.102); FILE MERGED
2004/03/31 15:57:51 mav 1.2.102.2: #116056# use VerbDescriptor 2004/03/22 10:14:29 mav 1.2.102.1: #115011# review idl files
Diffstat (limited to 'offapi/com/sun/star/embed')
-rw-r--r--offapi/com/sun/star/embed/VerbAttributes.idl65
1 files changed, 19 insertions, 46 deletions
diff --git a/offapi/com/sun/star/embed/VerbAttributes.idl b/offapi/com/sun/star/embed/VerbAttributes.idl
index 0f85d0761154..ef8ae9ddc611 100644
--- a/offapi/com/sun/star/embed/VerbAttributes.idl
+++ b/offapi/com/sun/star/embed/VerbAttributes.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: VerbAttributes.idl,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: rt $ $Date: 2004-01-06 08:51:05 $
+ * last change: $Author: hr $ $Date: 2004-05-10 18:02:48 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -58,63 +58,36 @@
*
*
************************************************************************/
-#ifndef __com_sun_star_embed_ElementModes_idl__
-#define __com_sun_star_embed_ElementModes_idl__
+#ifndef __com_sun_star_embed_VerbAttributes_idl__
+#define __com_sun_star_embed_VerbAttributes_idl__
-//=============================================================================
+//============================================================================
module com { module sun { module star { module embed {
-//=============================================================================
-/** There are possible modes to open element.
- The modes can be combined by 'or' operation.
- ELEMENT_READ and ELEMENT_WRITE are kind of base modes.
- A result mode must include one of base modes.
+//============================================================================
+/** The constant set specifies possible attributes of a verb.
+
+ @see VerbDescriptor
*/
-constants ElementModes
+constants VerbAttributes
{
- //-------------------------------------------------------------------------
- /** Open element for reading.
- */
- const long ELEMENT_READ = 1;
-
- //-------------------------------------------------------------------------
- /** Open seekable element. Ignored for storages.
- */
- const long ELEMENT_SEEKABLE = 2;
-
- //-------------------------------------------------------------------------
- /** Open seekable element for reading. This is just a combination of the previous two values.
- For storages it's the same as ELEMENT_READ.
- */
- const long ELEMENT_SEEKABLEREAD = 3;
-
- //-------------------------------------------------------------------------
- /** Open element in write mode.
- */
- const long ELEMENT_WRITE = 4;
-
- //-------------------------------------------------------------------------
- /** Open element in readwrite mode. A stream must be opened also in seekable mode.
+ // -----------------------------------------------------------------------
+ /** Execution of the verb with this attribute must not modify the
+ object.
*/
- const long ELEMENT_READWRITE = 7;
+ const long MS_VERBATTR_NEVERDIRTIES = 1;
- //-------------------------------------------------------------------------
- /** Truncate opened for writing element.
- flag.
+ // -----------------------------------------------------------------------
+ /** indicates that the verb should appear in the object's menu.
*/
- const long ELEMENT_TRUNCATE = 8;
-
- //-------------------------------------------------------------------------
- /** Do not create a new element in case a requested one does not exist.
- Applicable only for elements opened for writing.
- */
- const long ELEMENT_NOCREATE = 16;
+ const long MS_VERBATTR_ONCONTAINERMENU = 2;
};
-//=============================================================================
+//============================================================================
}; }; }; };
#endif
+