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 <editeng/itemtype.hxx>
21 : #include <unosett.hxx>
22 :
23 : #include "swtypes.hxx"
24 : #include "cmdid.h"
25 : #include "uiitems.hxx"
26 :
27 : #include "utlui.hrc"
28 : #include "attrdesc.hrc"
29 : #include <unomid.h>
30 : #include <numrule.hxx>
31 :
32 : using namespace ::com::sun::star;
33 : using namespace ::com::sun::star::uno;
34 :
35 1123 : SwPageFtnInfoItem::SwPageFtnInfoItem( const sal_uInt16 nId, SwPageFtnInfo& rInfo) :
36 : SfxPoolItem( nId ),
37 1123 : aFtnInfo(rInfo)
38 : {
39 1123 : }
40 :
41 :
42 2236 : SwPageFtnInfoItem::SwPageFtnInfoItem( const SwPageFtnInfoItem& rItem ) :
43 : SfxPoolItem( rItem ),
44 2236 : aFtnInfo(rItem.GetPageFtnInfo())
45 : {
46 2236 : }
47 :
48 :
49 5595 : SwPageFtnInfoItem::~SwPageFtnInfoItem()
50 : {
51 5595 : }
52 :
53 :
54 2236 : SfxPoolItem* SwPageFtnInfoItem::Clone( SfxItemPool * /*pPool*/ ) const
55 : {
56 2236 : return new SwPageFtnInfoItem( *this );
57 : }
58 :
59 :
60 252 : int SwPageFtnInfoItem::operator==( const SfxPoolItem& rAttr ) const
61 : {
62 : OSL_ENSURE( Which() == rAttr.Which(), "keine gleichen Attribute" );
63 252 : return ( aFtnInfo == ((SwPageFtnInfoItem&)rAttr).GetPageFtnInfo());
64 : }
65 :
66 :
67 0 : SfxItemPresentation SwPageFtnInfoItem::GetPresentation
68 : (
69 : SfxItemPresentation ePres,
70 : SfxMapUnit eCoreUnit,
71 : SfxMapUnit ePresUnit,
72 : String& rText,
73 : const IntlWrapper* pIntl
74 : ) const
75 : {
76 0 : switch ( ePres )
77 : {
78 : case SFX_ITEM_PRESENTATION_NONE:
79 0 : rText.Erase();
80 0 : return SFX_ITEM_PRESENTATION_NONE;
81 : case SFX_ITEM_PRESENTATION_NAMELESS:
82 : case SFX_ITEM_PRESENTATION_COMPLETE:
83 : {
84 0 : sal_uInt16 nHght = (sal_uInt16) GetPageFtnInfo().GetHeight();
85 0 : if ( nHght )
86 : {
87 0 : rText = SW_RESSTR( STR_MAX_FTN_HEIGHT );
88 0 : rText += ' ';
89 0 : rText += ::GetMetricText( nHght, eCoreUnit, ePresUnit, pIntl );
90 0 : rText += ::GetSvxString( ::GetMetricId( ePresUnit ) );
91 : }
92 0 : return ePres;
93 : }
94 : default:; //prevent warning
95 : }
96 0 : return SFX_ITEM_PRESENTATION_NONE;
97 : }
98 :
99 32 : bool SwPageFtnInfoItem::QueryValue( Any& rVal, sal_uInt8 nMemberId ) const
100 : {
101 32 : bool bRet = true;
102 32 : switch(nMemberId & ~CONVERT_TWIPS)
103 : {
104 4 : case MID_FTN_HEIGHT : rVal <<= (sal_Int32)TWIP_TO_MM100(aFtnInfo.GetHeight());break;
105 4 : case MID_LINE_WEIGHT : rVal <<= (sal_Int16)TWIP_TO_MM100_UNSIGNED(aFtnInfo.GetLineWidth());break;
106 4 : case MID_LINE_COLOR : rVal <<= (sal_Int32)aFtnInfo.GetLineColor().GetColor();break;
107 : case MID_LINE_RELWIDTH :
108 : {
109 4 : Fraction aTmp( 100, 1 );
110 4 : aTmp *= aFtnInfo.GetWidth();
111 4 : rVal <<= (sal_Int8)(long)aTmp;
112 : }
113 4 : break;
114 4 : case MID_LINE_ADJUST : rVal <<= (sal_Int16)aFtnInfo.GetAdj();break;//text::HorizontalAdjust
115 4 : case MID_LINE_TEXT_DIST : rVal <<= (sal_Int32)TWIP_TO_MM100(aFtnInfo.GetTopDist());break;
116 4 : case MID_LINE_FOOTNOTE_DIST: rVal <<= (sal_Int32)TWIP_TO_MM100(aFtnInfo.GetBottomDist());break;
117 : case MID_FTN_LINE_STYLE :
118 : {
119 4 : switch ( aFtnInfo.GetLineStyle( ) )
120 : {
121 : default:
122 0 : case table::BorderLineStyle::NONE : rVal <<= sal_Int8(0); break;
123 4 : case table::BorderLineStyle::SOLID: rVal <<= sal_Int8(1); break;
124 0 : case table::BorderLineStyle::DOTTED: rVal <<= sal_Int8(2); break;
125 0 : case table::BorderLineStyle::DASHED: rVal <<= sal_Int8(3); break;
126 : }
127 4 : break;
128 : }
129 : default:
130 0 : bRet = false;
131 : }
132 32 : return bRet;
133 : }
134 :
135 224 : bool SwPageFtnInfoItem::PutValue(const Any& rVal, sal_uInt8 nMemberId)
136 : {
137 224 : sal_Int32 nSet32 = 0;
138 224 : bool bRet = true;
139 224 : switch(nMemberId & ~CONVERT_TWIPS)
140 : {
141 : case MID_LINE_COLOR :
142 28 : rVal >>= nSet32;
143 28 : aFtnInfo.SetLineColor(nSet32);
144 28 : break;
145 : case MID_FTN_HEIGHT:
146 : case MID_LINE_TEXT_DIST :
147 : case MID_LINE_FOOTNOTE_DIST:
148 84 : rVal >>= nSet32;
149 84 : if(nSet32 < 0)
150 0 : bRet = false;
151 : else
152 : {
153 84 : nSet32 = MM100_TO_TWIP(nSet32);
154 84 : switch(nMemberId & ~CONVERT_TWIPS)
155 : {
156 28 : case MID_FTN_HEIGHT: aFtnInfo.SetHeight(nSet32); break;
157 28 : case MID_LINE_TEXT_DIST: aFtnInfo.SetTopDist(nSet32);break;
158 28 : case MID_LINE_FOOTNOTE_DIST: aFtnInfo.SetBottomDist(nSet32);break;
159 : }
160 : }
161 84 : break;
162 : case MID_LINE_WEIGHT :
163 : {
164 28 : sal_Int16 nSet = 0;
165 28 : rVal >>= nSet;
166 28 : if(nSet >= 0)
167 28 : aFtnInfo.SetLineWidth(MM100_TO_TWIP(nSet));
168 : else
169 0 : bRet = false;
170 : }
171 28 : break;
172 : case MID_LINE_RELWIDTH :
173 : {
174 28 : sal_Int8 nSet = 0;
175 28 : rVal >>= nSet;
176 28 : if(nSet < 0)
177 0 : bRet = false;
178 : else
179 28 : aFtnInfo.SetWidth(Fraction(nSet, 100));
180 : }
181 28 : break;
182 : case MID_LINE_ADJUST :
183 : {
184 28 : sal_Int16 nSet = 0;
185 28 : rVal >>= nSet;
186 28 : if(nSet >= 0 && nSet < 3) //text::HorizontalAdjust
187 28 : aFtnInfo.SetAdj((SwFtnAdj)nSet);
188 : else
189 0 : bRet = false;
190 : }
191 : case MID_FTN_LINE_STYLE:
192 : {
193 56 : ::editeng::SvxBorderStyle eStyle = table::BorderLineStyle::NONE;
194 56 : sal_Int8 nSet = 0;
195 56 : rVal >>= nSet;
196 56 : switch ( nSet )
197 : {
198 22 : case 1: eStyle = table::BorderLineStyle::SOLID; break;
199 0 : case 2: eStyle = table::BorderLineStyle::DOTTED; break;
200 0 : case 3: eStyle = table::BorderLineStyle::DASHED; break;
201 34 : default: break;
202 : }
203 56 : aFtnInfo.SetLineStyle( eStyle );
204 : }
205 56 : break;
206 : default:
207 0 : bRet = false;
208 : }
209 224 : return bRet;
210 : }
211 :
212 0 : SwPtrItem::SwPtrItem( const sal_uInt16 nId, void* pPtr ) :
213 : SfxPoolItem( nId ),
214 0 : pMisc(pPtr)
215 : {
216 0 : }
217 :
218 : /*--------------------------------------------------------------------
219 : Beschreibung: Copy-Konstruktor
220 : --------------------------------------------------------------------*/
221 :
222 :
223 0 : SwPtrItem::SwPtrItem( const SwPtrItem& rItem ) : SfxPoolItem( rItem )
224 : {
225 0 : pMisc = rItem.pMisc;
226 0 : }
227 :
228 : /*--------------------------------------------------------------------
229 : Beschreibung: Clonen
230 : --------------------------------------------------------------------*/
231 :
232 :
233 0 : SfxPoolItem* SwPtrItem::Clone( SfxItemPool * /*pPool*/ ) const
234 : {
235 0 : return new SwPtrItem( *this );
236 : }
237 :
238 0 : int SwPtrItem::operator==( const SfxPoolItem& rAttr ) const
239 : {
240 : OSL_ENSURE( SfxPoolItem::operator==(rAttr), "unequal types" );
241 0 : const SwPtrItem& rItem = (SwPtrItem&)rAttr;
242 0 : return ( pMisc == rItem.pMisc );
243 : }
244 :
245 :
246 : /*--------------------------------------------------------------
247 : SwUINumRuleItem fuer die NumTabPages der FormatNumRule/Stylisten
248 : ---------------------------------------------------------------*/
249 0 : SwUINumRuleItem::SwUINumRuleItem( const SwNumRule& rRul, const sal_uInt16 nId )
250 0 : : SfxPoolItem( nId ), pRule( new SwNumRule( rRul ) )
251 : {
252 0 : }
253 :
254 0 : SwUINumRuleItem::SwUINumRuleItem( const SwUINumRuleItem& rItem )
255 : : SfxPoolItem( rItem ),
256 0 : pRule( new SwNumRule( *rItem.pRule ))
257 : {
258 0 : }
259 :
260 0 : SwUINumRuleItem::~SwUINumRuleItem()
261 : {
262 0 : delete pRule;
263 0 : }
264 :
265 :
266 0 : SfxPoolItem* SwUINumRuleItem::Clone( SfxItemPool * /*pPool*/ ) const
267 : {
268 0 : return new SwUINumRuleItem( *this );
269 : }
270 :
271 0 : int SwUINumRuleItem::operator==( const SfxPoolItem& rAttr ) const
272 : {
273 : OSL_ENSURE( SfxPoolItem::operator==(rAttr), "unequal types" );
274 0 : return *pRule == *((SwUINumRuleItem&)rAttr).pRule;
275 : }
276 :
277 0 : bool SwUINumRuleItem::QueryValue( uno::Any& rVal, sal_uInt8 /*nMemberId*/ ) const
278 : {
279 0 : uno::Reference< container::XIndexReplace >xRules = new SwXNumberingRules(*pRule);
280 0 : rVal.setValue(&xRules, ::getCppuType((uno::Reference< container::XIndexReplace>*)0));
281 0 : return true;
282 : }
283 0 : bool SwUINumRuleItem::PutValue( const uno::Any& rVal, sal_uInt8 /*nMemberId*/ )
284 : {
285 0 : uno::Reference< container::XIndexReplace> xRulesRef;
286 0 : if(rVal >>= xRulesRef)
287 : {
288 0 : uno::Reference< lang::XUnoTunnel > xTunnel(xRulesRef, uno::UNO_QUERY);
289 0 : SwXNumberingRules* pSwXRules = xTunnel.is() ? reinterpret_cast<SwXNumberingRules*>(
290 0 : xTunnel->getSomething(SwXNumberingRules::getUnoTunnelId())) : 0;
291 0 : if(pSwXRules)
292 : {
293 0 : *pRule = *pSwXRules->GetNumRule();
294 0 : }
295 : }
296 0 : return true;
297 : }
298 :
299 0 : SwBackgroundDestinationItem::SwBackgroundDestinationItem(sal_uInt16 _nWhich, sal_uInt16 nValue) :
300 0 : SfxUInt16Item(_nWhich, nValue)
301 : {
302 0 : }
303 :
304 0 : SfxPoolItem* SwBackgroundDestinationItem::Clone( SfxItemPool * /*pPool*/ ) const
305 : {
306 0 : return new SwBackgroundDestinationItem(Which(), GetValue());
307 : }
308 :
309 :
310 0 : SwPaMItem::SwPaMItem( const sal_uInt16 nId, SwPaM* pPaM ) :
311 : SfxPoolItem( nId ),
312 0 : m_pPaM(pPaM)
313 : {
314 0 : }
315 :
316 :
317 0 : SwPaMItem::SwPaMItem( const SwPaMItem& rItem ) : SfxPoolItem( rItem )
318 : {
319 0 : m_pPaM = rItem.m_pPaM;
320 0 : }
321 :
322 :
323 0 : SfxPoolItem* SwPaMItem::Clone( SfxItemPool * /*pPool*/ ) const
324 : {
325 0 : return new SwPaMItem( *this );
326 : }
327 :
328 0 : int SwPaMItem::operator==( const SfxPoolItem& rAttr ) const
329 : {
330 : OSL_ENSURE( SfxPoolItem::operator==(rAttr), "unequal types" );
331 0 : const SwPaMItem& rItem = (SwPaMItem&)rAttr;
332 0 : return ( m_pPaM == rItem.m_pPaM );
333 : }
334 :
335 :
336 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|