summaryrefslogtreecommitdiff
path: root/sc/source/filter/inc/excdefs.hxx
diff options
context:
space:
mode:
authorDaniel Rentz <dr@openoffice.org>2002-09-16 08:28:09 +0000
committerDaniel Rentz <dr@openoffice.org>2002-09-16 08:28:09 +0000
commit320b011e815b6ebda1e3711dc731d9019125b723 (patch)
treee8f69789df70d10b2d342fe0d34f7e2d59c4fb5c /sc/source/filter/inc/excdefs.hxx
parentdf8886e0a407825f46b372b80e34a24f74249db9 (diff)
#101763# CTL text direction
Diffstat (limited to 'sc/source/filter/inc/excdefs.hxx')
-rw-r--r--sc/source/filter/inc/excdefs.hxx14
1 files changed, 12 insertions, 2 deletions
diff --git a/sc/source/filter/inc/excdefs.hxx b/sc/source/filter/inc/excdefs.hxx
index c2adae15537e..3d747f32ea03 100644
--- a/sc/source/filter/inc/excdefs.hxx
+++ b/sc/source/filter/inc/excdefs.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: excdefs.hxx,v $
*
- * $Revision: 1.33 $
+ * $Revision: 1.34 $
*
- * last change: $Author: dr $ $Date: 2002-05-22 11:10:31 $
+ * last change: $Author: dr $ $Date: 2002-09-16 09:26:40 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -147,6 +147,15 @@ enum XclTextWrap
xlTextWrapParent = 0xFF
};
+/** CTL text direction. */
+enum XclTextDirection
+{
+ xlTextDirContext = 0x00,
+ xlTextDirLTR = 0x01,
+ xlTextDirRTL = 0x02,
+ xlTextDirParent = 0xFF
+};
+
#define EXC_ROT_STACKED 0xFF
@@ -316,6 +325,7 @@ enum XclEscapement
#define EXC_XF8_GETINDENT(nFlag) (static_cast< sal_uInt16 >( nFlag & 0x000F ) * 200)
#define EXC_XF8_GETROT(nFlag) static_cast< sal_uInt8 >( (nFlag & 0xFF00) >> 8 )
+#define EXC_XF8_GETTEXTDIR(nFlag) static_cast< XclTextDirection >( (nFlag & 0x00C0) >> 6 )
// (0x005D) OBJ ===============================================================