Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_AWT_XIMAGECONSUMER_HDL
2 : #define INCLUDED_COM_SUN_STAR_AWT_XIMAGECONSUMER_HDL
3 :
4 : #include "sal/config.h"
5 :
6 : namespace com { namespace sun { namespace star { namespace awt { class XImageProducer; } } } }
7 : #include "com/sun/star/uno/RuntimeException.hdl"
8 : #include "com/sun/star/uno/XInterface.hdl"
9 : #include "com/sun/star/uno/Reference.h"
10 : #include "com/sun/star/uno/Sequence.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 0 : class SAL_NO_VTABLE XImageConsumer : public css::uno::XInterface
19 : {
20 : public:
21 :
22 : // Methods
23 : virtual void SAL_CALL init( ::sal_Int32 Width, ::sal_Int32 Height ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
24 : virtual void SAL_CALL setColorModel( ::sal_Int16 BitCount, const ::com::sun::star::uno::Sequence< ::sal_Int32 >& RGBAPal, ::sal_Int32 RedMask, ::sal_Int32 GreenMask, ::sal_Int32 BlueMask, ::sal_Int32 AlphaMask ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
25 : virtual void SAL_CALL setPixelsByBytes( ::sal_Int32 nX, ::sal_Int32 nY, ::sal_Int32 nWidth, ::sal_Int32 nHeight, const ::com::sun::star::uno::Sequence< ::sal_Int8 >& aProducerData, ::sal_Int32 nOffset, ::sal_Int32 nScanSize ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
26 : virtual void SAL_CALL setPixelsByLongs( ::sal_Int32 nX, ::sal_Int32 nY, ::sal_Int32 nWidth, ::sal_Int32 nHeight, const ::com::sun::star::uno::Sequence< ::sal_Int32 >& aProducerData, ::sal_Int32 nOffset, ::sal_Int32 nScanSize ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
27 : virtual void SAL_CALL complete( ::sal_Int32 Status, const ::com::sun::star::uno::Reference< css::awt::XImageProducer >& xProducer ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
28 :
29 : static inline ::com::sun::star::uno::Type const & SAL_CALL static_type(void * = 0);
30 :
31 : protected:
32 0 : ~XImageConsumer() throw () {} // avoid warnings about virtual members and non-virtual dtor
33 : };
34 :
35 :
36 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::awt::XImageConsumer const *);
37 : } } } }
38 :
39 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(const ::com::sun::star::uno::Reference< css::awt::XImageConsumer > *) SAL_THROW(());
40 :
41 : #endif
|