Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_AWT_WINDOWDESCRIPTOR_HDL
2 : #define INCLUDED_COM_SUN_STAR_AWT_WINDOWDESCRIPTOR_HDL
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/awt/Rectangle.hdl"
7 : #include "com/sun/star/awt/WindowClass.hdl"
8 : namespace com { namespace sun { namespace star { namespace awt { class XWindowPeer; } } } }
9 : #include "com/sun/star/uno/Reference.h"
10 : #include "cppu/macros.hxx"
11 : #include "rtl/ustring.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 : #ifdef SAL_W32
19 : # pragma pack(push, 8)
20 : #endif
21 :
22 10305 : struct WindowDescriptor {
23 : inline WindowDescriptor() SAL_THROW(());
24 :
25 : inline WindowDescriptor(const css::awt::WindowClass& Type_, const ::rtl::OUString& WindowServiceName_, const ::com::sun::star::uno::Reference< css::awt::XWindowPeer >& Parent_, const ::sal_Int16& ParentIndex_, const css::awt::Rectangle& Bounds_, const ::sal_Int32& WindowAttributes_) SAL_THROW(());
26 :
27 : css::awt::WindowClass Type;
28 : ::rtl::OUString WindowServiceName;
29 : ::com::sun::star::uno::Reference< css::awt::XWindowPeer > Parent;
30 : ::sal_Int16 ParentIndex;
31 : css::awt::Rectangle Bounds;
32 : ::sal_Int32 WindowAttributes;
33 : };
34 :
35 : #ifdef SAL_W32
36 : # pragma pack(pop)
37 : #endif
38 :
39 :
40 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::awt::WindowDescriptor const *);
41 : } } } }
42 :
43 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(const css::awt::WindowDescriptor *) SAL_THROW(());
44 :
45 : #endif
|