summaryrefslogtreecommitdiff
path: root/sc/source/filter/xml/xmlstyle.hxx
diff options
context:
space:
mode:
authorSascha Ballach <sab@openoffice.org>2002-04-05 05:43:44 +0000
committerSascha Ballach <sab@openoffice.org>2002-04-05 05:43:44 +0000
commit4a5ad268a736a95338a8f3545e4ae9c70e62675b (patch)
treeb4e719a91113cc96efdc7dd4f9e6e78f8118954e /sc/source/filter/xml/xmlstyle.hxx
parent5b7dd675bc65d1d5f0b33022536611a4f973003e (diff)
#98410#; add style:glyph-orientation-vertical to represent vertical writing in calc
Diffstat (limited to 'sc/source/filter/xml/xmlstyle.hxx')
-rw-r--r--sc/source/filter/xml/xmlstyle.hxx14
1 files changed, 12 insertions, 2 deletions
diff --git a/sc/source/filter/xml/xmlstyle.hxx b/sc/source/filter/xml/xmlstyle.hxx
index 1f97b0df67b5..ddf3c7728ba0 100644
--- a/sc/source/filter/xml/xmlstyle.hxx
+++ b/sc/source/filter/xml/xmlstyle.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: xmlstyle.hxx,v $
*
- * $Revision: 1.22 $
+ * $Revision: 1.23 $
*
- * last change: $Author: dvo $ $Date: 2001-10-25 21:06:54 $
+ * last change: $Author: sab $ $Date: 2002-04-05 06:43:44 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -109,6 +109,7 @@ extern const XMLPropertyMapEntry aXMLScTableStylesProperties[];
#define XML_SC_TYPE_VERTJUSTIFY (XML_SC_TYPES_START + 13)
#define XML_SC_ISTEXTWRAPPED (XML_SC_TYPES_START + 14)
#define XML_SC_TYPE_EQUAL (XML_SC_TYPES_START + 15)
+#define XML_SC_TYPE_VERTICAL (XML_SC_TYPES_START + 16)
#define CTF_SC_HORIJUSTIFY (XML_SC_CTF_START + 1)
#define CTF_SC_HORIJUSTIFY_SOURCE (XML_SC_CTF_START + 2)
@@ -378,4 +379,13 @@ public:
virtual sal_Bool exportXML( ::rtl::OUString& rStrExpValue, const ::com::sun::star::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const;
};
+class XmlScPropHdl_Vertical : public XMLPropertyHandler
+{
+public:
+ virtual ~XmlScPropHdl_Vertical();
+ virtual sal_Bool equals( const ::com::sun::star::uno::Any& r1, const ::com::sun::star::uno::Any& r2 ) const;
+ virtual sal_Bool importXML( const ::rtl::OUString& rStrImpValue, ::com::sun::star::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const;
+ virtual sal_Bool exportXML( ::rtl::OUString& rStrExpValue, const ::com::sun::star::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const;
+};
+
#endif