Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_AWT_XITEMLIST_HDL
2 : #define INCLUDED_COM_SUN_STAR_AWT_XITEMLIST_HDL
3 :
4 : #include "sal/config.h"
5 :
6 : namespace com { namespace sun { namespace star { namespace awt { class XItemListListener; } } } }
7 : #include "com/sun/star/beans/Pair.hdl"
8 : #include "com/sun/star/lang/IndexOutOfBoundsException.hdl"
9 : #include "com/sun/star/uno/RuntimeException.hdl"
10 : #include "com/sun/star/uno/XInterface.hdl"
11 : #include "com/sun/star/uno/Any.h"
12 : #include "com/sun/star/uno/Reference.h"
13 : #include "com/sun/star/uno/Sequence.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 {
21 :
22 36 : class SAL_NO_VTABLE XItemList : public css::uno::XInterface
23 : {
24 : public:
25 :
26 : // Attributes
27 : virtual ::sal_Int32 SAL_CALL getItemCount() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
28 :
29 : // Methods
30 : virtual void SAL_CALL insertItem( ::sal_Int32 Position, const ::rtl::OUString& ItemText, const ::rtl::OUString& ItemImageURL ) /* throw (css::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException) */ = 0;
31 : virtual void SAL_CALL insertItemText( ::sal_Int32 Position, const ::rtl::OUString& ItemText ) /* throw (css::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException) */ = 0;
32 : virtual void SAL_CALL insertItemImage( ::sal_Int32 Position, const ::rtl::OUString& ItemImageURL ) /* throw (css::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException) */ = 0;
33 : virtual void SAL_CALL removeItem( ::sal_Int32 Position ) /* throw (css::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException) */ = 0;
34 : virtual void SAL_CALL removeAllItems() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
35 : virtual void SAL_CALL setItemText( ::sal_Int32 Position, const ::rtl::OUString& ItemText ) /* throw (css::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException) */ = 0;
36 : virtual void SAL_CALL setItemImage( ::sal_Int32 Position, const ::rtl::OUString& ItemImageURL ) /* throw (css::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException) */ = 0;
37 : virtual void SAL_CALL setItemTextAndImage( ::sal_Int32 Position, const ::rtl::OUString& ItemText, const ::rtl::OUString& ItemImageURL ) /* throw (css::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException) */ = 0;
38 : virtual void SAL_CALL setItemData( ::sal_Int32 Position, const ::com::sun::star::uno::Any& ItemData ) /* throw (css::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException) */ = 0;
39 : virtual ::rtl::OUString SAL_CALL getItemText( ::sal_Int32 Position ) /* throw (css::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException) */ = 0;
40 : virtual ::rtl::OUString SAL_CALL getItemImage( ::sal_Int32 Position ) /* throw (css::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException) */ = 0;
41 : virtual css::beans::Pair< ::rtl::OUString, ::rtl::OUString > SAL_CALL getItemTextAndImage( ::sal_Int32 Position ) /* throw (css::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException) */ = 0;
42 : virtual ::com::sun::star::uno::Any SAL_CALL getItemData( ::sal_Int32 Position ) /* throw (css::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException) */ = 0;
43 : virtual ::com::sun::star::uno::Sequence< css::beans::Pair< ::rtl::OUString, ::rtl::OUString > > SAL_CALL getAllItems() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
44 : virtual void SAL_CALL addItemListListener( const ::com::sun::star::uno::Reference< css::awt::XItemListListener >& Listener ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
45 : virtual void SAL_CALL removeItemListListener( const ::com::sun::star::uno::Reference< css::awt::XItemListListener >& Listener ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
46 :
47 : static inline ::com::sun::star::uno::Type const & SAL_CALL static_type(void * = 0);
48 :
49 : protected:
50 30 : ~XItemList() throw () {} // avoid warnings about virtual members and non-virtual dtor
51 : };
52 :
53 :
54 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::awt::XItemList const *);
55 : } } } }
56 :
57 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(const ::com::sun::star::uno::Reference< css::awt::XItemList > *) SAL_THROW(());
58 :
59 : #endif
|