summaryrefslogtreecommitdiffstats
path: root/lotuswordpro/source/filter/lwptblcell.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'lotuswordpro/source/filter/lwptblcell.cxx')
-rw-r--r--lotuswordpro/source/filter/lwptblcell.cxx246
1 files changed, 246 insertions, 0 deletions
diff --git a/lotuswordpro/source/filter/lwptblcell.cxx b/lotuswordpro/source/filter/lwptblcell.cxx
new file mode 100644
index 000000000..6831dce23
--- /dev/null
+++ b/lotuswordpro/source/filter/lwptblcell.cxx
@@ -0,0 +1,246 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*************************************************************************
+ *
+ * The Contents of this file are made available subject to the terms of
+ * either of the following licenses
+ *
+ * - GNU Lesser General Public License Version 2.1
+ * - Sun Industry Standards Source License Version 1.1
+ *
+ * Sun Microsystems Inc., October, 2000
+ *
+ * GNU Lesser General Public License Version 2.1
+ * =============================================
+ * Copyright 2000 by Sun Microsystems, Inc.
+ * 901 San Antonio Road, Palo Alto, CA 94303, USA
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software Foundation.
+ *
+ * This library 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 for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ *
+ *
+ * Sun Industry Standards Source License Version 1.1
+ * =================================================
+ * The contents of this file are subject to the Sun Industry Standards
+ * Source License Version 1.1 (the "License"); You may not use this file
+ * except in compliance with the License. You may obtain a copy of the
+ * License at http://www.openoffice.org/license.html.
+ *
+ * Software provided under this License is provided on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
+ * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
+ * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
+ * See the License for the specific provisions governing your rights and
+ * obligations concerning the Software.
+ *
+ * The Initial Developer of the Original Code is: IBM Corporation
+ *
+ * Copyright: 2008 by IBM Corporation
+ *
+ * All Rights Reserved.
+ *
+ * Contributor(s): _______________________________________
+ *
+ *
+ ************************************************************************/
+/**
+ * @file
+ * For LWP filter architecture prototype - table cell numerics format
+ */
+
+#include <lwpfilehdr.hxx>
+#include <lwpobjid.hxx>
+#include "lwptblcell.hxx"
+
+LwpCellList::LwpCellList(LwpObjectHeader const& objHdr, LwpSvStream* pStrm)
+ : LwpDLVList(objHdr, pStrm)
+ , cColumn(0)
+{
+}
+
+LwpCellList::~LwpCellList() {}
+
+void LwpCellList::Read()
+{
+ // CDLFVList read construction
+ LwpDLVList::Read();
+
+ LwpDLVListHeadTail cChild;
+ cChild.Read(m_pObjStrm.get());
+
+ cParent.ReadIndexed(m_pObjStrm.get());
+
+ if (LwpFileHeader::m_nFileRevision < 0x0006)
+ m_pObjStrm->SkipExtra();
+
+ cValue.ReadIndexed(m_pObjStrm.get());
+
+ LwpObjectID cDependent;
+ cDependent.ReadIndexed(m_pObjStrm.get());
+
+ cColumn = static_cast<sal_uInt8>(m_pObjStrm->QuickReaduInt16()); // written as a sal_uInt16
+ // sal_uInt8 cCellFlags = (sal_uInt8) m_pObjStrm->QuickReaduInt16(); // written as a sal_uInt16
+ m_pObjStrm->SeekRel(2); //CellFlags
+ m_pObjStrm->SkipExtra();
+}
+
+void LwpCellList::Parse(IXFStream* /*pOutputStream*/) {}
+
+void LwpCellList::Convert(XFCell* pCell, LwpTableLayout* /*pCellsMap*/)
+{
+ LwpObjectID aValueID = cValue;
+ LwpNumericValue* pValue = dynamic_cast<LwpNumericValue*>(aValueID.obj().get());
+ if (pValue)
+ {
+ pCell->SetValue(pValue->GetValue());
+ }
+}
+
+LwpNumericValue::LwpNumericValue(LwpObjectHeader const& objHdr, LwpSvStream* pStrm)
+ : LwpObject(objHdr, pStrm)
+ , cNumber(0)
+{
+}
+
+LwpNumericValue::~LwpNumericValue() {}
+
+void LwpNumericValue::Read()
+{
+ cNumber = m_pObjStrm->QuickReadDouble();
+ m_pObjStrm->SkipExtra();
+}
+
+void LwpNumericValue::Parse(IXFStream* /*pOutputStream*/) {}
+
+LwpRowList::LwpRowList(LwpObjectHeader const& objHdr, LwpSvStream* pStrm)
+ : LwpDLVList(objHdr, pStrm)
+ , cRowID(0)
+{
+}
+
+LwpRowList::~LwpRowList() {}
+
+void LwpRowList::Read()
+{
+ // CDLFVList read construction
+ LwpDLVList::Read();
+
+ cChild.Read(m_pObjStrm.get());
+ cParent.ReadIndexed(m_pObjStrm.get());
+
+ if (LwpFileHeader::m_nFileRevision < 0x0006)
+ m_pObjStrm->SkipExtra();
+
+ cRowID = m_pObjStrm->QuickReaduInt16();
+
+ m_pObjStrm->SkipExtra();
+}
+void LwpRowList::Parse(IXFStream* /*pOutputStream*/) {}
+
+LwpTableRange::LwpTableRange(LwpObjectHeader const& objHdr, LwpSvStream* pStrm)
+ : LwpDLVList(objHdr, pStrm)
+{
+}
+
+LwpTableRange::~LwpTableRange() {}
+
+void LwpTableRange::Read()
+{
+ LwpDLVList::Read();
+
+ cqTable.ReadIndexed(m_pObjStrm.get());
+ cpCellRange.ReadIndexed(m_pObjStrm.get());
+ m_pObjStrm->SkipExtra();
+}
+
+void LwpTableRange::Parse(IXFStream* /*pOutputStream*/) {}
+
+LwpCellRange::LwpCellRange(LwpObjectHeader const& objHdr, LwpSvStream* pStrm)
+ : LwpObject(objHdr, pStrm)
+{
+}
+
+LwpCellRange::~LwpCellRange() {}
+
+void LwpCellRange::Read()
+{
+ cpFolder.ReadIndexed(m_pObjStrm.get());
+ m_pObjStrm->SkipExtra();
+}
+
+void LwpCellRange::Parse(IXFStream* /*pOutputStream*/) {}
+
+LwpFolder::LwpFolder(LwpObjectHeader const& objHdr, LwpSvStream* pStrm)
+ : LwpDLVList(objHdr, pStrm)
+{
+}
+
+LwpFolder::~LwpFolder() {}
+
+void LwpFolder::Read()
+{
+ // CDLFVList read construction
+ LwpDLVList::Read();
+
+ cChild.Read(m_pObjStrm.get());
+ cParent.ReadIndexed(m_pObjStrm.get());
+
+ if (LwpFileHeader::m_nFileRevision < 0x0006)
+ m_pObjStrm->SkipExtra();
+
+ cqTable.ReadIndexed(m_pObjStrm.get());
+ m_pObjStrm->SkipExtra();
+}
+
+void LwpFolder::Parse(IXFStream* /*pOutputStream*/) {}
+
+LwpDependent::LwpDependent(LwpObjectHeader const& objHdr, LwpSvStream* pStrm)
+ : LwpDLVList(objHdr, pStrm)
+ , cReferenceOffset(0)
+ , cFlags(0)
+{
+}
+
+LwpDependent::~LwpDependent() {}
+
+void LwpDependent::Read()
+{
+ LwpDLVList::Read();
+
+ cFormulaInfo.ReadIndexed(m_pObjStrm.get());
+ cReferenceOffset = m_pObjStrm->QuickReaduInt16();
+ cFlags = static_cast<sal_uInt8>(m_pObjStrm->QuickReaduInt16()); // Written as lushort.
+
+ m_pObjStrm->SkipExtra();
+}
+
+void LwpDependent::Parse(IXFStream* /*pOutputStream*/) {}
+
+void LwpRowSpecifier::QuickRead(LwpObjectStream* pStrm)
+{
+ cRow = pStrm->QuickReaduInt16();
+ cQualifier.QuickRead(pStrm);
+}
+void LwpColumnSpecifier::QuickRead(LwpObjectStream* pStrm)
+{
+ cColumn = static_cast<sal_uInt8>(pStrm->QuickReaduInt16());
+ cQualifier.QuickRead(pStrm);
+}
+
+void LwpRowColumnQualifier::QuickRead(LwpObjectStream* pStrm)
+{
+ // written as lushort for future flags
+ cFlags = static_cast<sal_uInt8>(pStrm->QuickReaduInt16());
+}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */