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 "scrollbar.hxx"
21 : #include <comphelper/streamsection.hxx>
22 : #include <comphelper/basicio.hxx>
23 : #include <rtl/math.hxx>
24 :
25 :
26 40 : extern "C" void SAL_CALL createRegistryInfo_OScrollBarModel()
27 : {
28 40 : static ::frm::OMultiInstanceAutoRegistration< ::frm::OScrollBarModel > aRegisterModel;
29 40 : }
30 :
31 :
32 : namespace frm
33 : {
34 :
35 :
36 : using namespace ::com::sun::star::uno;
37 : using namespace ::com::sun::star::beans;
38 : using namespace ::com::sun::star::form;
39 : using namespace ::com::sun::star::awt;
40 : using namespace ::com::sun::star::lang;
41 : using namespace ::com::sun::star::util;
42 : using namespace ::com::sun::star::io;
43 : using namespace ::com::sun::star::form::binding;
44 :
45 :
46 : //= helper
47 :
48 :
49 0 : Any translateExternalDoubleToControlIntValue(
50 : const Any& _rExternalValue, const Reference< XPropertySet >& _rxProperties,
51 : const OUString& _rMinValueName, const OUString& _rMaxValueName )
52 : {
53 : OSL_ENSURE( _rxProperties.is(), "translateExternalDoubleToControlIntValue: no aggregate!?" );
54 :
55 0 : sal_Int32 nControlValue( 0 );
56 0 : double nExternalValue = 0;
57 0 : if ( _rExternalValue >>= nExternalValue )
58 : {
59 0 : if ( ::rtl::math::isInf( nExternalValue ) )
60 : {
61 : // set the minimum or maximum of the scroll values
62 0 : OUString sLimitPropertyName = ::rtl::math::isSignBitSet( nExternalValue )
63 0 : ? _rMinValueName : _rMaxValueName;
64 0 : if ( _rxProperties.is() )
65 0 : _rxProperties->getPropertyValue( sLimitPropertyName ) >>= nControlValue;
66 : }
67 : else
68 : {
69 0 : nControlValue = (sal_Int32)::rtl::math::round( nExternalValue );
70 : }
71 : }
72 : else
73 : {
74 0 : if ( _rxProperties.is() )
75 0 : _rxProperties->getPropertyValue( _rMinValueName ) >>= nControlValue;
76 : }
77 :
78 0 : return makeAny( nControlValue );
79 : }
80 :
81 :
82 0 : Any translateControlIntToExternalDoubleValue( const Any& _rControlIntValue )
83 : {
84 0 : Any aExternalDoubleValue;
85 0 : sal_Int32 nScrollValue = 0;
86 0 : if ( _rControlIntValue >>= nScrollValue )
87 0 : aExternalDoubleValue <<= (double)nScrollValue;
88 : else
89 : {
90 : OSL_FAIL( "translateControlIntToExternalDoubleValue: no integer scroll value!" );
91 : // aExternalDoubleValue is void here, which is okay for this purpose ...
92 : }
93 :
94 0 : return aExternalDoubleValue;
95 : }
96 :
97 12 : OScrollBarModel::OScrollBarModel( const Reference<XComponentContext>& _rxFactory )
98 : :OBoundControlModel( _rxFactory, VCL_CONTROLMODEL_SCROLLBAR, VCL_CONTROL_SCROLLBAR, true, true, false )
99 12 : ,m_nDefaultScrollValue( 0 )
100 : {
101 :
102 12 : m_nClassId = FormComponentType::SCROLLBAR;
103 12 : initValueProperty( PROPERTY_SCROLL_VALUE, PROPERTY_ID_SCROLL_VALUE );
104 12 : }
105 :
106 :
107 2 : OScrollBarModel::OScrollBarModel( const OScrollBarModel* _pOriginal, const Reference< XComponentContext >& _rxFactory )
108 2 : :OBoundControlModel( _pOriginal, _rxFactory )
109 : {
110 2 : m_nDefaultScrollValue = _pOriginal->m_nDefaultScrollValue;
111 2 : }
112 :
113 :
114 28 : OScrollBarModel::~OScrollBarModel( )
115 : {
116 28 : }
117 :
118 :
119 176 : IMPLEMENT_SERVICE_REGISTRATION_2( OScrollBarModel, OControlModel, FRM_SUN_COMPONENT_SCROLLBAR, BINDABLE_INTEGER_VALUE_RANGE )
120 : // note that we're passing OControlModel as "base class". This is because
121 : // OBoundControlModel, our real base class, claims to support the DataAwareControlModel
122 : // service, which isn't really true for us. We only derive from this class
123 : // to benefit from the functionality for binding to spreadsheet cells
124 :
125 :
126 2 : IMPLEMENT_DEFAULT_CLONING( OScrollBarModel )
127 :
128 :
129 14 : void SAL_CALL OScrollBarModel::disposing()
130 : {
131 14 : OBoundControlModel::disposing();
132 14 : }
133 :
134 :
135 16 : void OScrollBarModel::describeFixedProperties( Sequence< Property >& _rProps ) const
136 : {
137 16 : BEGIN_DESCRIBE_PROPERTIES( 3, OControlModel )
138 16 : DECL_PROP1( DEFAULT_SCROLL_VALUE, sal_Int32, BOUND );
139 16 : DECL_PROP1( TABINDEX, sal_Int16, BOUND );
140 16 : DECL_PROP2( CONTROLSOURCEPROPERTY,OUString, READONLY, TRANSIENT );
141 : END_DESCRIBE_PROPERTIES();
142 16 : }
143 :
144 :
145 2148 : void OScrollBarModel::getFastPropertyValue( Any& _rValue, sal_Int32 _nHandle ) const
146 : {
147 2148 : switch ( _nHandle )
148 : {
149 : case PROPERTY_ID_DEFAULT_SCROLL_VALUE:
150 90 : _rValue <<= m_nDefaultScrollValue;
151 90 : break;
152 :
153 : default:
154 2058 : OBoundControlModel::getFastPropertyValue( _rValue, _nHandle );
155 : }
156 2148 : }
157 :
158 :
159 145 : void OScrollBarModel::setFastPropertyValue_NoBroadcast( sal_Int32 _nHandle, const Any& _rValue ) throw ( Exception, std::exception )
160 : {
161 145 : switch ( _nHandle )
162 : {
163 : case PROPERTY_ID_DEFAULT_SCROLL_VALUE:
164 19 : OSL_VERIFY( _rValue >>= m_nDefaultScrollValue );
165 19 : resetNoBroadcast();
166 19 : break;
167 :
168 : default:
169 126 : OBoundControlModel::setFastPropertyValue_NoBroadcast( _nHandle, _rValue );
170 : }
171 145 : }
172 :
173 :
174 441 : sal_Bool OScrollBarModel::convertFastPropertyValue(
175 : Any& _rConvertedValue, Any& _rOldValue, sal_Int32 _nHandle, const Any& _rValue )
176 : throw ( IllegalArgumentException )
177 : {
178 441 : bool bModified( false );
179 441 : switch ( _nHandle )
180 : {
181 : case PROPERTY_ID_DEFAULT_SCROLL_VALUE:
182 61 : bModified = tryPropertyValue( _rConvertedValue, _rOldValue, _rValue, m_nDefaultScrollValue );
183 61 : break;
184 :
185 : default:
186 380 : bModified = OBoundControlModel::convertFastPropertyValue( _rConvertedValue, _rOldValue, _nHandle, _rValue );
187 380 : break;
188 : }
189 441 : return bModified;
190 : }
191 :
192 :
193 0 : Any OScrollBarModel::getPropertyDefaultByHandle( sal_Int32 _nHandle ) const
194 : {
195 0 : Any aReturn;
196 :
197 0 : switch ( _nHandle )
198 : {
199 : case PROPERTY_ID_DEFAULT_SCROLL_VALUE:
200 0 : aReturn <<= (sal_Int32)0;
201 0 : break;
202 :
203 : default:
204 0 : aReturn = OBoundControlModel::getPropertyDefaultByHandle( _nHandle );
205 0 : break;
206 : }
207 :
208 0 : return aReturn;
209 : }
210 :
211 :
212 0 : Any OScrollBarModel::translateDbColumnToControlValue( )
213 : {
214 : OSL_FAIL( "OScrollBarModel::commitControlValueToDbColumn: never to be called (we're not bound)!" );
215 0 : return Any();
216 : }
217 :
218 :
219 0 : bool OScrollBarModel::commitControlValueToDbColumn( bool /*_bPostReset*/ )
220 : {
221 : OSL_FAIL( "OScrollBarModel::commitControlValueToDbColumn: never to be called (we're not bound)!" );
222 0 : return true;
223 : }
224 :
225 :
226 23 : Any OScrollBarModel::getDefaultForReset() const
227 : {
228 23 : return makeAny( (sal_Int32)m_nDefaultScrollValue );
229 : }
230 :
231 :
232 2 : OUString SAL_CALL OScrollBarModel::getServiceName() throw( RuntimeException, std::exception )
233 : {
234 2 : return OUString(FRM_SUN_COMPONENT_SCROLLBAR);
235 : }
236 :
237 :
238 2 : void SAL_CALL OScrollBarModel::write( const Reference< XObjectOutputStream >& _rxOutStream )
239 : throw( IOException, RuntimeException, std::exception )
240 : {
241 2 : OBoundControlModel::write( _rxOutStream );
242 2 : ::osl::MutexGuard aGuard( m_aMutex );
243 :
244 4 : OStreamSection aSection( _rxOutStream );
245 :
246 : // version
247 2 : _rxOutStream->writeShort( 0x0001 );
248 :
249 : // properties
250 2 : _rxOutStream << m_nDefaultScrollValue;
251 4 : writeHelpTextCompatibly( _rxOutStream );
252 2 : }
253 :
254 :
255 2 : void SAL_CALL OScrollBarModel::read( const Reference< XObjectInputStream>& _rxInStream ) throw( IOException, RuntimeException, std::exception )
256 : {
257 2 : OBoundControlModel::read( _rxInStream );
258 2 : ::osl::MutexGuard aGuard( m_aMutex );
259 :
260 : // version
261 : {
262 2 : OStreamSection aSection( _rxInStream );
263 :
264 2 : sal_uInt16 nVersion = _rxInStream->readShort();
265 2 : if ( nVersion == 0x0001 )
266 : {
267 2 : _rxInStream >> m_nDefaultScrollValue;
268 2 : readHelpTextCompatibly( _rxInStream );
269 : }
270 : else
271 0 : defaultCommonProperties();
272 :
273 : // here, everything in the stream section which is left will be skipped
274 2 : }
275 2 : }
276 :
277 :
278 0 : Any OScrollBarModel::translateExternalValueToControlValue( const Any& _rExternalValue ) const
279 : {
280 : return translateExternalDoubleToControlIntValue( _rExternalValue, m_xAggregateSet,
281 : OUString( "ScrollValueMin" ),
282 0 : OUString( "ScrollValueMax" ) );
283 : }
284 :
285 :
286 0 : Any OScrollBarModel::translateControlValueToExternalValue( ) const
287 : {
288 : // by definition, the base class simply obtains the property value
289 0 : return translateControlIntToExternalDoubleValue( OBoundControlModel::translateControlValueToExternalValue() );
290 : }
291 :
292 :
293 0 : Sequence< Type > OScrollBarModel::getSupportedBindingTypes()
294 : {
295 0 : return Sequence< Type >( & cppu::UnoType<double>::get(), 1 );
296 : }
297 :
298 :
299 : } // namespace frm
300 :
301 :
302 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|