tdf#163948: fix crash when NotesPane is enabled on Tabbed UI
[LibreOffice.git] / lotuswordpro / source / filter / lwptblcell.cxx
blob6831dce23af74a5608ec001daad3e4544d5c33e7
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * The Contents of this file are made available subject to the terms of
5 * either of the following licenses
7 * - GNU Lesser General Public License Version 2.1
8 * - Sun Industry Standards Source License Version 1.1
10 * Sun Microsystems Inc., October, 2000
12 * GNU Lesser General Public License Version 2.1
13 * =============================================
14 * Copyright 2000 by Sun Microsystems, Inc.
15 * 901 San Antonio Road, Palo Alto, CA 94303, USA
17 * This library is free software; you can redistribute it and/or
18 * modify it under the terms of the GNU Lesser General Public
19 * License version 2.1, as published by the Free Software Foundation.
21 * This library is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
24 * Lesser General Public License for more details.
26 * You should have received a copy of the GNU Lesser General Public
27 * License along with this library; if not, write to the Free Software
28 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
29 * MA 02111-1307 USA
32 * Sun Industry Standards Source License Version 1.1
33 * =================================================
34 * The contents of this file are subject to the Sun Industry Standards
35 * Source License Version 1.1 (the "License"); You may not use this file
36 * except in compliance with the License. You may obtain a copy of the
37 * License at http://www.openoffice.org/license.html.
39 * Software provided under this License is provided on an "AS IS" basis,
40 * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
41 * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
42 * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
43 * See the License for the specific provisions governing your rights and
44 * obligations concerning the Software.
46 * The Initial Developer of the Original Code is: IBM Corporation
48 * Copyright: 2008 by IBM Corporation
50 * All Rights Reserved.
52 * Contributor(s): _______________________________________
55 ************************************************************************/
56 /**
57 * @file
58 * For LWP filter architecture prototype - table cell numerics format
61 #include <lwpfilehdr.hxx>
62 #include <lwpobjid.hxx>
63 #include "lwptblcell.hxx"
65 LwpCellList::LwpCellList(LwpObjectHeader const& objHdr, LwpSvStream* pStrm)
66 : LwpDLVList(objHdr, pStrm)
67 , cColumn(0)
71 LwpCellList::~LwpCellList() {}
73 void LwpCellList::Read()
75 // CDLFVList read construction
76 LwpDLVList::Read();
78 LwpDLVListHeadTail cChild;
79 cChild.Read(m_pObjStrm.get());
81 cParent.ReadIndexed(m_pObjStrm.get());
83 if (LwpFileHeader::m_nFileRevision < 0x0006)
84 m_pObjStrm->SkipExtra();
86 cValue.ReadIndexed(m_pObjStrm.get());
88 LwpObjectID cDependent;
89 cDependent.ReadIndexed(m_pObjStrm.get());
91 cColumn = static_cast<sal_uInt8>(m_pObjStrm->QuickReaduInt16()); // written as a sal_uInt16
92 // sal_uInt8 cCellFlags = (sal_uInt8) m_pObjStrm->QuickReaduInt16(); // written as a sal_uInt16
93 m_pObjStrm->SeekRel(2); //CellFlags
94 m_pObjStrm->SkipExtra();
97 void LwpCellList::Parse(IXFStream* /*pOutputStream*/) {}
99 void LwpCellList::Convert(XFCell* pCell, LwpTableLayout* /*pCellsMap*/)
101 LwpObjectID aValueID = cValue;
102 LwpNumericValue* pValue = dynamic_cast<LwpNumericValue*>(aValueID.obj().get());
103 if (pValue)
105 pCell->SetValue(pValue->GetValue());
109 LwpNumericValue::LwpNumericValue(LwpObjectHeader const& objHdr, LwpSvStream* pStrm)
110 : LwpObject(objHdr, pStrm)
111 , cNumber(0)
115 LwpNumericValue::~LwpNumericValue() {}
117 void LwpNumericValue::Read()
119 cNumber = m_pObjStrm->QuickReadDouble();
120 m_pObjStrm->SkipExtra();
123 void LwpNumericValue::Parse(IXFStream* /*pOutputStream*/) {}
125 LwpRowList::LwpRowList(LwpObjectHeader const& objHdr, LwpSvStream* pStrm)
126 : LwpDLVList(objHdr, pStrm)
127 , cRowID(0)
131 LwpRowList::~LwpRowList() {}
133 void LwpRowList::Read()
135 // CDLFVList read construction
136 LwpDLVList::Read();
138 cChild.Read(m_pObjStrm.get());
139 cParent.ReadIndexed(m_pObjStrm.get());
141 if (LwpFileHeader::m_nFileRevision < 0x0006)
142 m_pObjStrm->SkipExtra();
144 cRowID = m_pObjStrm->QuickReaduInt16();
146 m_pObjStrm->SkipExtra();
148 void LwpRowList::Parse(IXFStream* /*pOutputStream*/) {}
150 LwpTableRange::LwpTableRange(LwpObjectHeader const& objHdr, LwpSvStream* pStrm)
151 : LwpDLVList(objHdr, pStrm)
155 LwpTableRange::~LwpTableRange() {}
157 void LwpTableRange::Read()
159 LwpDLVList::Read();
161 cqTable.ReadIndexed(m_pObjStrm.get());
162 cpCellRange.ReadIndexed(m_pObjStrm.get());
163 m_pObjStrm->SkipExtra();
166 void LwpTableRange::Parse(IXFStream* /*pOutputStream*/) {}
168 LwpCellRange::LwpCellRange(LwpObjectHeader const& objHdr, LwpSvStream* pStrm)
169 : LwpObject(objHdr, pStrm)
173 LwpCellRange::~LwpCellRange() {}
175 void LwpCellRange::Read()
177 cpFolder.ReadIndexed(m_pObjStrm.get());
178 m_pObjStrm->SkipExtra();
181 void LwpCellRange::Parse(IXFStream* /*pOutputStream*/) {}
183 LwpFolder::LwpFolder(LwpObjectHeader const& objHdr, LwpSvStream* pStrm)
184 : LwpDLVList(objHdr, pStrm)
188 LwpFolder::~LwpFolder() {}
190 void LwpFolder::Read()
192 // CDLFVList read construction
193 LwpDLVList::Read();
195 cChild.Read(m_pObjStrm.get());
196 cParent.ReadIndexed(m_pObjStrm.get());
198 if (LwpFileHeader::m_nFileRevision < 0x0006)
199 m_pObjStrm->SkipExtra();
201 cqTable.ReadIndexed(m_pObjStrm.get());
202 m_pObjStrm->SkipExtra();
205 void LwpFolder::Parse(IXFStream* /*pOutputStream*/) {}
207 LwpDependent::LwpDependent(LwpObjectHeader const& objHdr, LwpSvStream* pStrm)
208 : LwpDLVList(objHdr, pStrm)
209 , cReferenceOffset(0)
210 , cFlags(0)
214 LwpDependent::~LwpDependent() {}
216 void LwpDependent::Read()
218 LwpDLVList::Read();
220 cFormulaInfo.ReadIndexed(m_pObjStrm.get());
221 cReferenceOffset = m_pObjStrm->QuickReaduInt16();
222 cFlags = static_cast<sal_uInt8>(m_pObjStrm->QuickReaduInt16()); // Written as lushort.
224 m_pObjStrm->SkipExtra();
227 void LwpDependent::Parse(IXFStream* /*pOutputStream*/) {}
229 void LwpRowSpecifier::QuickRead(LwpObjectStream* pStrm)
231 cRow = pStrm->QuickReaduInt16();
232 cQualifier.QuickRead(pStrm);
234 void LwpColumnSpecifier::QuickRead(LwpObjectStream* pStrm)
236 cColumn = static_cast<sal_uInt8>(pStrm->QuickReaduInt16());
237 cQualifier.QuickRead(pStrm);
240 void LwpRowColumnQualifier::QuickRead(LwpObjectStream* pStrm)
242 // written as lushort for future flags
243 cFlags = static_cast<sal_uInt8>(pStrm->QuickReaduInt16());
246 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */