Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_AWT_GRID_XGRIDCOLUMN_HDL
2 : #define INCLUDED_COM_SUN_STAR_AWT_GRID_XGRIDCOLUMN_HDL
3 :
4 : #include "sal/config.h"
5 :
6 : namespace com { namespace sun { namespace star { namespace awt { namespace grid { class XGridColumnListener; } } } } }
7 : #include "com/sun/star/lang/IllegalArgumentException.hdl"
8 : #include "com/sun/star/lang/XComponent.hdl"
9 : #include "com/sun/star/style/HorizontalAlignment.hdl"
10 : #include "com/sun/star/uno/RuntimeException.hdl"
11 : #include "com/sun/star/util/XCloneable.hdl"
12 : #include "com/sun/star/uno/Any.h"
13 : #include "com/sun/star/uno/Reference.h"
14 : #include "cppu/macros.hxx"
15 : #include "rtl/ustring.hxx"
16 : #include "sal/types.h"
17 :
18 : namespace com { namespace sun { namespace star { namespace uno { class Type; } } } }
19 :
20 : namespace com { namespace sun { namespace star { namespace awt { namespace grid {
21 :
22 36 : class SAL_NO_VTABLE XGridColumn : public css::lang::XComponent, public css::util::XCloneable
23 : {
24 : public:
25 :
26 : // Attributes
27 : virtual ::com::sun::star::uno::Any SAL_CALL getIdentifier() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
28 : virtual void SAL_CALL setIdentifier( const ::com::sun::star::uno::Any& _identifier ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
29 : virtual ::sal_Int32 SAL_CALL getColumnWidth() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
30 : virtual void SAL_CALL setColumnWidth( ::sal_Int32 _columnwidth ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
31 : virtual ::sal_Int32 SAL_CALL getMinWidth() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
32 : virtual void SAL_CALL setMinWidth( ::sal_Int32 _minwidth ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
33 : virtual ::sal_Int32 SAL_CALL getMaxWidth() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
34 : virtual void SAL_CALL setMaxWidth( ::sal_Int32 _maxwidth ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
35 : virtual ::sal_Bool SAL_CALL getResizeable() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
36 : virtual void SAL_CALL setResizeable( ::sal_Bool _resizeable ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
37 : virtual ::sal_Int32 SAL_CALL getFlexibility() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
38 : virtual void SAL_CALL setFlexibility( ::sal_Int32 _flexibility ) /* throw (css::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException) */ = 0;
39 : virtual css::style::HorizontalAlignment SAL_CALL getHorizontalAlign() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
40 : virtual void SAL_CALL setHorizontalAlign( css::style::HorizontalAlignment _horizontalalign ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
41 : virtual ::rtl::OUString SAL_CALL getTitle() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
42 : virtual void SAL_CALL setTitle( const ::rtl::OUString& _title ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
43 : virtual ::rtl::OUString SAL_CALL getHelpText() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
44 : virtual void SAL_CALL setHelpText( const ::rtl::OUString& _helptext ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
45 : virtual ::sal_Int32 SAL_CALL getIndex() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
46 : virtual ::sal_Int32 SAL_CALL getDataColumnIndex() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
47 : virtual void SAL_CALL setDataColumnIndex( ::sal_Int32 _datacolumnindex ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
48 :
49 : // Methods
50 : virtual void SAL_CALL addGridColumnListener( const ::com::sun::star::uno::Reference< css::awt::grid::XGridColumnListener >& Listener ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
51 : virtual void SAL_CALL removeGridColumnListener( const ::com::sun::star::uno::Reference< css::awt::grid::XGridColumnListener >& Listener ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
52 :
53 : static inline ::com::sun::star::uno::Type const & SAL_CALL static_type(void * = 0);
54 :
55 : protected:
56 36 : ~XGridColumn() throw () {} // avoid warnings about virtual members and non-virtual dtor
57 : };
58 :
59 :
60 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::awt::grid::XGridColumn const *);
61 : } } } } }
62 :
63 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(const ::com::sun::star::uno::Reference< css::awt::grid::XGridColumn > *) SAL_THROW(());
64 :
65 : #endif
|