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 0 : XMLHatchStyleImport::XMLHatchStyleImport( SvXMLImport& rImp )
63 0 : : rImport(rImp)
64 : {
65 0 : }
66 :
67 0 : XMLHatchStyleImport::~XMLHatchStyleImport()
68 : {
69 0 : }
70 :
71 0 : 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 0 : bool bHasName = false;
88 0 : bool bHasStyle = false;
89 0 : bool bHasColor = false;
90 0 : bool bHasDist = false;
91 0 : OUString aDisplayName;
92 :
93 0 : drawing::Hatch aHatch;
94 0 : aHatch.Style = drawing::HatchStyle_SINGLE;
95 0 : aHatch.Color = 0;
96 0 : aHatch.Distance = 0;
97 0 : aHatch.Angle = 0;
98 :
99 0 : SvXMLTokenMap aTokenMap( aHatchAttrTokenMap );
100 0 : SvXMLNamespaceMap rNamespaceMap = rImport.GetNamespaceMap();
101 0 : SvXMLUnitConverter& rUnitConverter = rImport.GetMM100UnitConverter();
102 :
103 0 : sal_Int16 nAttrCount = xAttrList.is() ? xAttrList->getLength() : 0;
104 0 : for( sal_Int16 i=0; i < nAttrCount; i++ )
105 : {
106 0 : const OUString& rFullAttrName = xAttrList->getNameByIndex( i );
107 0 : OUString aStrAttrName;
108 0 : sal_uInt16 nPrefix = rNamespaceMap.GetKeyByAttrName( rFullAttrName, &aStrAttrName );
109 0 : const OUString& rStrValue = xAttrList->getValueByIndex( i );
110 :
111 0 : switch( aTokenMap.Get( nPrefix, aStrAttrName ) )
112 : {
113 : case XML_TOK_HATCH_NAME:
114 : {
115 0 : rStrName = rStrValue;
116 0 : bHasName = true;
117 : }
118 0 : break;
119 : case XML_TOK_HATCH_DISPLAY_NAME:
120 0 : aDisplayName = rStrValue;
121 0 : break;
122 : case XML_TOK_HATCH_STYLE:
123 : {
124 : sal_uInt16 eValue;
125 0 : bHasStyle = rUnitConverter.convertEnum( eValue, rStrValue, pXML_HatchStyle_Enum );
126 0 : if( bHasStyle )
127 0 : aHatch.Style = (drawing::HatchStyle) eValue;
128 : }
129 0 : break;
130 : case XML_TOK_HATCH_COLOR:
131 : {
132 : bHasColor = ::sax::Converter::convertColor(
133 0 : aHatch.Color, rStrValue);
134 : }
135 0 : break;
136 : case XML_TOK_HATCH_DISTANCE:
137 : bHasDist = rUnitConverter.convertMeasureToCore(
138 0 : (sal_Int32&)aHatch.Distance, rStrValue );
139 0 : break;
140 : case XML_TOK_HATCH_ROTATION:
141 : {
142 : sal_Int32 nValue;
143 0 : ::sax::Converter::convertNumber(nValue, rStrValue, 0, 3600);
144 0 : aHatch.Angle = sal_Int16( nValue );
145 : }
146 0 : break;
147 :
148 : default:
149 : DBG_WARNING( "Unknown token at import hatch style" )
150 : ;
151 : }
152 0 : }
153 :
154 0 : rValue <<= aHatch;
155 :
156 0 : if( !aDisplayName.isEmpty() )
157 : {
158 : rImport.AddStyleDisplayName( XML_STYLE_FAMILY_SD_HATCH_ID, rStrName,
159 0 : aDisplayName );
160 0 : rStrName = aDisplayName;
161 : }
162 :
163 0 : bool bRet = bHasName && bHasStyle && bHasColor && bHasDist;
164 :
165 0 : return bRet;
166 : }
167 :
168 : // Export
169 :
170 0 : XMLHatchStyleExport::XMLHatchStyleExport( SvXMLExport& rExp )
171 0 : : rExport(rExp)
172 : {
173 0 : }
174 :
175 0 : XMLHatchStyleExport::~XMLHatchStyleExport()
176 : {
177 0 : }
178 :
179 0 : bool XMLHatchStyleExport::exportXML(
180 : const OUString& rStrName,
181 : const uno::Any& rValue )
182 : {
183 0 : bool bRet = false;
184 0 : drawing::Hatch aHatch;
185 :
186 0 : if( !rStrName.isEmpty() )
187 : {
188 0 : if( rValue >>= aHatch )
189 : {
190 0 : OUString aStrValue;
191 0 : OUStringBuffer aOut;
192 :
193 : SvXMLUnitConverter& rUnitConverter =
194 0 : rExport.GetMM100UnitConverter();
195 :
196 : // Style
197 0 : if( !rUnitConverter.convertEnum( aOut, aHatch.Style, pXML_HatchStyle_Enum ) )
198 : {
199 0 : bRet = false;
200 : }
201 : else
202 : {
203 : // Name
204 0 : bool bEncoded = false;
205 : rExport.AddAttribute( XML_NAMESPACE_DRAW, XML_NAME,
206 : rExport.EncodeStyleName( rStrName,
207 0 : &bEncoded ) );
208 0 : if( bEncoded )
209 : rExport.AddAttribute( XML_NAMESPACE_DRAW, XML_DISPLAY_NAME,
210 0 : rStrName );
211 :
212 0 : aStrValue = aOut.makeStringAndClear();
213 0 : rExport.AddAttribute( XML_NAMESPACE_DRAW, XML_STYLE, aStrValue );
214 :
215 : // Color
216 0 : ::sax::Converter::convertColor(aOut, aHatch.Color);
217 0 : aStrValue = aOut.makeStringAndClear();
218 0 : rExport.AddAttribute( XML_NAMESPACE_DRAW, XML_COLOR, aStrValue );
219 :
220 : // Distance
221 0 : rUnitConverter.convertMeasureToXML( aOut, aHatch.Distance );
222 0 : aStrValue = aOut.makeStringAndClear();
223 0 : rExport.AddAttribute( XML_NAMESPACE_DRAW, XML_HATCH_DISTANCE, aStrValue );
224 :
225 : // Angle
226 0 : ::sax::Converter::convertNumber(aOut, sal_Int32(aHatch.Angle));
227 0 : aStrValue = aOut.makeStringAndClear();
228 0 : rExport.AddAttribute( XML_NAMESPACE_DRAW, XML_ROTATION, aStrValue );
229 :
230 : // Do Write
231 : SvXMLElementExport rElem( rExport, XML_NAMESPACE_DRAW, XML_HATCH,
232 0 : true, false );
233 0 : }
234 : }
235 : }
236 :
237 0 : return bRet;
238 : }
239 :
240 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|