Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_DOCUMENT_DOCUMENTEVENT_HPP
2 : #define INCLUDED_COM_SUN_STAR_DOCUMENT_DOCUMENTEVENT_HPP
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/document/DocumentEvent.hdl"
7 :
8 : #include "com/sun/star/frame/XController2.hpp"
9 : #include "com/sun/star/lang/EventObject.hpp"
10 : #include "com/sun/star/uno/Any.hxx"
11 : #include "com/sun/star/uno/Reference.hxx"
12 : #include "com/sun/star/uno/Type.hxx"
13 : #include "cppu/unotype.hxx"
14 : #include "rtl/ustring.hxx"
15 : #include "sal/types.h"
16 : #include "typelib/typeclass.h"
17 : #include "typelib/typedescription.h"
18 :
19 : namespace com { namespace sun { namespace star { namespace document {
20 :
21 : inline DocumentEvent::DocumentEvent() SAL_THROW(())
22 : : css::lang::EventObject()
23 : , EventName()
24 : , ViewController()
25 : , Supplement()
26 : {
27 : }
28 :
29 17540 : inline DocumentEvent::DocumentEvent(const ::com::sun::star::uno::Reference< css::uno::XInterface >& Source_, const ::rtl::OUString& EventName_, const ::com::sun::star::uno::Reference< css::frame::XController2 >& ViewController_, const ::com::sun::star::uno::Any& Supplement_) SAL_THROW(())
30 : : css::lang::EventObject(Source_)
31 : , EventName(EventName_)
32 : , ViewController(ViewController_)
33 17540 : , Supplement(Supplement_)
34 : {
35 17540 : }
36 :
37 : } } } }
38 :
39 : namespace com { namespace sun { namespace star { namespace document {
40 :
41 1 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::document::DocumentEvent 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 1 : if (the_type == 0) {
45 1 : ::typelib_static_type_init(&the_type, typelib_TypeClass_STRUCT, "com.sun.star.document.DocumentEvent");
46 : }
47 1 : 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::document::DocumentEvent const *) SAL_THROW(()) {
53 : return ::cppu::UnoType< css::document::DocumentEvent >::get();
54 : }
55 :
56 : #endif // INCLUDED_COM_SUN_STAR_DOCUMENT_DOCUMENTEVENT_HPP
|