summaryrefslogtreecommitdiff
path: root/writerfilter/source/dmapper/DomainMapperTableManager.hxx
diff options
context:
space:
mode:
authorOliver Specht <os@openoffice.org>2007-06-18 11:32:26 +0000
committerOliver Specht <os@openoffice.org>2007-06-18 11:32:26 +0000
commitba8dceb7228942962fb3962896a33dedef3fd9df (patch)
tree866e4bb207f0b4ed837b8255beb7e060762af657 /writerfilter/source/dmapper/DomainMapperTableManager.hxx
parentf45238a0150150afbce20c62d93af7605ee5d9ba (diff)
ooxml table import
Diffstat (limited to 'writerfilter/source/dmapper/DomainMapperTableManager.hxx')
-rw-r--r--writerfilter/source/dmapper/DomainMapperTableManager.hxx11
1 files changed, 9 insertions, 2 deletions
diff --git a/writerfilter/source/dmapper/DomainMapperTableManager.hxx b/writerfilter/source/dmapper/DomainMapperTableManager.hxx
index 2e60caade707..005bbaf8a525 100644
--- a/writerfilter/source/dmapper/DomainMapperTableManager.hxx
+++ b/writerfilter/source/dmapper/DomainMapperTableManager.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: DomainMapperTableManager.hxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: os $ $Date: 2007-05-09 13:57:29 $
+ * last change: $Author: os $ $Date: 2007-06-18 12:31:12 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -45,6 +45,7 @@
#ifndef _COM_SUN_STAR_TEXT_XTEXTRANGE_HPP_
#include <com/sun/star/text/XTextRange.hpp>
#endif
+#include <vector>
namespace dmapper {
typedef ::com::sun::star::uno::Reference< ::com::sun::star::text::XTextRange > Handle_t;
@@ -58,6 +59,12 @@ class DomainMapperTableManager : public DomainMapperTableManager_Base_t
sal_Int32 m_nGapHalf; // necessary value to calculate width and columns
sal_Int32 m_nLeftMargin; // to-be-combined width m_nGapHalf
sal_Int32 m_nTableWidth; //might be set directly or has to be calculated from the column positions
+ bool m_bFullWidth; //width is set to full, disable setting of different orientation values
+
+ ::std::vector<sal_Int32> m_aCellWidths;
+
+ virtual void clearData();
+
public:
DomainMapperTableManager();