Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_AWT_DOCKINGEVENT_HPP
2 : #define INCLUDED_COM_SUN_STAR_AWT_DOCKINGEVENT_HPP
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/awt/DockingEvent.hdl"
7 :
8 : #include "com/sun/star/awt/Point.hpp"
9 : #include "com/sun/star/awt/Rectangle.hpp"
10 : #include "com/sun/star/lang/EventObject.hpp"
11 : #include "com/sun/star/uno/Type.hxx"
12 : #include "cppu/unotype.hxx"
13 : #include "sal/types.h"
14 : #include "typelib/typeclass.h"
15 : #include "typelib/typedescription.h"
16 :
17 : namespace com { namespace sun { namespace star { namespace awt {
18 :
19 0 : inline DockingEvent::DockingEvent() SAL_THROW(())
20 : : css::lang::EventObject()
21 : , TrackingRectangle()
22 : , MousePos()
23 : , bLiveMode(false)
24 0 : , bInteractive(false)
25 : {
26 0 : }
27 :
28 : inline DockingEvent::DockingEvent(const ::com::sun::star::uno::Reference< css::uno::XInterface >& Source_, const css::awt::Rectangle& TrackingRectangle_, const css::awt::Point& MousePos_, const ::sal_Bool& bLiveMode_, const ::sal_Bool& bInteractive_) SAL_THROW(())
29 : : css::lang::EventObject(Source_)
30 : , TrackingRectangle(TrackingRectangle_)
31 : , MousePos(MousePos_)
32 : , bLiveMode(bLiveMode_)
33 : , bInteractive(bInteractive_)
34 : {
35 : }
36 :
37 : } } } }
38 :
39 : namespace com { namespace sun { namespace star { namespace awt {
40 :
41 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::awt::DockingEvent const *) {
42 : //TODO: On certain platforms with weak memory models, the following code can result in some threads observing that the_type points to garbage
43 : static ::typelib_TypeDescriptionReference * the_type = 0;
44 : if (the_type == 0) {
45 : ::typelib_static_type_init(&the_type, typelib_TypeClass_STRUCT, "com.sun.star.awt.DockingEvent");
46 : }
47 : return *reinterpret_cast< ::com::sun::star::uno::Type * >(&the_type);
48 : }
49 :
50 : } } } }
51 :
52 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(SAL_UNUSED_PARAMETER css::awt::DockingEvent const *) SAL_THROW(()) {
53 : return ::cppu::UnoType< css::awt::DockingEvent >::get();
54 : }
55 :
56 : #endif // INCLUDED_COM_SUN_STAR_AWT_DOCKINGEVENT_HPP
|