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