summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2003-06-30 14:58:17 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2003-06-30 14:58:17 +0000
commit6d254be6bf810bd187a1ff821cf2dc1306803dda (patch)
treeb24252c93d81532ee0e163b45b87aae331593e73 /xmloff
parent35e97bdce7ebfb15f7448bdd788fc4173dff5de7 (diff)
INTEGRATION: CWS aig04 (1.24.44); FILE MERGED
2003/06/13 12:39:34 dvo 1.24.44.1: #108791# added load/save of drop down field (preliminary)
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/inc/txtflde.hxx16
1 files changed, 14 insertions, 2 deletions
diff --git a/xmloff/inc/txtflde.hxx b/xmloff/inc/txtflde.hxx
index a0bf555a511e..0923c53c9771 100644
--- a/xmloff/inc/txtflde.hxx
+++ b/xmloff/inc/txtflde.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: txtflde.hxx,v $
*
- * $Revision: 1.24 $
+ * $Revision: 1.25 $
*
- * last change: $Author: hr $ $Date: 2003-03-27 18:19:58 $
+ * last change: $Author: hr $ $Date: 2003-06-30 15:58:17 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -97,6 +97,7 @@ namespace com { namespace sun { namespace star {
namespace text { class XText; }
namespace beans { class XPropertySet; }
namespace frame { class XModel; }
+ namespace uno { template<typename A> class Sequence; }
} } }
namespace rtl { class OUString; }
@@ -191,6 +192,7 @@ enum FieldIdEnum {
FIELD_ID_MEASURE, // for measure shapes
FIELD_ID_TABLE_FORMULA, // DEPRECATED: table formulas (Writer 2.0)
+ FIELD_ID_DROP_DOWN, // DEPRECATED: dropdown fields (WW8)
FIELD_ID_UNKNOWN // invalid or unknown field type!
};
@@ -404,6 +406,14 @@ protected:
void ProcessCommandType(
sal_Int32 nCommandType); /// com::sun::star::sdb::CommandType
+ void ProcessStringSequence(
+ const ::com::sun::star::uno::Sequence<rtl::OUString>& rSequence,
+ const rtl::OUString sSelected );
+
+ void ProcessStringSequence(
+ const ::com::sun::star::uno::Sequence<rtl::OUString>& rSequence,
+ sal_Int32 nSelected );
+
/// for XDependentTextFields, get PropertySet of FieldMaster
::com::sun::star::uno::Reference < ::com::sun::star::beans::XPropertySet >
GetMasterPropertySet(const ::com::sun::star::uno::Reference <
@@ -520,6 +530,8 @@ private:
const ::rtl::OUString sPropertyDataCommandType;
const ::rtl::OUString sPropertyIsFixedLanguage;
const ::rtl::OUString sPropertyCharStyleNames;
+ const ::rtl::OUString sPropertyItems;
+ const ::rtl::OUString sPropertySelectedItem;
const ::rtl::OUString sEmpty;