1*cdf0e10cSrcweir /*************************************************************************
2*cdf0e10cSrcweir  *
3*cdf0e10cSrcweir  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*cdf0e10cSrcweir  *
5*cdf0e10cSrcweir  * Copyright 2000, 2010 Oracle and/or its affiliates.
6*cdf0e10cSrcweir  *
7*cdf0e10cSrcweir  * OpenOffice.org - a multi-platform office productivity suite
8*cdf0e10cSrcweir  *
9*cdf0e10cSrcweir  * This file is part of OpenOffice.org.
10*cdf0e10cSrcweir  *
11*cdf0e10cSrcweir  * OpenOffice.org is free software: you can redistribute it and/or modify
12*cdf0e10cSrcweir  * it under the terms of the GNU Lesser General Public License version 3
13*cdf0e10cSrcweir  * only, as published by the Free Software Foundation.
14*cdf0e10cSrcweir  *
15*cdf0e10cSrcweir  * OpenOffice.org is distributed in the hope that it will be useful,
16*cdf0e10cSrcweir  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*cdf0e10cSrcweir  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*cdf0e10cSrcweir  * GNU Lesser General Public License version 3 for more details
19*cdf0e10cSrcweir  * (a copy is included in the LICENSE file that accompanied this code).
20*cdf0e10cSrcweir  *
21*cdf0e10cSrcweir  * You should have received a copy of the GNU Lesser General Public License
22*cdf0e10cSrcweir  * version 3 along with OpenOffice.org.  If not, see
23*cdf0e10cSrcweir  * <http://www.openoffice.org/license.html>
24*cdf0e10cSrcweir  * for a copy of the LGPLv3 License.
25*cdf0e10cSrcweir  *
26*cdf0e10cSrcweir  ************************************************************************/
27*cdf0e10cSrcweir 
28*cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
29*cdf0e10cSrcweir #include "precompiled_toolkit.hxx"
30*cdf0e10cSrcweir #include "toolkit/controls/tkspinbutton.hxx"
31*cdf0e10cSrcweir #include "toolkit/helper/property.hxx"
32*cdf0e10cSrcweir #include "toolkit/helper/unopropertyarrayhelper.hxx"
33*cdf0e10cSrcweir #include <com/sun/star/awt/ScrollBarOrientation.hpp>
34*cdf0e10cSrcweir 
35*cdf0e10cSrcweir 
36*cdf0e10cSrcweir #include <cppuhelper/typeprovider.hxx>
37*cdf0e10cSrcweir #include <tools/debug.hxx>
38*cdf0e10cSrcweir 
39*cdf0e10cSrcweir //........................................................................
40*cdf0e10cSrcweir namespace toolkit
41*cdf0e10cSrcweir {
42*cdf0e10cSrcweir //........................................................................
43*cdf0e10cSrcweir 
44*cdf0e10cSrcweir     using namespace ::com::sun::star::uno;
45*cdf0e10cSrcweir     using namespace ::com::sun::star::awt;
46*cdf0e10cSrcweir     using namespace ::com::sun::star::lang;
47*cdf0e10cSrcweir     using namespace ::com::sun::star::beans;
48*cdf0e10cSrcweir 
49*cdf0e10cSrcweir     //====================================================================
50*cdf0e10cSrcweir 	//= UnoSpinButtonModel
51*cdf0e10cSrcweir 	//====================================================================
52*cdf0e10cSrcweir 	//--------------------------------------------------------------------
53*cdf0e10cSrcweir     UnoSpinButtonModel::UnoSpinButtonModel( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& i_factory )
54*cdf0e10cSrcweir         :UnoControlModel( i_factory )
55*cdf0e10cSrcweir     {
56*cdf0e10cSrcweir 	    ImplRegisterProperty( BASEPROPERTY_BACKGROUNDCOLOR );
57*cdf0e10cSrcweir         ImplRegisterProperty( BASEPROPERTY_BORDER );
58*cdf0e10cSrcweir 		ImplRegisterProperty( BASEPROPERTY_BORDERCOLOR );
59*cdf0e10cSrcweir         ImplRegisterProperty( BASEPROPERTY_DEFAULTCONTROL );
60*cdf0e10cSrcweir 	    ImplRegisterProperty( BASEPROPERTY_ENABLED );
61*cdf0e10cSrcweir 	    ImplRegisterProperty( BASEPROPERTY_ENABLEVISIBLE );
62*cdf0e10cSrcweir         ImplRegisterProperty( BASEPROPERTY_HELPTEXT );
63*cdf0e10cSrcweir 	    ImplRegisterProperty( BASEPROPERTY_HELPURL );
64*cdf0e10cSrcweir         ImplRegisterProperty( BASEPROPERTY_ORIENTATION );
65*cdf0e10cSrcweir         ImplRegisterProperty( BASEPROPERTY_PRINTABLE );
66*cdf0e10cSrcweir         ImplRegisterProperty( BASEPROPERTY_REPEAT );
67*cdf0e10cSrcweir         ImplRegisterProperty( BASEPROPERTY_REPEAT_DELAY );
68*cdf0e10cSrcweir         ImplRegisterProperty( BASEPROPERTY_SYMBOL_COLOR );
69*cdf0e10cSrcweir         ImplRegisterProperty( BASEPROPERTY_SPINVALUE );
70*cdf0e10cSrcweir         ImplRegisterProperty( BASEPROPERTY_SPINVALUE_MIN );
71*cdf0e10cSrcweir         ImplRegisterProperty( BASEPROPERTY_SPINVALUE_MAX );
72*cdf0e10cSrcweir         ImplRegisterProperty( BASEPROPERTY_SPININCREMENT );
73*cdf0e10cSrcweir         ImplRegisterProperty( BASEPROPERTY_TABSTOP );
74*cdf0e10cSrcweir         ImplRegisterProperty( BASEPROPERTY_WRITING_MODE );
75*cdf0e10cSrcweir         ImplRegisterProperty( BASEPROPERTY_CONTEXT_WRITING_MODE );
76*cdf0e10cSrcweir     }
77*cdf0e10cSrcweir 
78*cdf0e10cSrcweir 	//--------------------------------------------------------------------
79*cdf0e10cSrcweir     ::rtl::OUString UnoSpinButtonModel::getServiceName( ) throw (RuntimeException)
80*cdf0e10cSrcweir     {
81*cdf0e10cSrcweir 	    return ::rtl::OUString::createFromAscii( szServiceName_UnoSpinButtonModel );
82*cdf0e10cSrcweir     }
83*cdf0e10cSrcweir 
84*cdf0e10cSrcweir 	//--------------------------------------------------------------------
85*cdf0e10cSrcweir     Any UnoSpinButtonModel::ImplGetDefaultValue( sal_uInt16 nPropId ) const
86*cdf0e10cSrcweir     {
87*cdf0e10cSrcweir         switch ( nPropId )
88*cdf0e10cSrcweir         {
89*cdf0e10cSrcweir         case BASEPROPERTY_DEFAULTCONTROL:
90*cdf0e10cSrcweir             return makeAny( ::rtl::OUString::createFromAscii( szServiceName_UnoSpinButtonControl ) );
91*cdf0e10cSrcweir 
92*cdf0e10cSrcweir         case BASEPROPERTY_BORDER:
93*cdf0e10cSrcweir             return makeAny( (sal_Int16) 0 );
94*cdf0e10cSrcweir 
95*cdf0e10cSrcweir         case BASEPROPERTY_REPEAT:
96*cdf0e10cSrcweir             return makeAny( (sal_Bool)sal_True );
97*cdf0e10cSrcweir 
98*cdf0e10cSrcweir         default:
99*cdf0e10cSrcweir     	    return UnoControlModel::ImplGetDefaultValue( nPropId );
100*cdf0e10cSrcweir         }
101*cdf0e10cSrcweir     }
102*cdf0e10cSrcweir 
103*cdf0e10cSrcweir 	//--------------------------------------------------------------------
104*cdf0e10cSrcweir     ::cppu::IPropertyArrayHelper& UnoSpinButtonModel::getInfoHelper()
105*cdf0e10cSrcweir     {
106*cdf0e10cSrcweir 	    static UnoPropertyArrayHelper* pHelper = NULL;
107*cdf0e10cSrcweir 	    if ( !pHelper )
108*cdf0e10cSrcweir 	    {
109*cdf0e10cSrcweir 		    Sequence<sal_Int32>	aIDs = ImplGetPropertyIds();
110*cdf0e10cSrcweir 		    pHelper = new UnoPropertyArrayHelper( aIDs );
111*cdf0e10cSrcweir 	    }
112*cdf0e10cSrcweir 	    return *pHelper;
113*cdf0e10cSrcweir     }
114*cdf0e10cSrcweir 
115*cdf0e10cSrcweir 	//--------------------------------------------------------------------
116*cdf0e10cSrcweir     Reference< XPropertySetInfo > UnoSpinButtonModel::getPropertySetInfo(  ) throw(RuntimeException)
117*cdf0e10cSrcweir     {
118*cdf0e10cSrcweir 	    static Reference< XPropertySetInfo > xInfo( createPropertySetInfo( getInfoHelper() ) );
119*cdf0e10cSrcweir 	    return xInfo;
120*cdf0e10cSrcweir     }
121*cdf0e10cSrcweir 
122*cdf0e10cSrcweir 	//--------------------------------------------------------------------
123*cdf0e10cSrcweir     ::rtl::OUString SAL_CALL UnoSpinButtonModel::getImplementationName(  ) throw(RuntimeException)
124*cdf0e10cSrcweir     {
125*cdf0e10cSrcweir         return ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.comp.toolkit.UnoSpinButtonModel" ) );
126*cdf0e10cSrcweir     }
127*cdf0e10cSrcweir 
128*cdf0e10cSrcweir 	//--------------------------------------------------------------------
129*cdf0e10cSrcweir     Sequence< ::rtl::OUString > SAL_CALL UnoSpinButtonModel::getSupportedServiceNames() throw(RuntimeException)
130*cdf0e10cSrcweir     {
131*cdf0e10cSrcweir         Sequence< ::rtl::OUString > aServices( UnoControlModel::getSupportedServiceNames() );
132*cdf0e10cSrcweir         aServices.realloc( aServices.getLength() + 1 );
133*cdf0e10cSrcweir         aServices[ aServices.getLength() - 1 ] = ::rtl::OUString::createFromAscii( szServiceName_UnoSpinButtonModel );
134*cdf0e10cSrcweir         return aServices;
135*cdf0e10cSrcweir     }
136*cdf0e10cSrcweir 
137*cdf0e10cSrcweir     //====================================================================
138*cdf0e10cSrcweir 	//= UnoSpinButtonControl
139*cdf0e10cSrcweir 	//====================================================================
140*cdf0e10cSrcweir 	//--------------------------------------------------------------------
141*cdf0e10cSrcweir     UnoSpinButtonControl::UnoSpinButtonControl( const Reference< XMultiServiceFactory >& i_factory )
142*cdf0e10cSrcweir         :UnoControlBase( i_factory )
143*cdf0e10cSrcweir 	    ,maAdjustmentListeners( *this )
144*cdf0e10cSrcweir     {
145*cdf0e10cSrcweir     }
146*cdf0e10cSrcweir 
147*cdf0e10cSrcweir 	//--------------------------------------------------------------------
148*cdf0e10cSrcweir     ::rtl::OUString UnoSpinButtonControl::GetComponentServiceName()
149*cdf0e10cSrcweir     {
150*cdf0e10cSrcweir 	    return ::rtl::OUString::createFromAscii( "SpinButton" );
151*cdf0e10cSrcweir     }
152*cdf0e10cSrcweir 
153*cdf0e10cSrcweir 	//--------------------------------------------------------------------
154*cdf0e10cSrcweir     Any UnoSpinButtonControl::queryAggregation( const Type & rType ) throw(RuntimeException)
155*cdf0e10cSrcweir     {
156*cdf0e10cSrcweir         Any aRet = UnoControlBase::queryAggregation( rType );
157*cdf0e10cSrcweir         if ( !aRet.hasValue() )
158*cdf0e10cSrcweir             aRet = UnoSpinButtonControl_Base::queryInterface( rType );
159*cdf0e10cSrcweir         return aRet;
160*cdf0e10cSrcweir     }
161*cdf0e10cSrcweir 
162*cdf0e10cSrcweir 	//--------------------------------------------------------------------
163*cdf0e10cSrcweir     IMPLEMENT_FORWARD_XTYPEPROVIDER2( UnoSpinButtonControl, UnoControlBase, UnoSpinButtonControl_Base )
164*cdf0e10cSrcweir 
165*cdf0e10cSrcweir 	//--------------------------------------------------------------------
166*cdf0e10cSrcweir     void UnoSpinButtonControl::dispose() throw(RuntimeException)
167*cdf0e10cSrcweir     {
168*cdf0e10cSrcweir         ::osl::ClearableMutexGuard aGuard( GetMutex() );
169*cdf0e10cSrcweir         if ( maAdjustmentListeners.getLength() )
170*cdf0e10cSrcweir         {
171*cdf0e10cSrcweir             Reference< XSpinValue > xSpinnable( getPeer(), UNO_QUERY );
172*cdf0e10cSrcweir             if ( xSpinnable.is() )
173*cdf0e10cSrcweir                 xSpinnable->removeAdjustmentListener( this );
174*cdf0e10cSrcweir 
175*cdf0e10cSrcweir             EventObject aDisposeEvent;
176*cdf0e10cSrcweir 	        aDisposeEvent.Source = *this;
177*cdf0e10cSrcweir 
178*cdf0e10cSrcweir             aGuard.clear();
179*cdf0e10cSrcweir 	        maAdjustmentListeners.disposeAndClear( aDisposeEvent );
180*cdf0e10cSrcweir         }
181*cdf0e10cSrcweir 
182*cdf0e10cSrcweir         UnoControl::dispose();
183*cdf0e10cSrcweir     }
184*cdf0e10cSrcweir 
185*cdf0e10cSrcweir 	//--------------------------------------------------------------------
186*cdf0e10cSrcweir     ::rtl::OUString SAL_CALL UnoSpinButtonControl::getImplementationName(  ) throw(RuntimeException)
187*cdf0e10cSrcweir     {
188*cdf0e10cSrcweir         return ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.comp.toolkit.UnoSpinButtonControl" ) );
189*cdf0e10cSrcweir     }
190*cdf0e10cSrcweir 
191*cdf0e10cSrcweir 	//--------------------------------------------------------------------
192*cdf0e10cSrcweir     Sequence< ::rtl::OUString > SAL_CALL UnoSpinButtonControl::getSupportedServiceNames() throw(RuntimeException)
193*cdf0e10cSrcweir     {
194*cdf0e10cSrcweir         Sequence< ::rtl::OUString > aServices( UnoControlBase::getSupportedServiceNames() );
195*cdf0e10cSrcweir         aServices.realloc( aServices.getLength() + 1 );
196*cdf0e10cSrcweir         aServices[ aServices.getLength() - 1 ] = ::rtl::OUString::createFromAscii( szServiceName_UnoSpinButtonControl );
197*cdf0e10cSrcweir         return aServices;
198*cdf0e10cSrcweir     }
199*cdf0e10cSrcweir 
200*cdf0e10cSrcweir     //--------------------------------------------------------------------
201*cdf0e10cSrcweir     void UnoSpinButtonControl::createPeer( const Reference< XToolkit > & rxToolkit, const Reference< XWindowPeer >  & rParentPeer ) throw(RuntimeException)
202*cdf0e10cSrcweir     {
203*cdf0e10cSrcweir 	    UnoControl::createPeer( rxToolkit, rParentPeer );
204*cdf0e10cSrcweir 
205*cdf0e10cSrcweir         Reference < XSpinValue > xSpinnable( getPeer(), UNO_QUERY );
206*cdf0e10cSrcweir         if ( xSpinnable.is() )
207*cdf0e10cSrcweir 	        xSpinnable->addAdjustmentListener( this );
208*cdf0e10cSrcweir     }
209*cdf0e10cSrcweir 
210*cdf0e10cSrcweir 	//--------------------------------------------------------------------
211*cdf0e10cSrcweir     void UnoSpinButtonControl::adjustmentValueChanged( const AdjustmentEvent& rEvent ) throw(RuntimeException)
212*cdf0e10cSrcweir     {
213*cdf0e10cSrcweir 	    switch ( rEvent.Type )
214*cdf0e10cSrcweir 	    {
215*cdf0e10cSrcweir 		    case AdjustmentType_ADJUST_LINE:
216*cdf0e10cSrcweir 		    case AdjustmentType_ADJUST_PAGE:
217*cdf0e10cSrcweir 		    case AdjustmentType_ADJUST_ABS:
218*cdf0e10cSrcweir 				ImplSetPropertyValue( GetPropertyName( BASEPROPERTY_SPINVALUE ), makeAny( rEvent.Value ), sal_False );
219*cdf0e10cSrcweir     		    break;
220*cdf0e10cSrcweir 		    default:
221*cdf0e10cSrcweir                 DBG_ERROR( "UnoSpinButtonControl::adjustmentValueChanged - unknown Type" );
222*cdf0e10cSrcweir 	    }
223*cdf0e10cSrcweir 
224*cdf0e10cSrcweir 	    if ( maAdjustmentListeners.getLength() )
225*cdf0e10cSrcweir         {
226*cdf0e10cSrcweir             AdjustmentEvent aEvent( rEvent );
227*cdf0e10cSrcweir             aEvent.Source = *this;
228*cdf0e10cSrcweir 		    maAdjustmentListeners.adjustmentValueChanged( aEvent );
229*cdf0e10cSrcweir         }
230*cdf0e10cSrcweir     }
231*cdf0e10cSrcweir 
232*cdf0e10cSrcweir 	//--------------------------------------------------------------------
233*cdf0e10cSrcweir     void UnoSpinButtonControl::addAdjustmentListener( const Reference< XAdjustmentListener > & listener ) throw(RuntimeException)
234*cdf0e10cSrcweir     {
235*cdf0e10cSrcweir         ::osl::MutexGuard aGuard( GetMutex() );
236*cdf0e10cSrcweir 	    maAdjustmentListeners.addInterface( listener );
237*cdf0e10cSrcweir     }
238*cdf0e10cSrcweir 
239*cdf0e10cSrcweir 	//--------------------------------------------------------------------
240*cdf0e10cSrcweir     void UnoSpinButtonControl::removeAdjustmentListener( const Reference< XAdjustmentListener > & listener ) throw(RuntimeException)
241*cdf0e10cSrcweir     {
242*cdf0e10cSrcweir         ::osl::MutexGuard aGuard( GetMutex() );
243*cdf0e10cSrcweir 	    maAdjustmentListeners.removeInterface( listener );
244*cdf0e10cSrcweir     }
245*cdf0e10cSrcweir 
246*cdf0e10cSrcweir     //--------------------------------------------------------------------
247*cdf0e10cSrcweir     void SAL_CALL UnoSpinButtonControl::setValue( sal_Int32 value ) throw (RuntimeException)
248*cdf0e10cSrcweir     {
249*cdf0e10cSrcweir 	    ImplSetPropertyValue( GetPropertyName( BASEPROPERTY_SPINVALUE ), makeAny( value ), sal_True );
250*cdf0e10cSrcweir     }
251*cdf0e10cSrcweir 
252*cdf0e10cSrcweir     //--------------------------------------------------------------------
253*cdf0e10cSrcweir     void SAL_CALL UnoSpinButtonControl::setValues( sal_Int32 minValue, sal_Int32 maxValue, sal_Int32 currentValue ) throw (RuntimeException)
254*cdf0e10cSrcweir     {
255*cdf0e10cSrcweir 	    ImplSetPropertyValue( GetPropertyName( BASEPROPERTY_SPINVALUE_MIN ), makeAny( minValue ), sal_True );
256*cdf0e10cSrcweir 	    ImplSetPropertyValue( GetPropertyName( BASEPROPERTY_SPINVALUE_MAX ), makeAny( maxValue ), sal_True );
257*cdf0e10cSrcweir 	    ImplSetPropertyValue( GetPropertyName( BASEPROPERTY_SPINVALUE ), makeAny( currentValue ), sal_True );
258*cdf0e10cSrcweir     }
259*cdf0e10cSrcweir 
260*cdf0e10cSrcweir     //--------------------------------------------------------------------
261*cdf0e10cSrcweir     sal_Int32 SAL_CALL UnoSpinButtonControl::getValue(  ) throw (RuntimeException)
262*cdf0e10cSrcweir     {
263*cdf0e10cSrcweir         ::osl::MutexGuard aGuard( GetMutex() );
264*cdf0e10cSrcweir         sal_Int32 nValue = 0;
265*cdf0e10cSrcweir 
266*cdf0e10cSrcweir         Reference< XSpinValue > xSpinnable( getPeer(), UNO_QUERY );
267*cdf0e10cSrcweir 	    if ( xSpinnable.is() )
268*cdf0e10cSrcweir 		    nValue = xSpinnable->getValue();
269*cdf0e10cSrcweir 
270*cdf0e10cSrcweir         return nValue;
271*cdf0e10cSrcweir     }
272*cdf0e10cSrcweir 
273*cdf0e10cSrcweir     //--------------------------------------------------------------------
274*cdf0e10cSrcweir     void SAL_CALL UnoSpinButtonControl::setMinimum( sal_Int32 minValue ) throw (RuntimeException)
275*cdf0e10cSrcweir     {
276*cdf0e10cSrcweir 	    ImplSetPropertyValue( GetPropertyName( BASEPROPERTY_SPINVALUE_MIN ), makeAny( minValue ), sal_True );
277*cdf0e10cSrcweir     }
278*cdf0e10cSrcweir 
279*cdf0e10cSrcweir     //--------------------------------------------------------------------
280*cdf0e10cSrcweir     void SAL_CALL UnoSpinButtonControl::setMaximum( sal_Int32 maxValue ) throw (RuntimeException)
281*cdf0e10cSrcweir     {
282*cdf0e10cSrcweir 	    ImplSetPropertyValue( GetPropertyName( BASEPROPERTY_SPINVALUE_MAX ), makeAny( maxValue ), sal_True );
283*cdf0e10cSrcweir     }
284*cdf0e10cSrcweir 
285*cdf0e10cSrcweir     //--------------------------------------------------------------------
286*cdf0e10cSrcweir     sal_Int32 SAL_CALL UnoSpinButtonControl::getMinimum(  ) throw (RuntimeException)
287*cdf0e10cSrcweir     {
288*cdf0e10cSrcweir         ::osl::MutexGuard aGuard( GetMutex() );
289*cdf0e10cSrcweir         sal_Int32 nMin = 0;
290*cdf0e10cSrcweir 
291*cdf0e10cSrcweir         Reference< XSpinValue > xSpinnable( getPeer(), UNO_QUERY );
292*cdf0e10cSrcweir 	    if ( xSpinnable.is() )
293*cdf0e10cSrcweir 		    nMin = xSpinnable->getMinimum();
294*cdf0e10cSrcweir 
295*cdf0e10cSrcweir         return nMin;
296*cdf0e10cSrcweir     }
297*cdf0e10cSrcweir 
298*cdf0e10cSrcweir     //--------------------------------------------------------------------
299*cdf0e10cSrcweir     sal_Int32 SAL_CALL UnoSpinButtonControl::getMaximum(  ) throw (RuntimeException)
300*cdf0e10cSrcweir     {
301*cdf0e10cSrcweir         ::osl::MutexGuard aGuard( GetMutex() );
302*cdf0e10cSrcweir         sal_Int32 nMax = 0;
303*cdf0e10cSrcweir 
304*cdf0e10cSrcweir         Reference< XSpinValue > xSpinnable( getPeer(), UNO_QUERY );
305*cdf0e10cSrcweir 	    if ( xSpinnable.is() )
306*cdf0e10cSrcweir 		    nMax = xSpinnable->getMaximum();
307*cdf0e10cSrcweir 
308*cdf0e10cSrcweir         return nMax;
309*cdf0e10cSrcweir     }
310*cdf0e10cSrcweir 
311*cdf0e10cSrcweir     //--------------------------------------------------------------------
312*cdf0e10cSrcweir     void SAL_CALL UnoSpinButtonControl::setSpinIncrement( sal_Int32 spinIncrement ) throw (RuntimeException)
313*cdf0e10cSrcweir     {
314*cdf0e10cSrcweir 	    ImplSetPropertyValue( GetPropertyName( BASEPROPERTY_SPININCREMENT ), makeAny( spinIncrement ), sal_True );
315*cdf0e10cSrcweir     }
316*cdf0e10cSrcweir 
317*cdf0e10cSrcweir     //--------------------------------------------------------------------
318*cdf0e10cSrcweir     sal_Int32 SAL_CALL UnoSpinButtonControl::getSpinIncrement(  ) throw (RuntimeException)
319*cdf0e10cSrcweir     {
320*cdf0e10cSrcweir         ::osl::MutexGuard aGuard( GetMutex() );
321*cdf0e10cSrcweir         sal_Int32 nIncrement = 0;
322*cdf0e10cSrcweir 
323*cdf0e10cSrcweir         Reference< XSpinValue > xSpinnable( getPeer(), UNO_QUERY );
324*cdf0e10cSrcweir 	    if ( xSpinnable.is() )
325*cdf0e10cSrcweir 		    nIncrement = xSpinnable->getSpinIncrement();
326*cdf0e10cSrcweir 
327*cdf0e10cSrcweir         return nIncrement;
328*cdf0e10cSrcweir     }
329*cdf0e10cSrcweir 
330*cdf0e10cSrcweir     //--------------------------------------------------------------------
331*cdf0e10cSrcweir     void SAL_CALL UnoSpinButtonControl::setOrientation( sal_Int32 orientation ) throw (NoSupportException, RuntimeException)
332*cdf0e10cSrcweir     {
333*cdf0e10cSrcweir 	    ImplSetPropertyValue( GetPropertyName( BASEPROPERTY_ORIENTATION ), makeAny( orientation ), sal_True );
334*cdf0e10cSrcweir     }
335*cdf0e10cSrcweir 
336*cdf0e10cSrcweir     //--------------------------------------------------------------------
337*cdf0e10cSrcweir     sal_Int32 SAL_CALL UnoSpinButtonControl::getOrientation(  ) throw (RuntimeException)
338*cdf0e10cSrcweir     {
339*cdf0e10cSrcweir         ::osl::MutexGuard aGuard( GetMutex() );
340*cdf0e10cSrcweir         sal_Int32 nOrientation = ScrollBarOrientation::HORIZONTAL;
341*cdf0e10cSrcweir 
342*cdf0e10cSrcweir         Reference< XSpinValue > xSpinnable( getPeer(), UNO_QUERY );
343*cdf0e10cSrcweir 	    if ( xSpinnable.is() )
344*cdf0e10cSrcweir 		    nOrientation = xSpinnable->getOrientation();
345*cdf0e10cSrcweir 
346*cdf0e10cSrcweir         return nOrientation;
347*cdf0e10cSrcweir     }
348*cdf0e10cSrcweir 
349*cdf0e10cSrcweir //........................................................................
350*cdf0e10cSrcweir }  // namespace toolkit
351*cdf0e10cSrcweir //........................................................................
352*cdf0e10cSrcweir 
353