summaryrefslogtreecommitdiff
path: root/writerfilter/source/doctok/WW8ListTable.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'writerfilter/source/doctok/WW8ListTable.cxx')
-rw-r--r--writerfilter/source/doctok/WW8ListTable.cxx156
1 files changed, 156 insertions, 0 deletions
diff --git a/writerfilter/source/doctok/WW8ListTable.cxx b/writerfilter/source/doctok/WW8ListTable.cxx
new file mode 100644
index 000000000000..2dddb931ad9b
--- /dev/null
+++ b/writerfilter/source/doctok/WW8ListTable.cxx
@@ -0,0 +1,156 @@
+/*************************************************************************
+ *
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * Copyright 2008 by Sun Microsystems, Inc.
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * $RCSfile: WW8ListTable.cxx,v $
+ * $Revision: 1.4 $
+ *
+ * This file is part of OpenOffice.org.
+ *
+ * OpenOffice.org is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License version 3
+ * only, as published by the Free Software Foundation.
+ *
+ * OpenOffice.org is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License version 3 for more details
+ * (a copy is included in the LICENSE file that accompanied this code).
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * version 3 along with OpenOffice.org. If not, see
+ * <http://www.openoffice.org/license.html>
+ * for a copy of the LGPLv3 License.
+ *
+ ************************************************************************/
+
+#include <resources.hxx>
+
+namespace writerfilter {
+namespace doctok {
+
+void WW8ListTable::initPayload()
+{
+ sal_uInt32 nCount = getEntryCount();
+
+ sal_uInt32 nOffset = 2;
+ sal_uInt32 nOffsetLevel = mnPlcfPayloadOffset;
+ for (sal_uInt32 n = 0; n < nCount; ++n)
+ {
+ WW8List aList(this, nOffset);
+
+ entryOffsets.push_back(nOffset);
+ payloadIndices.push_back(payloadOffsets.size());
+ nOffset += WW8List::getSize();
+
+ sal_uInt32 nLvlCount = aList.get_fSimpleList() ? 1 : 9;
+
+ for (sal_uInt32 i = 0; i < nLvlCount; ++i)
+ {
+ WW8ListLevel aLevel(this, nOffsetLevel);
+
+ payloadOffsets.push_back(nOffsetLevel);
+
+ nOffsetLevel += aLevel.calcSize();
+
+ sal_uInt32 nXstSize = getU16(nOffsetLevel);
+
+ nOffsetLevel += 2 + nXstSize * 2;
+ }
+
+ if (nOffsetLevel > getCount())
+ {
+ nOffsetLevel = getCount();
+
+ break;
+ }
+ }
+
+ payloadOffsets.push_back(nOffsetLevel);
+ entryOffsets.push_back(nOffset);
+}
+
+sal_uInt32 WW8ListTable::calcPayloadOffset()
+{
+ return 0;
+}
+
+sal_uInt32 WW8ListTable::getEntryCount()
+{
+ return getU16(0);
+}
+
+writerfilter::Reference<Properties>::Pointer_t
+WW8ListTable::getEntry(sal_uInt32 nIndex)
+{
+ WW8List * pList = new WW8List(this, entryOffsets[nIndex]);
+
+ pList->setIndex(nIndex);
+
+ return writerfilter::Reference<Properties>::Pointer_t
+ (pList);
+}
+
+sal_uInt32 WW8List::get_listlevel_count()
+{
+ if (get_fSimpleList())
+ return 1;
+
+ return 9;
+}
+
+writerfilter::Reference<Properties>::Pointer_t
+WW8List::get_listlevel(sal_uInt32 nIndex)
+{
+ WW8ListTable * pListTable = dynamic_cast<WW8ListTable *>(mpParent);
+ sal_uInt32 nPayloadIndex = pListTable->getPayloadIndex(mnIndex) + nIndex;
+ sal_uInt32 nPayloadOffset = pListTable->getPayloadOffset(nPayloadIndex);
+ sal_uInt32 nPayloadSize = pListTable->getPayloadSize(nPayloadIndex);
+
+ return writerfilter::Reference<Properties>::Pointer_t
+ (new WW8ListLevel(mpParent, nPayloadOffset, nPayloadSize));
+}
+
+void WW8ListLevel::resolveNoAuto(Properties & rHandler)
+{
+ sal_uInt32 nOffset = getSize();
+
+ {
+ WW8PropertySet::Pointer_t pSet
+ (new WW8PropertySetImpl(*this, nOffset, get_cbGrpprlPapx()));
+
+ WW8PropertiesReference aRef(pSet);
+ aRef.resolve(rHandler);
+ }
+
+ nOffset += get_cbGrpprlPapx();
+
+ {
+ WW8PropertySet::Pointer_t pSet
+ (new WW8PropertySetImpl(*this, nOffset, get_cbGrpprlChpx()));
+
+ WW8PropertiesReference aRef(pSet);
+ aRef.resolve(rHandler);
+ }
+
+ nOffset += get_cbGrpprlChpx();
+
+ WW8StringValue aVal(getString(nOffset));
+
+ rHandler.attribute(0, aVal);
+}
+
+sal_uInt32 WW8ListLevel::calcSize()
+{
+ sal_uInt32 nResult = WW8ListLevel::getSize();
+
+ nResult += get_cbGrpprlPapx();
+ nResult += get_cbGrpprlChpx();
+
+ return nResult;
+}
+}}