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 26300 : SwPageFtnInfoItem::SwPageFtnInfoItem( const sal_uInt16 nId, SwPageFtnInfo& rInfo) :
36 : SfxPoolItem( nId ),
37 26300 : aFtnInfo(rInfo)
38 : {
39 26300 : }
40 :
41 68458 : SwPageFtnInfoItem::SwPageFtnInfoItem( const SwPageFtnInfoItem& rItem ) :
42 : SfxPoolItem( rItem ),
43 68458 : aFtnInfo(rItem.GetPageFtnInfo())
44 : {
45 68458 : }
46 :
47 163216 : SwPageFtnInfoItem::~SwPageFtnInfoItem()
48 : {
49 163216 : }
50 :
51 68458 : SfxPoolItem* SwPageFtnInfoItem::Clone( SfxItemPool * /*pPool*/ ) const
52 : {
53 68458 : return new SwPageFtnInfoItem( *this );
54 : }
55 :
56 9216 : bool SwPageFtnInfoItem::operator==( const SfxPoolItem& rAttr ) const
57 : {
58 : OSL_ENSURE( Which() == rAttr.Which(), "no equal attributes" );
59 9216 : return ( aFtnInfo == ((SwPageFtnInfoItem&)rAttr).GetPageFtnInfo());
60 : }
61 :
62 0 : bool SwPageFtnInfoItem::GetPresentation
63 : (
64 : SfxItemPresentation /*ePres*/,
65 : SfxMapUnit eCoreUnit,
66 : SfxMapUnit ePresUnit,
67 : OUString& rText,
68 : const IntlWrapper* pIntl
69 : ) const
70 : {
71 0 : const SwTwips nHght = GetPageFtnInfo().GetHeight();
72 0 : if ( nHght )
73 : {
74 0 : rText = SW_RESSTR( STR_MAX_FTN_HEIGHT ) + " " +
75 0 : ::GetMetricText( nHght, eCoreUnit, ePresUnit, pIntl ) + " " +
76 0 : ::GetSvxString( ::GetMetricId( ePresUnit ) );
77 : }
78 0 : return true;
79 : }
80 :
81 596 : bool SwPageFtnInfoItem::QueryValue( Any& rVal, sal_uInt8 nMemberId ) const
82 : {
83 596 : bool bRet = true;
84 596 : switch(nMemberId & ~CONVERT_TWIPS)
85 : {
86 82 : case MID_FTN_HEIGHT : rVal <<= (sal_Int32)convertTwipToMm100(aFtnInfo.GetHeight());break;
87 82 : case MID_LINE_WEIGHT : rVal <<= (sal_Int16)convertTwipToMm100(aFtnInfo.GetLineWidth());break;
88 82 : case MID_LINE_COLOR : rVal <<= (sal_Int32)aFtnInfo.GetLineColor().GetColor();break;
89 : case MID_LINE_RELWIDTH :
90 : {
91 90 : Fraction aTmp( 100, 1 );
92 90 : aTmp *= aFtnInfo.GetWidth();
93 90 : rVal <<= (sal_Int8)(long)aTmp;
94 : }
95 90 : break;
96 82 : case MID_LINE_ADJUST : rVal <<= (sal_Int16)aFtnInfo.GetAdj();break;//text::HorizontalAdjust
97 82 : case MID_LINE_TEXT_DIST : rVal <<= (sal_Int32)convertTwipToMm100(aFtnInfo.GetTopDist());break;
98 82 : case MID_LINE_FOOTNOTE_DIST: rVal <<= (sal_Int32)convertTwipToMm100(aFtnInfo.GetBottomDist());break;
99 : case MID_FTN_LINE_STYLE :
100 : {
101 14 : switch ( aFtnInfo.GetLineStyle( ) )
102 : {
103 : default:
104 0 : case table::BorderLineStyle::NONE : rVal <<= sal_Int8(0); break;
105 14 : case table::BorderLineStyle::SOLID: rVal <<= sal_Int8(1); break;
106 0 : case table::BorderLineStyle::DOTTED: rVal <<= sal_Int8(2); break;
107 0 : case table::BorderLineStyle::DASHED: rVal <<= sal_Int8(3); break;
108 : }
109 14 : break;
110 : }
111 : default:
112 0 : bRet = false;
113 : }
114 596 : return bRet;
115 : }
116 :
117 8538 : bool SwPageFtnInfoItem::PutValue(const Any& rVal, sal_uInt8 nMemberId)
118 : {
119 8538 : sal_Int32 nSet32 = 0;
120 8538 : bool bRet = true;
121 8538 : switch(nMemberId & ~CONVERT_TWIPS)
122 : {
123 : case MID_LINE_COLOR :
124 674 : rVal >>= nSet32;
125 674 : aFtnInfo.SetLineColor(nSet32);
126 674 : break;
127 : case MID_FTN_HEIGHT:
128 : case MID_LINE_TEXT_DIST :
129 : case MID_LINE_FOOTNOTE_DIST:
130 1922 : rVal >>= nSet32;
131 1922 : if(nSet32 < 0)
132 0 : bRet = false;
133 : else
134 : {
135 1922 : nSet32 = convertMm100ToTwip(nSet32);
136 1922 : switch(nMemberId & ~CONVERT_TWIPS)
137 : {
138 574 : case MID_FTN_HEIGHT: aFtnInfo.SetHeight(nSet32); break;
139 674 : case MID_LINE_TEXT_DIST: aFtnInfo.SetTopDist(nSet32);break;
140 674 : case MID_LINE_FOOTNOTE_DIST: aFtnInfo.SetBottomDist(nSet32);break;
141 : }
142 : }
143 1922 : break;
144 : case MID_LINE_WEIGHT :
145 : {
146 674 : sal_Int16 nSet = 0;
147 674 : rVal >>= nSet;
148 674 : if(nSet >= 0)
149 674 : aFtnInfo.SetLineWidth(convertMm100ToTwip(nSet));
150 : else
151 0 : bRet = false;
152 : }
153 674 : break;
154 : case MID_LINE_RELWIDTH :
155 : {
156 4584 : sal_Int8 nSet = 0;
157 4584 : rVal >>= nSet;
158 4584 : if(nSet < 0)
159 0 : bRet = false;
160 : else
161 4584 : aFtnInfo.SetWidth(Fraction(nSet, 100));
162 : }
163 4584 : break;
164 : case MID_LINE_ADJUST :
165 : {
166 674 : sal_Int16 nSet = 0;
167 674 : rVal >>= nSet;
168 674 : if(nSet >= 0 && nSet < 3) //text::HorizontalAdjust
169 674 : aFtnInfo.SetAdj((SwFtnAdj)nSet);
170 : else
171 0 : bRet = false;
172 : }
173 674 : break;
174 : case MID_FTN_LINE_STYLE:
175 : {
176 10 : ::editeng::SvxBorderStyle eStyle = table::BorderLineStyle::NONE;
177 10 : sal_Int8 nSet = 0;
178 10 : rVal >>= nSet;
179 10 : switch ( nSet )
180 : {
181 10 : case 1: eStyle = table::BorderLineStyle::SOLID; break;
182 0 : case 2: eStyle = table::BorderLineStyle::DOTTED; break;
183 0 : case 3: eStyle = table::BorderLineStyle::DASHED; break;
184 0 : default: break;
185 : }
186 10 : aFtnInfo.SetLineStyle( eStyle );
187 : }
188 10 : break;
189 : default:
190 0 : bRet = false;
191 : }
192 8538 : return bRet;
193 : }
194 :
195 0 : SwPtrItem::SwPtrItem( const sal_uInt16 nId, void* pPtr ) :
196 : SfxPoolItem( nId ),
197 0 : pMisc(pPtr)
198 : {
199 0 : }
200 :
201 : // Copy constructor
202 :
203 0 : SwPtrItem::SwPtrItem( const SwPtrItem& rItem ) : SfxPoolItem( rItem )
204 : {
205 0 : pMisc = rItem.pMisc;
206 0 : }
207 :
208 : // Cloning
209 :
210 0 : SfxPoolItem* SwPtrItem::Clone( SfxItemPool * /*pPool*/ ) const
211 : {
212 0 : return new SwPtrItem( *this );
213 : }
214 :
215 0 : bool SwPtrItem::operator==( const SfxPoolItem& rAttr ) const
216 : {
217 : assert(SfxPoolItem::operator==(rAttr));
218 0 : const SwPtrItem& rItem = (SwPtrItem&)rAttr;
219 0 : return ( pMisc == rItem.pMisc );
220 : }
221 :
222 : // SwUINumRuleItem for the NumTabPages of the FormatNumRule/Styleists
223 :
224 0 : SwUINumRuleItem::SwUINumRuleItem( const SwNumRule& rRul, const sal_uInt16 nId )
225 0 : : SfxPoolItem( nId ), pRule( new SwNumRule( rRul ) )
226 : {
227 0 : }
228 :
229 0 : SwUINumRuleItem::SwUINumRuleItem( const SwUINumRuleItem& rItem )
230 : : SfxPoolItem( rItem ),
231 0 : pRule( new SwNumRule( *rItem.pRule ))
232 : {
233 0 : }
234 :
235 0 : SwUINumRuleItem::~SwUINumRuleItem()
236 : {
237 0 : delete pRule;
238 0 : }
239 :
240 0 : SfxPoolItem* SwUINumRuleItem::Clone( SfxItemPool * /*pPool*/ ) const
241 : {
242 0 : return new SwUINumRuleItem( *this );
243 : }
244 :
245 0 : bool SwUINumRuleItem::operator==( const SfxPoolItem& rAttr ) const
246 : {
247 : assert(SfxPoolItem::operator==(rAttr));
248 0 : return *pRule == *((SwUINumRuleItem&)rAttr).pRule;
249 : }
250 :
251 0 : bool SwUINumRuleItem::QueryValue( uno::Any& rVal, sal_uInt8 /*nMemberId*/ ) const
252 : {
253 0 : uno::Reference< container::XIndexReplace >xRules = new SwXNumberingRules(*pRule);
254 0 : rVal.setValue(&xRules, cppu::UnoType<container::XIndexReplace>::get());
255 0 : return true;
256 : }
257 0 : bool SwUINumRuleItem::PutValue( const uno::Any& rVal, sal_uInt8 /*nMemberId*/ )
258 : {
259 0 : uno::Reference< container::XIndexReplace> xRulesRef;
260 0 : if(rVal >>= xRulesRef)
261 : {
262 0 : uno::Reference< lang::XUnoTunnel > xTunnel(xRulesRef, uno::UNO_QUERY);
263 0 : SwXNumberingRules* pSwXRules = xTunnel.is() ? reinterpret_cast<SwXNumberingRules*>(
264 0 : xTunnel->getSomething(SwXNumberingRules::getUnoTunnelId())) : 0;
265 0 : if(pSwXRules)
266 : {
267 0 : *pRule = *pSwXRules->GetNumRule();
268 0 : }
269 : }
270 0 : return true;
271 : }
272 :
273 0 : SwBackgroundDestinationItem::SwBackgroundDestinationItem(sal_uInt16 _nWhich, sal_uInt16 nValue) :
274 0 : SfxUInt16Item(_nWhich, nValue)
275 : {
276 0 : }
277 :
278 0 : SfxPoolItem* SwBackgroundDestinationItem::Clone( SfxItemPool * /*pPool*/ ) const
279 : {
280 0 : return new SwBackgroundDestinationItem(Which(), GetValue());
281 : }
282 :
283 0 : SwPaMItem::SwPaMItem( const sal_uInt16 nId, SwPaM* pPaM ) :
284 : SfxPoolItem( nId ),
285 0 : m_pPaM(pPaM)
286 : {
287 0 : }
288 :
289 0 : SwPaMItem::SwPaMItem( const SwPaMItem& rItem ) : SfxPoolItem( rItem )
290 : {
291 0 : m_pPaM = rItem.m_pPaM;
292 0 : }
293 :
294 0 : SfxPoolItem* SwPaMItem::Clone( SfxItemPool * /*pPool*/ ) const
295 : {
296 0 : return new SwPaMItem( *this );
297 : }
298 :
299 0 : bool SwPaMItem::operator==( const SfxPoolItem& rAttr ) const
300 : {
301 : assert(SfxPoolItem::operator==(rAttr));
302 0 : const SwPaMItem& rItem = (SwPaMItem&)rAttr;
303 0 : return ( m_pPaM == rItem.m_pPaM );
304 270 : }
305 :
306 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|