Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #include <xmloff/HatchStyle.hxx>
21 :
22 : #include <com/sun/star/drawing/Hatch.hpp>
23 :
24 : #include <sax/tools/converter.hxx>
25 :
26 : #include <xmloff/nmspmap.hxx>
27 : #include <xmloff/xmluconv.hxx>
28 : #include <xmloff/xmlnmspe.hxx>
29 : #include <xmloff/xmltoken.hxx>
30 : #include <xmloff/xmlexp.hxx>
31 : #include <xmloff/xmlimp.hxx>
32 : #include <rtl/ustrbuf.hxx>
33 : #include <rtl/ustring.hxx>
34 : #include <tools/debug.hxx>
35 : #include <xmloff/xmltkmap.hxx>
36 :
37 : using namespace ::com::sun::star;
38 :
39 : using namespace ::xmloff::token;
40 :
41 : enum SvXMLTokenMapAttrs
42 : {
43 : XML_TOK_HATCH_NAME,
44 : XML_TOK_HATCH_DISPLAY_NAME,
45 : XML_TOK_HATCH_STYLE,
46 : XML_TOK_HATCH_COLOR,
47 : XML_TOK_HATCH_DISTANCE,
48 : XML_TOK_HATCH_ROTATION,
49 : XML_TOK_TABSTOP_END=XML_TOK_UNKNOWN
50 : };
51 :
52 : SvXMLEnumMapEntry const pXML_HatchStyle_Enum[] =
53 : {
54 : { XML_HATCHSTYLE_SINGLE, drawing::HatchStyle_SINGLE },
55 : { XML_HATCHSTYLE_DOUBLE, drawing::HatchStyle_DOUBLE },
56 : { XML_HATCHSTYLE_TRIPLE, drawing::HatchStyle_TRIPLE },
57 : { XML_TOKEN_INVALID, 0 }
58 : };
59 :
60 : // Import
61 :
62 84 : XMLHatchStyleImport::XMLHatchStyleImport( SvXMLImport& rImp )
63 84 : : rImport(rImp)
64 : {
65 84 : }
66 :
67 84 : XMLHatchStyleImport::~XMLHatchStyleImport()
68 : {
69 84 : }
70 :
71 84 : bool XMLHatchStyleImport::importXML(
72 : const uno::Reference< xml::sax::XAttributeList >& xAttrList,
73 : uno::Any& rValue,
74 : OUString& rStrName )
75 : {
76 : static const SvXMLTokenMapEntry aHatchAttrTokenMap[] =
77 : {
78 : { XML_NAMESPACE_DRAW, XML_NAME, XML_TOK_HATCH_NAME },
79 : { XML_NAMESPACE_DRAW, XML_DISPLAY_NAME, XML_TOK_HATCH_DISPLAY_NAME },
80 : { XML_NAMESPACE_DRAW, XML_STYLE, XML_TOK_HATCH_STYLE },
81 : { XML_NAMESPACE_DRAW, XML_COLOR, XML_TOK_HATCH_COLOR },
82 : { XML_NAMESPACE_DRAW, XML_HATCH_DISTANCE, XML_TOK_HATCH_DISTANCE },
83 : { XML_NAMESPACE_DRAW, XML_ROTATION, XML_TOK_HATCH_ROTATION },
84 : XML_TOKEN_MAP_END
85 : };
86 :
87 84 : bool bHasName = false;
88 84 : bool bHasStyle = false;
89 84 : bool bHasColor = false;
90 84 : bool bHasDist = false;
91 84 : OUString aDisplayName;
92 :
93 84 : drawing::Hatch aHatch;
94 84 : aHatch.Style = drawing::HatchStyle_SINGLE;
95 84 : aHatch.Color = 0;
96 84 : aHatch.Distance = 0;
97 84 : aHatch.Angle = 0;
98 :
99 168 : SvXMLTokenMap aTokenMap( aHatchAttrTokenMap );
100 168 : SvXMLNamespaceMap rNamespaceMap = rImport.GetNamespaceMap();
101 84 : SvXMLUnitConverter& rUnitConverter = rImport.GetMM100UnitConverter();
102 :
103 84 : sal_Int16 nAttrCount = xAttrList.is() ? xAttrList->getLength() : 0;
104 548 : for( sal_Int16 i=0; i < nAttrCount; i++ )
105 : {
106 464 : const OUString& rFullAttrName = xAttrList->getNameByIndex( i );
107 928 : OUString aStrAttrName;
108 464 : sal_uInt16 nPrefix = rNamespaceMap.GetKeyByAttrName( rFullAttrName, &aStrAttrName );
109 928 : const OUString& rStrValue = xAttrList->getValueByIndex( i );
110 :
111 464 : switch( aTokenMap.Get( nPrefix, aStrAttrName ) )
112 : {
113 : case XML_TOK_HATCH_NAME:
114 : {
115 84 : rStrName = rStrValue;
116 84 : bHasName = true;
117 : }
118 84 : break;
119 : case XML_TOK_HATCH_DISPLAY_NAME:
120 44 : aDisplayName = rStrValue;
121 44 : break;
122 : case XML_TOK_HATCH_STYLE:
123 : {
124 : sal_uInt16 eValue;
125 84 : bHasStyle = SvXMLUnitConverter::convertEnum( eValue, rStrValue, pXML_HatchStyle_Enum );
126 84 : if( bHasStyle )
127 84 : aHatch.Style = (drawing::HatchStyle) eValue;
128 : }
129 84 : break;
130 : case XML_TOK_HATCH_COLOR:
131 : {
132 : bHasColor = ::sax::Converter::convertColor(
133 84 : aHatch.Color, rStrValue);
134 : }
135 84 : break;
136 : case XML_TOK_HATCH_DISTANCE:
137 : bHasDist = rUnitConverter.convertMeasureToCore(
138 84 : (sal_Int32&)aHatch.Distance, rStrValue );
139 84 : break;
140 : case XML_TOK_HATCH_ROTATION:
141 : {
142 : sal_Int32 nValue;
143 84 : ::sax::Converter::convertNumber(nValue, rStrValue, 0, 3600);
144 84 : aHatch.Angle = sal_Int16( nValue );
145 : }
146 84 : break;
147 :
148 : default:
149 : DBG_WARNING( "Unknown token at import hatch style" )
150 : ;
151 : }
152 464 : }
153 :
154 84 : rValue <<= aHatch;
155 :
156 84 : if( !aDisplayName.isEmpty() )
157 : {
158 : rImport.AddStyleDisplayName( XML_STYLE_FAMILY_SD_HATCH_ID, rStrName,
159 44 : aDisplayName );
160 44 : rStrName = aDisplayName;
161 : }
162 :
163 84 : bool bRet = bHasName && bHasStyle && bHasColor && bHasDist;
164 :
165 168 : return bRet;
166 : }
167 :
168 : // Export
169 :
170 674 : XMLHatchStyleExport::XMLHatchStyleExport( SvXMLExport& rExp )
171 674 : : rExport(rExp)
172 : {
173 674 : }
174 :
175 674 : XMLHatchStyleExport::~XMLHatchStyleExport()
176 : {
177 674 : }
178 :
179 2 : bool XMLHatchStyleExport::exportXML(
180 : const OUString& rStrName,
181 : const uno::Any& rValue )
182 : {
183 2 : bool bRet = false;
184 2 : drawing::Hatch aHatch;
185 :
186 2 : if( !rStrName.isEmpty() )
187 : {
188 2 : if( rValue >>= aHatch )
189 : {
190 2 : OUString aStrValue;
191 4 : OUStringBuffer aOut;
192 :
193 : SvXMLUnitConverter& rUnitConverter =
194 2 : rExport.GetMM100UnitConverter();
195 :
196 : // Style
197 2 : if( !SvXMLUnitConverter::convertEnum( aOut, aHatch.Style, pXML_HatchStyle_Enum ) )
198 : {
199 0 : bRet = false;
200 : }
201 : else
202 : {
203 : // Name
204 2 : bool bEncoded = false;
205 : rExport.AddAttribute( XML_NAMESPACE_DRAW, XML_NAME,
206 : rExport.EncodeStyleName( rStrName,
207 2 : &bEncoded ) );
208 2 : if( bEncoded )
209 : rExport.AddAttribute( XML_NAMESPACE_DRAW, XML_DISPLAY_NAME,
210 2 : rStrName );
211 :
212 2 : aStrValue = aOut.makeStringAndClear();
213 2 : rExport.AddAttribute( XML_NAMESPACE_DRAW, XML_STYLE, aStrValue );
214 :
215 : // Color
216 2 : ::sax::Converter::convertColor(aOut, aHatch.Color);
217 2 : aStrValue = aOut.makeStringAndClear();
218 2 : rExport.AddAttribute( XML_NAMESPACE_DRAW, XML_COLOR, aStrValue );
219 :
220 : // Distance
221 2 : rUnitConverter.convertMeasureToXML( aOut, aHatch.Distance );
222 2 : aStrValue = aOut.makeStringAndClear();
223 2 : rExport.AddAttribute( XML_NAMESPACE_DRAW, XML_HATCH_DISTANCE, aStrValue );
224 :
225 : // Angle
226 2 : ::sax::Converter::convertNumber(aOut, sal_Int32(aHatch.Angle));
227 2 : aStrValue = aOut.makeStringAndClear();
228 2 : rExport.AddAttribute( XML_NAMESPACE_DRAW, XML_ROTATION, aStrValue );
229 :
230 : // Do Write
231 : SvXMLElementExport rElem( rExport, XML_NAMESPACE_DRAW, XML_HATCH,
232 2 : true, false );
233 2 : }
234 : }
235 : }
236 :
237 2 : return bRet;
238 : }
239 :
240 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|