summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/sheet/SpreadsheetDocumentSettings.idl
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2008-01-10 11:41:54 +0000
committerOliver Bolte <obo@openoffice.org>2008-01-10 11:41:54 +0000
commitbd887463278b7bb0b0cd7891f992e2538fd71ba0 (patch)
tree6c8c40faae93ab2f6fb2b16a5abab6dbf4bcc4be /offapi/com/sun/star/sheet/SpreadsheetDocumentSettings.idl
parent46a3e5ac0cb0964dec704f6e66067c406c709518 (diff)
INTEGRATION: CWS xmlfilter02 (1.10.72); FILE MERGED
2007/11/22 09:05:38 tbe 1.10.72.7: #i81572# API: need interface to add linked sheets 2007/07/20 12:30:20 tbe 1.10.72.6: #i79826# API: missing property to suppress automatic adjustment of row height 2007/04/17 10:55:42 tbe 1.10.72.5: #i76026# API: Undo history must be disabled while loading file 2007/03/26 13:58:36 tbe 1.10.72.4: #i75447# API: get an XDevice from the document 2007/03/26 13:56:58 tbe 1.10.72.3: #i74668# missing property to suppress default sheets 2007/03/23 15:44:32 tbe 1.10.72.2: #i75447# API: get an XDevice from the document 2007/03/20 12:53:04 tbe 1.10.72.1: #i74668# missing property to suppress default sheets
Diffstat (limited to 'offapi/com/sun/star/sheet/SpreadsheetDocumentSettings.idl')
-rw-r--r--offapi/com/sun/star/sheet/SpreadsheetDocumentSettings.idl49
1 files changed, 47 insertions, 2 deletions
diff --git a/offapi/com/sun/star/sheet/SpreadsheetDocumentSettings.idl b/offapi/com/sun/star/sheet/SpreadsheetDocumentSettings.idl
index d632c3348033..5d0117a99ffa 100644
--- a/offapi/com/sun/star/sheet/SpreadsheetDocumentSettings.idl
+++ b/offapi/com/sun/star/sheet/SpreadsheetDocumentSettings.idl
@@ -4,9 +4,9 @@
*
* $RCSfile: SpreadsheetDocumentSettings.idl,v $
*
- * $Revision: 1.10 $
+ * $Revision: 1.11 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 04:52:31 $
+ * last change: $Author: obo $ $Date: 2008-01-10 12:41:54 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -52,6 +52,10 @@
#include <com/sun/star/lang/Locale.idl>
#endif
+#ifndef __com_sun_star_awt_XDevice_idl__
+#include <com/sun/star/awt/XDevice.idl>
+#endif
+
//=============================================================================
module com { module sun { module star { module sheet {
@@ -203,6 +207,47 @@ published service SpreadsheetDocumentSettings
*/
[optional, property] com::sun::star::lang::Locale CharLocaleComplex;
+ //-------------------------------------------------------------------------
+
+ /** specifies whether the document data are already loaded.
+
+ @since CWS xmlfilter02
+ */
+ [optional, property] boolean IsLoaded;
+
+ //-------------------------------------------------------------------------
+
+ /** specifies whether the undo command is enabled.
+
+ @since CWS xmlfilter02
+ */
+ [optional, property] boolean IsUndoEnabled;
+
+ //-------------------------------------------------------------------------
+
+ /** specifies whether the automatic adjustment of the row height is
+ enabled.
+
+ @since CWS xmlfilter02
+ */
+ [optional, property] boolean IsAdjustHeightEnabled;
+
+ //-------------------------------------------------------------------------
+
+ /** specifies whether the automatic execution of links is enabled.
+
+ @since CWS xmlfilter02
+ */
+ [optional, property] boolean IsExecuteLinkEnabled;
+
+ //-------------------------------------------------------------------------
+
+ /** contains the reference device used for formatting the document.
+
+ @since CWS xmlfilter02
+ */
+ [readonly, optional, property] com::sun::star::awt::XDevice ReferenceDevice;
+
};
//=============================================================================