summaryrefslogtreecommitdiff
path: root/xmloff/inc/txtflde.hxx
diff options
context:
space:
mode:
authorDaniel Vogelheim <dvo@openoffice.org>2001-01-15 12:36:17 +0000
committerDaniel Vogelheim <dvo@openoffice.org>2001-01-15 12:36:17 +0000
commit5689a392042b1a4c90d08def617eae58edba049c (patch)
tree4504afafc8ac2f808f36455e4d755c0ad1d655d7 /xmloff/inc/txtflde.hxx
parent8967409f68801b7b0e8acd8cce1afc923716a39a (diff)
- added: annotations im-/export (annotation fields)
- added: script im-/export (script fields)
Diffstat (limited to 'xmloff/inc/txtflde.hxx')
-rw-r--r--xmloff/inc/txtflde.hxx21
1 files changed, 18 insertions, 3 deletions
diff --git a/xmloff/inc/txtflde.hxx b/xmloff/inc/txtflde.hxx
index c3852b5bdc5e..89de05880b36 100644
--- a/xmloff/inc/txtflde.hxx
+++ b/xmloff/inc/txtflde.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: txtflde.hxx,v $
*
- * $Revision: 1.10 $
+ * $Revision: 1.11 $
*
- * last change: $Author: dvo $ $Date: 2000-12-11 19:10:43 $
+ * last change: $Author: dvo $ $Date: 2001-01-15 13:36:16 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -78,7 +78,8 @@ class SvXMLExport;
class SvXMLNumFmtExport;
namespace com { namespace sun { namespace star { namespace util {
-struct DateTime;
+ struct DateTime;
+ struct Date;
}}}}
/// field IDs,
@@ -280,6 +281,11 @@ protected:
const sal_Char* pValue, /// attribute value
const sal_Char* pDefault); /// attribute default
+ /// export a string as a sequence of paragraphs
+ void ProcessParagraphSequence(
+ /// string containing the paragraphs
+ const ::rtl::OUString& sParagraphSequence);
+
/// export a numbering format (numeric, roman, alphabetic, etc.)
void ProcessNumberingType(
sal_Int16 nNumberingType); /// numbering type key
@@ -322,6 +328,11 @@ protected:
const ::com::sun::star::util::DateTime& rTime, /// date/time value
sal_Bool bIsDate ); /// export as date (rather than date/time)?
+ /// export date according to ISO 8601
+ void ProcessDate(
+ const sal_Char* sXMLName, /// name of attribute
+ const ::com::sun::star::util::Date& rTime); /// date value
+
/// export all attributes for bibliography data fields
void ProcessBibliographyData(
::com::sun::star::uno::Reference <
@@ -432,6 +443,10 @@ private:
const ::rtl::OUString sPropertyURL;
const ::rtl::OUString sPropertyTargetFrame;
const ::rtl::OUString sPropertyFields;
+ const ::rtl::OUString sPropertyScriptType;
+ const ::rtl::OUString sPropertyURLContent;
+ const ::rtl::OUString sPropertyAuthor;
+ const ::rtl::OUString sPropertyDate;
const ::rtl::OUString sEmpty;
};