Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_AWT_GRID_XGRIDCOLUMNMODEL_HDL
2 : #define INCLUDED_COM_SUN_STAR_AWT_GRID_XGRIDCOLUMNMODEL_HDL
3 :
4 : #include "sal/config.h"
5 :
6 : namespace com { namespace sun { namespace star { namespace awt { namespace grid { class XGridColumn; } } } } }
7 : #include "com/sun/star/container/XContainer.hdl"
8 : #include "com/sun/star/lang/IllegalArgumentException.hdl"
9 : #include "com/sun/star/lang/IndexOutOfBoundsException.hdl"
10 : #include "com/sun/star/lang/XComponent.hdl"
11 : #include "com/sun/star/uno/RuntimeException.hdl"
12 : #include "com/sun/star/util/XCloneable.hdl"
13 : #include "com/sun/star/uno/Reference.h"
14 : #include "com/sun/star/uno/Sequence.h"
15 : #include "cppu/macros.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 10 : class SAL_NO_VTABLE XGridColumnModel : public css::lang::XComponent, public css::container::XContainer, public css::util::XCloneable
23 : {
24 : public:
25 :
26 : // Methods
27 : virtual ::sal_Int32 SAL_CALL getColumnCount() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
28 : virtual ::com::sun::star::uno::Reference< css::awt::grid::XGridColumn > SAL_CALL createColumn() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
29 : virtual ::sal_Int32 SAL_CALL addColumn( const ::com::sun::star::uno::Reference< css::awt::grid::XGridColumn >& column ) /* throw (css::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException) */ = 0;
30 : virtual void SAL_CALL removeColumn( ::sal_Int32 ColumnIndex ) /* throw (css::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException) */ = 0;
31 : virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Reference< css::awt::grid::XGridColumn > > SAL_CALL getColumns() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
32 : virtual ::com::sun::star::uno::Reference< css::awt::grid::XGridColumn > SAL_CALL getColumn( ::sal_Int32 index ) /* throw (css::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException) */ = 0;
33 : virtual void SAL_CALL setDefaultColumns( ::sal_Int32 elements ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
34 :
35 : static inline ::com::sun::star::uno::Type const & SAL_CALL static_type(void * = 0);
36 :
37 : protected:
38 10 : ~XGridColumnModel() throw () {} // avoid warnings about virtual members and non-virtual dtor
39 : };
40 :
41 :
42 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::awt::grid::XGridColumnModel const *);
43 : } } } } }
44 :
45 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(const ::com::sun::star::uno::Reference< css::awt::grid::XGridColumnModel > *) SAL_THROW(());
46 :
47 : #endif
|