Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_AWT_XSPINVALUE_HDL
2 : #define INCLUDED_COM_SUN_STAR_AWT_XSPINVALUE_HDL
3 :
4 : #include "sal/config.h"
5 :
6 : namespace com { namespace sun { namespace star { namespace awt { class XAdjustmentListener; } } } }
7 : #include "com/sun/star/lang/NoSupportException.hdl"
8 : #include "com/sun/star/uno/RuntimeException.hdl"
9 : #include "com/sun/star/uno/XInterface.hdl"
10 : #include "com/sun/star/uno/Reference.h"
11 : #include "cppu/macros.hxx"
12 : #include "sal/types.h"
13 :
14 : namespace com { namespace sun { namespace star { namespace uno { class Type; } } } }
15 :
16 : namespace com { namespace sun { namespace star { namespace awt {
17 :
18 2 : class SAL_NO_VTABLE XSpinValue : public css::uno::XInterface
19 : {
20 : public:
21 :
22 : // Methods
23 : virtual void SAL_CALL addAdjustmentListener( const ::com::sun::star::uno::Reference< css::awt::XAdjustmentListener >& listener ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
24 : virtual void SAL_CALL removeAdjustmentListener( const ::com::sun::star::uno::Reference< css::awt::XAdjustmentListener >& listener ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
25 : virtual void SAL_CALL setValue( ::sal_Int32 value ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
26 : virtual void SAL_CALL setValues( ::sal_Int32 minValue, ::sal_Int32 maxValue, ::sal_Int32 currentValue ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
27 : virtual ::sal_Int32 SAL_CALL getValue() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
28 : virtual void SAL_CALL setMinimum( ::sal_Int32 minValue ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
29 : virtual void SAL_CALL setMaximum( ::sal_Int32 maxValue ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
30 : virtual ::sal_Int32 SAL_CALL getMinimum() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
31 : virtual ::sal_Int32 SAL_CALL getMaximum() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
32 : virtual void SAL_CALL setSpinIncrement( ::sal_Int32 spinIncrement ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
33 : virtual ::sal_Int32 SAL_CALL getSpinIncrement() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
34 : virtual void SAL_CALL setOrientation( ::sal_Int32 orientation ) /* throw (css::lang::NoSupportException, ::com::sun::star::uno::RuntimeException) */ = 0;
35 : virtual ::sal_Int32 SAL_CALL getOrientation() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
36 :
37 : static inline ::com::sun::star::uno::Type const & SAL_CALL static_type(void * = 0);
38 :
39 : protected:
40 2 : ~XSpinValue() throw () {} // avoid warnings about virtual members and non-virtual dtor
41 : };
42 :
43 :
44 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::awt::XSpinValue const *);
45 : } } } }
46 :
47 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(const ::com::sun::star::uno::Reference< css::awt::XSpinValue > *) SAL_THROW(());
48 :
49 : #endif
|