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 <com/sun/star/text/RelOrientation.hpp>
21 : #include <com/sun/star/text/VertOrientation.hpp>
22 : #include <com/sun/star/text/HorizontalAdjust.hpp>
23 : #include <com/sun/star/text/DocumentStatistic.hpp>
24 : #include <com/sun/star/text/HoriOrientation.hpp>
25 : #include <com/sun/star/text/HoriOrientationFormat.hpp>
26 : #include <com/sun/star/text/NotePrintMode.hpp>
27 : #include <com/sun/star/text/SizeType.hpp>
28 : #include <com/sun/star/text/VertOrientationFormat.hpp>
29 : #include <com/sun/star/text/WrapTextMode.hpp>
30 : #include <com/sun/star/text/GraphicCrop.hpp>
31 : #include <com/sun/star/text/XTextGraphicObjectsSupplier.hpp>
32 : #include <com/sun/star/drawing/ColorMode.hpp>
33 : #include <svtools/grfmgr.hxx>
34 : #include <swtypes.hxx>
35 : #include <grfatr.hxx>
36 : #include <swunohelper.hxx>
37 :
38 : #include <cmdid.h>
39 : #include <unomid.h>
40 :
41 : using namespace ::com::sun::star;
42 :
43 0 : TYPEINIT1_AUTOFACTORY(SwCropGrf, SfxPoolItem)
44 0 : TYPEINIT1_AUTOFACTORY(SwGammaGrf, SfxPoolItem)
45 :
46 : // SwMirrorGrf
47 :
48 0 : SfxPoolItem* SwMirrorGrf::Clone( SfxItemPool* ) const
49 : {
50 0 : return new SwMirrorGrf( *this );
51 : }
52 :
53 0 : sal_uInt16 SwMirrorGrf::GetValueCount() const
54 : {
55 0 : return RES_MIRROR_GRAPH_END - RES_MIRROR_GRAPH_BEGIN;
56 : }
57 :
58 0 : bool SwMirrorGrf::operator==( const SfxPoolItem& rItem) const
59 : {
60 0 : return SfxEnumItem::operator==(rItem) &&
61 0 : ((SwMirrorGrf&)rItem).IsGrfToggle() == IsGrfToggle();
62 : }
63 :
64 0 : static sal_Bool lcl_IsHoriOnEvenPages(int nEnum, sal_Bool bToggle)
65 : {
66 0 : sal_Bool bEnum = nEnum == RES_MIRROR_GRAPH_VERT ||
67 0 : nEnum == RES_MIRROR_GRAPH_BOTH;
68 0 : return bEnum != bToggle;
69 : }
70 :
71 0 : static sal_Bool lcl_IsHoriOnOddPages(int nEnum)
72 : {
73 0 : sal_Bool bEnum = nEnum == RES_MIRROR_GRAPH_VERT ||
74 0 : nEnum == RES_MIRROR_GRAPH_BOTH;
75 0 : return bEnum;
76 : }
77 :
78 0 : bool SwMirrorGrf::QueryValue( uno::Any& rVal, sal_uInt8 nMemberId ) const
79 : {
80 0 : bool bRet = true;
81 : sal_Bool bVal;
82 : // vertical and horizontal were swapped at some point
83 0 : nMemberId &= ~CONVERT_TWIPS;
84 0 : switch ( nMemberId )
85 : {
86 : case MID_MIRROR_HORZ_EVEN_PAGES:
87 0 : bVal = lcl_IsHoriOnEvenPages(GetValue(), IsGrfToggle());
88 0 : break;
89 : case MID_MIRROR_HORZ_ODD_PAGES:
90 0 : bVal = lcl_IsHoriOnOddPages(GetValue());
91 0 : break;
92 : case MID_MIRROR_VERT:
93 0 : bVal = GetValue() == RES_MIRROR_GRAPH_HOR ||
94 0 : GetValue() == RES_MIRROR_GRAPH_BOTH;
95 0 : break;
96 : default:
97 : OSL_ENSURE( !this, "unknown MemberId" );
98 0 : bRet = false;
99 : }
100 0 : rVal.setValue( &bVal, ::getBooleanCppuType() );
101 0 : return bRet;
102 : }
103 :
104 0 : bool SwMirrorGrf::PutValue( const uno::Any& rVal, sal_uInt8 nMemberId )
105 : {
106 0 : bool bRet = true;
107 0 : sal_Bool bVal = *(sal_Bool*)rVal.getValue();
108 : // vertical and horizontal were swapped at some point
109 0 : nMemberId &= ~CONVERT_TWIPS;
110 0 : switch ( nMemberId )
111 : {
112 : case MID_MIRROR_HORZ_EVEN_PAGES:
113 : case MID_MIRROR_HORZ_ODD_PAGES:
114 : {
115 0 : sal_Bool bIsVert = GetValue() == RES_MIRROR_GRAPH_HOR ||
116 0 : GetValue() == RES_MIRROR_GRAPH_BOTH;
117 : sal_Bool bOnOddPages = nMemberId == MID_MIRROR_HORZ_EVEN_PAGES ?
118 0 : lcl_IsHoriOnOddPages(GetValue()) : bVal;
119 : sal_Bool bOnEvenPages = nMemberId == MID_MIRROR_HORZ_ODD_PAGES ?
120 0 : lcl_IsHoriOnEvenPages(GetValue(), IsGrfToggle()) : bVal;
121 : MirrorGraph nEnum = bOnOddPages ?
122 : bIsVert ? RES_MIRROR_GRAPH_BOTH : RES_MIRROR_GRAPH_VERT :
123 0 : bIsVert ? RES_MIRROR_GRAPH_HOR : RES_MIRROR_GRAPH_DONT;
124 0 : sal_Bool bToggle = bOnOddPages != bOnEvenPages;
125 0 : SetValue(static_cast<sal_uInt16>(nEnum));
126 0 : SetGrfToggle( bToggle );
127 : }
128 0 : break;
129 : case MID_MIRROR_VERT:
130 0 : if ( bVal )
131 : {
132 0 : if ( GetValue() == RES_MIRROR_GRAPH_VERT )
133 0 : SetValue( RES_MIRROR_GRAPH_BOTH );
134 0 : else if ( GetValue() != RES_MIRROR_GRAPH_BOTH )
135 0 : SetValue( RES_MIRROR_GRAPH_HOR );
136 : }
137 : else
138 : {
139 0 : if ( GetValue() == RES_MIRROR_GRAPH_BOTH )
140 0 : SetValue( RES_MIRROR_GRAPH_VERT );
141 0 : else if ( GetValue() == RES_MIRROR_GRAPH_HOR )
142 0 : SetValue( RES_MIRROR_GRAPH_DONT );
143 : }
144 0 : break;
145 : default:
146 : OSL_ENSURE( !this, "unknown MemberId" );
147 0 : bRet = false;
148 : }
149 0 : return bRet;
150 : }
151 :
152 : // SwCropGrf
153 :
154 0 : SwCropGrf::SwCropGrf()
155 0 : : SvxGrfCrop( RES_GRFATR_CROPGRF )
156 0 : {}
157 :
158 0 : SwCropGrf::SwCropGrf(sal_Int32 nL, sal_Int32 nR, sal_Int32 nT, sal_Int32 nB )
159 0 : : SvxGrfCrop( nL, nR, nT, nB, RES_GRFATR_CROPGRF )
160 0 : {}
161 :
162 0 : SfxPoolItem* SwCropGrf::Clone( SfxItemPool* ) const
163 : {
164 0 : return new SwCropGrf( *this );
165 : }
166 :
167 : // SwRotationGrf
168 :
169 0 : SfxPoolItem* SwRotationGrf::Clone( SfxItemPool * ) const
170 : {
171 0 : return new SwRotationGrf( GetValue(), aUnrotatedSize );
172 : }
173 :
174 0 : bool SwRotationGrf::operator==( const SfxPoolItem& rCmp ) const
175 : {
176 0 : return SfxUInt16Item::operator==( rCmp ) &&
177 0 : GetUnrotatedSize() == ((SwRotationGrf&)rCmp).GetUnrotatedSize();
178 : }
179 :
180 0 : bool SwRotationGrf::QueryValue( uno::Any& rVal, sal_uInt8 ) const
181 : {
182 : // SfxUInt16Item::QueryValue returns sal_Int32 in Any now... (srx642w)
183 : // where we still want this to be a sal_Int16
184 0 : rVal <<= (sal_Int16)GetValue();
185 0 : return true;
186 : }
187 :
188 0 : bool SwRotationGrf::PutValue( const uno::Any& rVal, sal_uInt8 )
189 : {
190 : // SfxUInt16Item::QueryValue returns sal_Int32 in Any now... (srx642w)
191 : // where we still want this to be a sal_Int16
192 0 : sal_Int16 nValue = 0;
193 0 : if (rVal >>= nValue)
194 : {
195 : // sal_uInt16 argument needed
196 0 : SetValue( (sal_uInt16) nValue );
197 0 : return true;
198 : }
199 :
200 : OSL_FAIL( "SwRotationGrf::PutValue - Wrong type!" );
201 0 : return false;
202 : }
203 :
204 : // Sw___Grf::Clone(..)
205 :
206 0 : SfxPoolItem* SwLuminanceGrf::Clone( SfxItemPool * ) const
207 : {
208 0 : return new SwLuminanceGrf( *this );
209 : }
210 :
211 0 : SfxPoolItem* SwContrastGrf::Clone( SfxItemPool * ) const
212 : {
213 0 : return new SwContrastGrf( *this );
214 : }
215 :
216 0 : SfxPoolItem* SwChannelRGrf::Clone( SfxItemPool * ) const
217 : {
218 0 : return new SwChannelRGrf( *this );
219 : }
220 :
221 0 : SfxPoolItem* SwChannelGGrf::Clone( SfxItemPool * ) const
222 : {
223 0 : return new SwChannelGGrf( *this );
224 : }
225 :
226 0 : SfxPoolItem* SwChannelBGrf::Clone( SfxItemPool * ) const
227 : {
228 0 : return new SwChannelBGrf( *this );
229 : }
230 :
231 0 : SfxPoolItem* SwGammaGrf::Clone( SfxItemPool * ) const
232 : {
233 0 : return new SwGammaGrf( *this );
234 : }
235 :
236 : // SwGammaGrf
237 :
238 0 : bool SwGammaGrf::operator==( const SfxPoolItem& rCmp ) const
239 : {
240 0 : return SfxPoolItem::operator==( rCmp ) &&
241 0 : nValue == ((SwGammaGrf&)rCmp).GetValue();
242 : }
243 :
244 0 : bool SwGammaGrf::QueryValue( uno::Any& rVal, sal_uInt8 ) const
245 : {
246 0 : rVal <<= nValue;
247 0 : return true;
248 : }
249 :
250 0 : bool SwGammaGrf::PutValue( const uno::Any& rVal, sal_uInt8 )
251 : {
252 0 : return rVal >>= nValue;
253 : }
254 :
255 : // Sw___Grf::Clone(..) cont'd
256 :
257 0 : SfxPoolItem* SwInvertGrf::Clone( SfxItemPool * ) const
258 : {
259 0 : return new SwInvertGrf( *this );
260 : }
261 :
262 0 : SfxPoolItem* SwTransparencyGrf::Clone( SfxItemPool * ) const
263 : {
264 0 : return new SwTransparencyGrf( *this );
265 : }
266 :
267 : // SwTransparencyGrf
268 :
269 0 : bool SwTransparencyGrf::QueryValue( uno::Any& rVal,
270 : sal_uInt8 ) const
271 : {
272 : OSL_ENSURE(ISA(SfxByteItem),"Put/QueryValue should be removed!");
273 0 : sal_Int16 nRet = GetValue();
274 : OSL_ENSURE( 0 <= nRet && nRet <= 100, "value out of range" );
275 0 : rVal <<= nRet;
276 0 : return true;
277 : }
278 :
279 0 : bool SwTransparencyGrf::PutValue( const uno::Any& rVal,
280 : sal_uInt8 )
281 : {
282 : //temporary conversion until this is a SfxInt16Item!
283 : OSL_ENSURE(ISA(SfxByteItem),"Put/QueryValue should be removed!");
284 0 : sal_Int16 nVal = 0;
285 0 : if(!(rVal >>= nVal) || nVal < -100 || nVal > 100)
286 0 : return false;
287 0 : if(nVal < 0)
288 : {
289 : // for compatibility with old documents
290 : // introduce rounding as for SO 6.0 PP2
291 0 : nVal = ( ( nVal * 128 ) - (99/2) ) / 100;
292 0 : nVal += 128;
293 : }
294 : OSL_ENSURE( 0 <= nVal && nVal <= 100, "value out of range" );
295 0 : SetValue(static_cast<sal_uInt8>(nVal));
296 0 : return true;
297 : }
298 :
299 : // Sw___Grf::Clone(..) cont'd
300 :
301 0 : SfxPoolItem* SwDrawModeGrf::Clone( SfxItemPool * ) const
302 : {
303 0 : return new SwDrawModeGrf( *this );
304 : }
305 :
306 : // SwDrawModeGrf
307 :
308 0 : sal_uInt16 SwDrawModeGrf::GetValueCount() const
309 : {
310 0 : return GRAPHICDRAWMODE_WATERMARK + 1;
311 : }
312 :
313 0 : bool SwDrawModeGrf::QueryValue( uno::Any& rVal,
314 : sal_uInt8 ) const
315 : {
316 0 : drawing::ColorMode eRet = (drawing::ColorMode)GetEnumValue();
317 0 : rVal <<= eRet;
318 0 : return true;
319 : }
320 :
321 0 : bool SwDrawModeGrf::PutValue( const uno::Any& rVal,
322 : sal_uInt8 )
323 : {
324 0 : sal_Int32 eVal = SWUnoHelper::GetEnumAsInt32( rVal );
325 0 : if(eVal >= 0 && eVal <= GRAPHICDRAWMODE_WATERMARK)
326 : {
327 0 : SetEnumValue((sal_uInt16)eVal);
328 0 : return true;
329 : }
330 0 : return false;
331 : }
332 :
333 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|