xref: /AOO42X/main/xmloff/source/text/XMLIndexTabStopEntryContext.cxx (revision cdf0e10c4e3984b49a9502b011690b615761d4a3)
1*cdf0e10cSrcweir /*************************************************************************
2*cdf0e10cSrcweir  *
3*cdf0e10cSrcweir  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*cdf0e10cSrcweir  *
5*cdf0e10cSrcweir  * Copyright 2000, 2010 Oracle and/or its affiliates.
6*cdf0e10cSrcweir  *
7*cdf0e10cSrcweir  * OpenOffice.org - a multi-platform office productivity suite
8*cdf0e10cSrcweir  *
9*cdf0e10cSrcweir  * This file is part of OpenOffice.org.
10*cdf0e10cSrcweir  *
11*cdf0e10cSrcweir  * OpenOffice.org is free software: you can redistribute it and/or modify
12*cdf0e10cSrcweir  * it under the terms of the GNU Lesser General Public License version 3
13*cdf0e10cSrcweir  * only, as published by the Free Software Foundation.
14*cdf0e10cSrcweir  *
15*cdf0e10cSrcweir  * OpenOffice.org is distributed in the hope that it will be useful,
16*cdf0e10cSrcweir  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*cdf0e10cSrcweir  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*cdf0e10cSrcweir  * GNU Lesser General Public License version 3 for more details
19*cdf0e10cSrcweir  * (a copy is included in the LICENSE file that accompanied this code).
20*cdf0e10cSrcweir  *
21*cdf0e10cSrcweir  * You should have received a copy of the GNU Lesser General Public License
22*cdf0e10cSrcweir  * version 3 along with OpenOffice.org.  If not, see
23*cdf0e10cSrcweir  * <http://www.openoffice.org/license.html>
24*cdf0e10cSrcweir  * for a copy of the LGPLv3 License.
25*cdf0e10cSrcweir  *
26*cdf0e10cSrcweir  ************************************************************************/
27*cdf0e10cSrcweir 
28*cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
29*cdf0e10cSrcweir #include "precompiled_xmloff.hxx"
30*cdf0e10cSrcweir 
31*cdf0e10cSrcweir 
32*cdf0e10cSrcweir #include "XMLIndexTabStopEntryContext.hxx"
33*cdf0e10cSrcweir #include "XMLIndexTemplateContext.hxx"
34*cdf0e10cSrcweir #include <xmloff/xmlictxt.hxx>
35*cdf0e10cSrcweir #include <xmloff/xmlimp.hxx>
36*cdf0e10cSrcweir #include <xmloff/txtimp.hxx>
37*cdf0e10cSrcweir #include <xmloff/nmspmap.hxx>
38*cdf0e10cSrcweir #include "xmloff/xmlnmspe.hxx"
39*cdf0e10cSrcweir #include <xmloff/xmltoken.hxx>
40*cdf0e10cSrcweir #include <xmloff/xmluconv.hxx>
41*cdf0e10cSrcweir #include <rtl/ustring.hxx>
42*cdf0e10cSrcweir #include <tools/debug.hxx>
43*cdf0e10cSrcweir 
44*cdf0e10cSrcweir using namespace ::xmloff::token;
45*cdf0e10cSrcweir 
46*cdf0e10cSrcweir using ::rtl::OUString;
47*cdf0e10cSrcweir using ::com::sun::star::uno::Sequence;
48*cdf0e10cSrcweir using ::com::sun::star::uno::Reference;
49*cdf0e10cSrcweir using ::com::sun::star::uno::Any;
50*cdf0e10cSrcweir using ::com::sun::star::beans::PropertyValue;
51*cdf0e10cSrcweir using ::com::sun::star::xml::sax::XAttributeList;
52*cdf0e10cSrcweir 
53*cdf0e10cSrcweir 
54*cdf0e10cSrcweir TYPEINIT1( XMLIndexTabStopEntryContext, XMLIndexSimpleEntryContext );
55*cdf0e10cSrcweir 
56*cdf0e10cSrcweir XMLIndexTabStopEntryContext::XMLIndexTabStopEntryContext(
57*cdf0e10cSrcweir     SvXMLImport& rImport,
58*cdf0e10cSrcweir     XMLIndexTemplateContext& rTemplate,
59*cdf0e10cSrcweir     sal_uInt16 nPrfx,
60*cdf0e10cSrcweir     const OUString& rLocalName ) :
61*cdf0e10cSrcweir         XMLIndexSimpleEntryContext(rImport, rTemplate.sTokenTabStop,
62*cdf0e10cSrcweir                                    rTemplate, nPrfx, rLocalName),
63*cdf0e10cSrcweir         sLeaderChar(),
64*cdf0e10cSrcweir         nTabPosition(0),
65*cdf0e10cSrcweir         bTabPositionOK(sal_False),
66*cdf0e10cSrcweir         bTabRightAligned(sal_False),
67*cdf0e10cSrcweir         bLeaderCharOK(sal_False),
68*cdf0e10cSrcweir         bWithTab(sal_True) // #i21237#
69*cdf0e10cSrcweir {
70*cdf0e10cSrcweir }
71*cdf0e10cSrcweir 
72*cdf0e10cSrcweir XMLIndexTabStopEntryContext::~XMLIndexTabStopEntryContext()
73*cdf0e10cSrcweir {
74*cdf0e10cSrcweir }
75*cdf0e10cSrcweir 
76*cdf0e10cSrcweir void XMLIndexTabStopEntryContext::StartElement(
77*cdf0e10cSrcweir     const Reference<XAttributeList> & xAttrList)
78*cdf0e10cSrcweir {
79*cdf0e10cSrcweir     // process three attributes: type, position, leader char
80*cdf0e10cSrcweir     sal_Int16 nLength = xAttrList->getLength();
81*cdf0e10cSrcweir     for(sal_Int16 nAttr = 0; nAttr < nLength; nAttr++)
82*cdf0e10cSrcweir     {
83*cdf0e10cSrcweir         OUString sLocalName;
84*cdf0e10cSrcweir         sal_uInt16 nPrefix = GetImport().GetNamespaceMap().
85*cdf0e10cSrcweir             GetKeyByAttrName( xAttrList->getNameByIndex(nAttr),
86*cdf0e10cSrcweir                               &sLocalName );
87*cdf0e10cSrcweir         OUString sAttr = xAttrList->getValueByIndex(nAttr);
88*cdf0e10cSrcweir         if (XML_NAMESPACE_STYLE == nPrefix)
89*cdf0e10cSrcweir         {
90*cdf0e10cSrcweir             if ( IsXMLToken( sLocalName, XML_TYPE ) )
91*cdf0e10cSrcweir             {
92*cdf0e10cSrcweir                 // if it's neither left nor right, value is
93*cdf0e10cSrcweir                 // ignored. Since left is default, we only need to
94*cdf0e10cSrcweir                 // check for right
95*cdf0e10cSrcweir                 bTabRightAligned = IsXMLToken( sAttr, XML_RIGHT );
96*cdf0e10cSrcweir             }
97*cdf0e10cSrcweir             else if ( IsXMLToken( sLocalName, XML_POSITION ) )
98*cdf0e10cSrcweir             {
99*cdf0e10cSrcweir                 sal_Int32 nTmp;
100*cdf0e10cSrcweir                 if (GetImport().GetMM100UnitConverter().
101*cdf0e10cSrcweir                                         convertMeasure(nTmp, sAttr))
102*cdf0e10cSrcweir                 {
103*cdf0e10cSrcweir                     nTabPosition = nTmp;
104*cdf0e10cSrcweir                     bTabPositionOK = sal_True;
105*cdf0e10cSrcweir                 }
106*cdf0e10cSrcweir             }
107*cdf0e10cSrcweir             else if ( IsXMLToken( sLocalName, XML_LEADER_CHAR ) )
108*cdf0e10cSrcweir             {
109*cdf0e10cSrcweir                 sLeaderChar = sAttr;
110*cdf0e10cSrcweir                 // valid only, if we have a char!
111*cdf0e10cSrcweir                 bLeaderCharOK = (sAttr.getLength() > 0);
112*cdf0e10cSrcweir             }
113*cdf0e10cSrcweir             // #i21237#
114*cdf0e10cSrcweir             else if ( IsXMLToken( sLocalName, XML_WITH_TAB ) )
115*cdf0e10cSrcweir             {
116*cdf0e10cSrcweir                 sal_Bool bTmp;
117*cdf0e10cSrcweir                 if (SvXMLUnitConverter::convertBool(bTmp, sAttr))
118*cdf0e10cSrcweir                     bWithTab = bTmp;
119*cdf0e10cSrcweir             }
120*cdf0e10cSrcweir             // else: unknown style: attribute -> ignore
121*cdf0e10cSrcweir         }
122*cdf0e10cSrcweir         // else: no style attribute -> ignore
123*cdf0e10cSrcweir     }
124*cdf0e10cSrcweir 
125*cdf0e10cSrcweir     // how many entries? #i21237#
126*cdf0e10cSrcweir     nValues += 2 + (bTabPositionOK ? 1 : 0) + (bLeaderCharOK ? 1 : 0);
127*cdf0e10cSrcweir 
128*cdf0e10cSrcweir     // now try parent class (for character style)
129*cdf0e10cSrcweir     XMLIndexSimpleEntryContext::StartElement( xAttrList );
130*cdf0e10cSrcweir }
131*cdf0e10cSrcweir 
132*cdf0e10cSrcweir void XMLIndexTabStopEntryContext::FillPropertyValues(
133*cdf0e10cSrcweir     Sequence<PropertyValue> & rValues)
134*cdf0e10cSrcweir {
135*cdf0e10cSrcweir     // fill vlues from parent class (type + style name)
136*cdf0e10cSrcweir     XMLIndexSimpleEntryContext::FillPropertyValues(rValues);
137*cdf0e10cSrcweir 
138*cdf0e10cSrcweir     // get values array and next entry to be written;
139*cdf0e10cSrcweir     sal_Int32 nNextEntry = bCharStyleNameOK ? 2 : 1;
140*cdf0e10cSrcweir     PropertyValue* pValues = rValues.getArray();
141*cdf0e10cSrcweir 
142*cdf0e10cSrcweir     // right aligned?
143*cdf0e10cSrcweir     pValues[nNextEntry].Name = rTemplateContext.sTabStopRightAligned;
144*cdf0e10cSrcweir     pValues[nNextEntry].Value.setValue( &bTabRightAligned,
145*cdf0e10cSrcweir                                         ::getBooleanCppuType());
146*cdf0e10cSrcweir     nNextEntry++;
147*cdf0e10cSrcweir 
148*cdf0e10cSrcweir     // position
149*cdf0e10cSrcweir     if (bTabPositionOK)
150*cdf0e10cSrcweir     {
151*cdf0e10cSrcweir         pValues[nNextEntry].Name = rTemplateContext.sTabStopPosition;
152*cdf0e10cSrcweir         pValues[nNextEntry].Value <<= nTabPosition;
153*cdf0e10cSrcweir         nNextEntry++;
154*cdf0e10cSrcweir     }
155*cdf0e10cSrcweir 
156*cdf0e10cSrcweir     // leader char
157*cdf0e10cSrcweir     if (bLeaderCharOK)
158*cdf0e10cSrcweir     {
159*cdf0e10cSrcweir         pValues[nNextEntry].Name = rTemplateContext.sTabStopFillCharacter;
160*cdf0e10cSrcweir         pValues[nNextEntry].Value <<= sLeaderChar;
161*cdf0e10cSrcweir         nNextEntry++;
162*cdf0e10cSrcweir     }
163*cdf0e10cSrcweir 
164*cdf0e10cSrcweir     // tab character #i21237#
165*cdf0e10cSrcweir     pValues[nNextEntry].Name =
166*cdf0e10cSrcweir         OUString( RTL_CONSTASCII_USTRINGPARAM("WithTab") );
167*cdf0e10cSrcweir     pValues[nNextEntry].Value.setValue( &bWithTab,
168*cdf0e10cSrcweir                                         ::getBooleanCppuType());
169*cdf0e10cSrcweir     nNextEntry++;
170*cdf0e10cSrcweir 
171*cdf0e10cSrcweir     // check whether we really filled all elements of the sequence
172*cdf0e10cSrcweir     DBG_ASSERT( nNextEntry == rValues.getLength(),
173*cdf0e10cSrcweir                 "length incorrectly precumputed!" );
174*cdf0e10cSrcweir }
175