Branch data Line data Source code
1 : : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : : /*************************************************************************
3 : : *
4 : : * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 : : *
6 : : * Copyright 2000, 2010 Oracle and/or its affiliates.
7 : : *
8 : : * OpenOffice.org - a multi-platform office productivity suite
9 : : *
10 : : * This file is part of OpenOffice.org.
11 : : *
12 : : * OpenOffice.org is free software: you can redistribute it and/or modify
13 : : * it under the terms of the GNU Lesser General Public License version 3
14 : : * only, as published by the Free Software Foundation.
15 : : *
16 : : * OpenOffice.org is distributed in the hope that it will be useful,
17 : : * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 : : * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 : : * GNU Lesser General Public License version 3 for more details
20 : : * (a copy is included in the LICENSE file that accompanied this code).
21 : : *
22 : : * You should have received a copy of the GNU Lesser General Public License
23 : : * version 3 along with OpenOffice.org. If not, see
24 : : * <http://www.openoffice.org/license.html>
25 : : * for a copy of the LGPLv3 License.
26 : : *
27 : : ************************************************************************/
28 : :
29 : : #include <tools/stream.hxx>
30 : :
31 : : #include <svx/viewlayoutitem.hxx>
32 : : #include <com/sun/star/uno/Sequence.hxx>
33 : : #include <com/sun/star/beans/PropertyValue.hpp>
34 : :
35 : : // -----------------------------------------------------------------------
36 : :
37 [ - + ][ - + ]: 11876 : TYPEINIT1_FACTORY(SvxViewLayoutItem,SfxUInt16Item, new SvxViewLayoutItem);
[ + - ]
38 : :
39 : : #define VIEWLAYOUT_PARAM_COLUMNS "Columns"
40 : : #define VIEWLAYOUT_PARAM_BOOKMODE "BookMode"
41 : : #define VIEWLAYOUT_PARAMS 2
42 : :
43 : : // -----------------------------------------------------------------------
44 : :
45 : 2594 : SvxViewLayoutItem::SvxViewLayoutItem
46 : : (
47 : : sal_uInt16 nColumns,
48 : : bool bBookMode,
49 : : sal_uInt16 _nWhich
50 : : )
51 : : : SfxUInt16Item( _nWhich, nColumns ),
52 : 2594 : mbBookMode( bBookMode )
53 : : {
54 : 2594 : }
55 : :
56 : : // -----------------------------------------------------------------------
57 : :
58 : 3072 : SvxViewLayoutItem::SvxViewLayoutItem( const SvxViewLayoutItem& rOrig )
59 : 3072 : : SfxUInt16Item( rOrig.Which(), rOrig.GetValue() ),
60 : 3072 : mbBookMode( rOrig.IsBookMode() )
61 : : {
62 : 3072 : }
63 : :
64 : : // -----------------------------------------------------------------------
65 : :
66 : 5662 : SvxViewLayoutItem::~SvxViewLayoutItem()
67 : : {
68 [ - + ]: 9966 : }
69 : :
70 : : // -----------------------------------------------------------------------
71 : :
72 : 3072 : SfxPoolItem* SvxViewLayoutItem::Clone( SfxItemPool * /*pPool*/ ) const
73 : : {
74 [ + - ]: 3072 : return new SvxViewLayoutItem( *this );
75 : : }
76 : :
77 : : // -----------------------------------------------------------------------
78 : :
79 : 0 : SfxPoolItem* SvxViewLayoutItem::Create( SvStream& /*rStrm*/, sal_uInt16 /*nVersion*/ ) const
80 : : {
81 : 0 : return 0;
82 : : }
83 : :
84 : : // -----------------------------------------------------------------------
85 : :
86 : 0 : SvStream& SvxViewLayoutItem::Store( SvStream& rStrm, sal_uInt16 /*nItemVersion*/ ) const
87 : : {
88 : 0 : return rStrm;
89 : : }
90 : :
91 : : // -----------------------------------------------------------------------
92 : :
93 : 121 : int SvxViewLayoutItem::operator==( const SfxPoolItem& rAttr ) const
94 : : {
95 : : DBG_ASSERT( SfxPoolItem::operator==(rAttr), "unequal types" );
96 : :
97 : 121 : SvxViewLayoutItem& rItem = (SvxViewLayoutItem&)rAttr;
98 : :
99 : 121 : return ( GetValue() == rItem.GetValue() &&
100 [ + - ][ + - ]: 121 : mbBookMode == rItem.IsBookMode() );
101 : : }
102 : :
103 : 1237 : bool SvxViewLayoutItem::QueryValue( com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId ) const
104 : : {
105 : 1237 : nMemberId &= ~CONVERT_TWIPS;
106 [ + - - - ]: 1237 : switch ( nMemberId )
107 : : {
108 : : case 0 :
109 : : {
110 [ + - ]: 1237 : ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > aSeq( VIEWLAYOUT_PARAMS );
111 [ + - ][ + - ]: 1237 : aSeq[0].Name = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( VIEWLAYOUT_PARAM_COLUMNS ));
112 [ + - ][ + - ]: 1237 : aSeq[0].Value <<= sal_Int32( GetValue() );
113 [ + - ][ + - ]: 1237 : aSeq[1].Name = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( VIEWLAYOUT_PARAM_BOOKMODE ));
114 [ + - ][ + - ]: 1237 : aSeq[1].Value <<= sal_Bool( mbBookMode );
115 [ + - ][ + - ]: 1237 : rVal <<= aSeq;
116 : : }
117 : 1237 : break;
118 : :
119 [ # # ]: 0 : case MID_VIEWLAYOUT_COLUMNS : rVal <<= (sal_Int32) GetValue(); break;
120 [ # # ]: 0 : case MID_VIEWLAYOUT_BOOKMODE: rVal <<= (sal_Bool) mbBookMode; break;
121 : : default:
122 : : OSL_FAIL("svx::SvxViewLayoutItem::QueryValue(), Wrong MemberId!");
123 : 0 : return false;
124 : : }
125 : :
126 : 1237 : return true;
127 : : }
128 : :
129 : 1236 : bool SvxViewLayoutItem::PutValue( const com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId )
130 : : {
131 : 1236 : nMemberId &= ~CONVERT_TWIPS;
132 [ + - - - ]: 1236 : switch ( nMemberId )
133 : : {
134 : : case 0 :
135 : : {
136 [ + - ]: 1236 : ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > aSeq;
137 [ + - ][ + - ]: 1236 : if (( rVal >>= aSeq ) && ( aSeq.getLength() == VIEWLAYOUT_PARAMS ))
[ + - ][ + - ]
138 : : {
139 : 1236 : sal_Int32 nColumns( 0 );
140 : 1236 : sal_Bool bBookMode = sal_False;
141 : 1236 : sal_Bool bAllConverted( sal_True );
142 : 1236 : sal_Int16 nConvertedCount( 0 );
143 [ + + ]: 3708 : for ( sal_Int32 i = 0; i < aSeq.getLength(); i++ )
144 : : {
145 [ + - ][ + + ]: 2472 : if ( aSeq[i].Name.equalsAscii( VIEWLAYOUT_PARAM_COLUMNS ))
146 : : {
147 [ + - ]: 1236 : bAllConverted &= ( aSeq[i].Value >>= nColumns );
148 : 1236 : ++nConvertedCount;
149 : : }
150 [ + - ][ + - ]: 1236 : else if ( aSeq[i].Name.equalsAscii( VIEWLAYOUT_PARAM_BOOKMODE ))
151 : : {
152 [ + - ]: 1236 : bAllConverted &= ( aSeq[i].Value >>= bBookMode );
153 : 1236 : ++nConvertedCount;
154 : : }
155 : : }
156 : :
157 [ + - ][ + - ]: 1236 : if ( bAllConverted && nConvertedCount == VIEWLAYOUT_PARAMS )
158 : : {
159 : 1236 : SetValue( (sal_uInt16)nColumns );
160 : 1236 : mbBookMode = bBookMode;
161 : 1236 : return true;
162 : : }
163 : : }
164 : :
165 [ + - ]: 1236 : return false;
166 : : }
167 : :
168 : : case MID_VIEWLAYOUT_COLUMNS:
169 : : {
170 : 0 : sal_Int32 nVal = 0;
171 [ # # ]: 0 : if ( rVal >>= nVal )
172 : : {
173 : 0 : SetValue( (sal_uInt16)nVal );
174 : 0 : return true;
175 : : }
176 : : else
177 : 0 : return false;
178 : : }
179 : :
180 : : case MID_VIEWLAYOUT_BOOKMODE:
181 : : {
182 : 0 : sal_Bool bBookMode = sal_False;
183 [ # # ]: 0 : if ( rVal >>= bBookMode )
184 : : {
185 : 0 : mbBookMode = bBookMode;
186 : 0 : return true;
187 : : }
188 : : else
189 : 0 : return false;
190 : : }
191 : :
192 : : default:
193 : : OSL_FAIL("svx::SvxViewLayoutItem::PutValue(), Wrong MemberId!");
194 : 1236 : return false;
195 : : }
196 : : }
197 : :
198 : : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|