tdf#131098 docx export: write fill property of graphic
[LibreOffice.git] / lotuswordpro / source / filter / lwpparaproperty.cxx
bloba60b291c195945da188fe3d054ba59855d316803
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
59 ************************************************************************/
61 #include "lwpparaproperty.hxx"
62 #include <lwpobjtags.hxx>
63 #include "lwppara.hxx"
65 void LwpPara::ReadPropertyList(LwpObjectStream* pFile)
67 LwpParaProperty* NewProp= nullptr;
69 for(;;)
71 bool bFailure;
73 sal_uInt32 tag = pFile->QuickReaduInt32(&bFailure);
74 // Keep reading properties until we hit the end tag or
75 // the stream ends
76 if (bFailure || tag == TAG_ENDSUBOBJ)
77 break;
79 // Get the length of this property
80 sal_uInt16 Len = pFile->QuickReaduInt16(&bFailure);
82 if (bFailure)
83 break;
85 // Create whatever kind of tag we just found
86 switch (tag)
88 case TAG_PARA_ALIGN:
89 NewProp = new LwpParaAlignProperty(pFile);
90 break;
92 case TAG_PARA_INDENT:
93 NewProp = new LwpParaIndentProperty(pFile);
94 break;
96 case TAG_PARA_SPACING:
97 NewProp = new LwpParaSpacingProperty(pFile);
98 break;
100 case TAG_PARA_BORDER:
101 NewProp = new LwpParaBorderProperty(pFile);
102 break;
104 case TAG_PARA_BACKGROUND:
105 NewProp = new LwpParaBackGroundProperty(pFile);
106 break;
108 case TAG_PARA_BREAKS:
109 NewProp = new LwpParaBreaksProperty(pFile);
110 break;
112 case TAG_PARA_BULLET:
113 NewProp = new LwpParaBulletProperty(pFile);
114 SetBulletFlag(true);
115 break;
117 case TAG_PARA_NUMBERING:
118 NewProp = new LwpParaNumberingProperty(pFile);
119 break;
121 case TAG_PARA_TAB:
122 NewProp = new LwpParaTabRackProperty(pFile);
123 break;
125 default:
126 pFile->SeekRel(Len);
127 NewProp = nullptr;
128 break;
130 // Stick it at the beginning of the list
131 if (NewProp)
133 m_vProps.emplace(m_vProps.begin(), NewProp);
138 LwpParaAlignProperty::LwpParaAlignProperty(LwpObjectStream* pFile)
140 LwpObjectID align;
141 align.ReadIndexed(pFile);
143 rtl::Reference<LwpAlignmentPiece> xAlignmentPiece(dynamic_cast<LwpAlignmentPiece*>(align.obj(VO_ALIGNMENTPIECE).get()));
144 m_pAlignment = xAlignmentPiece.is() ? dynamic_cast<LwpAlignmentOverride*>(xAlignmentPiece->GetOverride()) : nullptr;
148 LwpParaAlignProperty::~LwpParaAlignProperty()
152 sal_uInt32 LwpParaAlignProperty::GetType()
154 return PP_LOCAL_ALIGN;
157 LwpParaIndentProperty::LwpParaIndentProperty(LwpObjectStream* pFile)
159 m_aIndentID.ReadIndexed(pFile);
161 LwpIndentPiece *pIndentPiece = dynamic_cast<LwpIndentPiece*>(m_aIndentID.obj(VO_INDENTPIECE).get());
162 m_pIndent = pIndentPiece ? dynamic_cast<LwpIndentOverride*>(pIndentPiece->GetOverride()) : nullptr;
165 LwpParaIndentProperty::~LwpParaIndentProperty()
169 sal_uInt32 LwpParaIndentProperty::GetType()
171 return PP_LOCAL_INDENT;
174 LwpParaSpacingProperty::LwpParaSpacingProperty(LwpObjectStream* pFile)
176 LwpObjectID spacing;
177 spacing.ReadIndexed(pFile);
179 LwpSpacingPiece *pSpacingPiece = dynamic_cast<LwpSpacingPiece*>(spacing.obj(VO_SPACINGPIECE).get());
180 m_pSpacing = pSpacingPiece ? dynamic_cast<LwpSpacingOverride*>(pSpacingPiece->GetOverride()) : nullptr;
183 LwpParaSpacingProperty::~LwpParaSpacingProperty()
187 sal_uInt32 LwpParaSpacingProperty::GetType()
189 return PP_LOCAL_SPACING;
192 // 01/25/2004
193 LwpParaBorderProperty::LwpParaBorderProperty(LwpObjectStream* pStrm) :
194 m_pParaBorderOverride(nullptr)
196 LwpObjectID aParaBorder;
197 aParaBorder.ReadIndexed(pStrm);
199 if (!aParaBorder.IsNull())
201 LwpParaBorderPiece *pParaBorderPiece = dynamic_cast<LwpParaBorderPiece*>(aParaBorder.obj().get());
202 m_pParaBorderOverride = pParaBorderPiece ? dynamic_cast<LwpParaBorderOverride*>(pParaBorderPiece->GetOverride()) : nullptr;
206 LwpParaBreaksProperty::LwpParaBreaksProperty(LwpObjectStream* pStrm) :
207 m_pBreaks(nullptr)
209 LwpObjectID aBreaks;
210 aBreaks.ReadIndexed(pStrm);
212 if (!aBreaks.IsNull())
214 LwpBreaksPiece *pBreaksPiece = dynamic_cast<LwpBreaksPiece*>(aBreaks.obj().get());
215 m_pBreaks = pBreaksPiece ? dynamic_cast<LwpBreaksOverride*>(pBreaksPiece->GetOverride()) : nullptr;
219 LwpParaBulletProperty::LwpParaBulletProperty(LwpObjectStream* pStrm) :
220 m_pBullet(new LwpBulletOverride)
222 m_pBullet->Read(pStrm);
225 LwpParaBulletProperty::~LwpParaBulletProperty()
229 LwpParaNumberingProperty::LwpParaNumberingProperty(LwpObjectStream * pStrm)
230 : m_pNumberingOverride(nullptr)
232 LwpObjectID aNumberingPiece;
233 aNumberingPiece.ReadIndexed(pStrm);
234 if (aNumberingPiece.IsNull())
236 return;
239 LwpNumberingPiece *pNumberingPiece = dynamic_cast<LwpNumberingPiece*>(aNumberingPiece.obj(VO_NUMBERINGPIECE).get());
240 m_pNumberingOverride = pNumberingPiece ? dynamic_cast<LwpNumberingOverride*>(pNumberingPiece->GetOverride()) : nullptr;
243 LwpParaTabRackProperty::LwpParaTabRackProperty(LwpObjectStream* pFile)
245 LwpObjectID aTabRack;
246 aTabRack.ReadIndexed(pFile);
248 LwpTabPiece *pTabPiece = dynamic_cast<LwpTabPiece*>(aTabRack.obj().get());
249 m_pTabOverride = pTabPiece ? dynamic_cast<LwpTabOverride*>(pTabPiece->GetOverride()) : nullptr;
252 LwpParaTabRackProperty::~LwpParaTabRackProperty()
256 LwpParaBackGroundProperty::LwpParaBackGroundProperty(LwpObjectStream* pFile)
258 LwpObjectID background;
259 background.ReadIndexed(pFile);
261 LwpBackgroundPiece *pBackgroundPiece = dynamic_cast<LwpBackgroundPiece*>(background.obj().get());
262 m_pBackground = pBackgroundPiece ? dynamic_cast<LwpBackgroundOverride*>(pBackgroundPiece->GetOverride()) : nullptr;
265 LwpParaBackGroundProperty::~LwpParaBackGroundProperty()
269 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */