Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_XML_WRAPPER_XXMLDOCUMENTWRAPPER_HDL
2 : #define INCLUDED_COM_SUN_STAR_XML_WRAPPER_XXMLDOCUMENTWRAPPER_HDL
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/uno/RuntimeException.hdl"
7 : #include "com/sun/star/uno/XInterface.hdl"
8 : #include "com/sun/star/xml/sax/SAXException.hdl"
9 : namespace com { namespace sun { namespace star { namespace xml { namespace sax { class XDocumentHandler; } } } } }
10 : namespace com { namespace sun { namespace star { namespace xml { namespace wrapper { class XXMLElementWrapper; } } } } }
11 : #include "com/sun/star/uno/Reference.h"
12 : #include "com/sun/star/uno/Sequence.h"
13 : #include "cppu/macros.hxx"
14 : #include "rtl/ustring.hxx"
15 : #include "sal/types.h"
16 :
17 : namespace com { namespace sun { namespace star { namespace uno { class Type; } } } }
18 :
19 : namespace com { namespace sun { namespace star { namespace xml { namespace wrapper {
20 :
21 0 : class SAL_NO_VTABLE XXMLDocumentWrapper : public css::uno::XInterface
22 : {
23 : public:
24 :
25 : // Methods
26 : virtual ::com::sun::star::uno::Reference< css::xml::wrapper::XXMLElementWrapper > SAL_CALL getCurrentElement() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
27 : virtual void SAL_CALL setCurrentElement( const ::com::sun::star::uno::Reference< css::xml::wrapper::XXMLElementWrapper >& element ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
28 : virtual void SAL_CALL removeCurrentElement() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
29 : virtual ::sal_Bool SAL_CALL isCurrent( const ::com::sun::star::uno::Reference< css::xml::wrapper::XXMLElementWrapper >& node ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
30 : virtual ::sal_Bool SAL_CALL isCurrentElementEmpty() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
31 : virtual ::rtl::OUString SAL_CALL getNodeName( const ::com::sun::star::uno::Reference< css::xml::wrapper::XXMLElementWrapper >& node ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
32 : virtual void SAL_CALL clearUselessData( const ::com::sun::star::uno::Reference< css::xml::wrapper::XXMLElementWrapper >& node, const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Reference< css::xml::wrapper::XXMLElementWrapper > >& reservedDescendants, const ::com::sun::star::uno::Reference< css::xml::wrapper::XXMLElementWrapper >& stopAtNode ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
33 : virtual void SAL_CALL collapse( const ::com::sun::star::uno::Reference< css::xml::wrapper::XXMLElementWrapper >& node ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
34 : virtual void SAL_CALL generateSAXEvents( const ::com::sun::star::uno::Reference< css::xml::sax::XDocumentHandler >& handler, const ::com::sun::star::uno::Reference< css::xml::sax::XDocumentHandler >& saxEventKeeperHandler, const ::com::sun::star::uno::Reference< css::xml::wrapper::XXMLElementWrapper >& startNode, const ::com::sun::star::uno::Reference< css::xml::wrapper::XXMLElementWrapper >& endNode ) /* throw (css::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException) */ = 0;
35 : virtual void SAL_CALL getTree( const ::com::sun::star::uno::Reference< css::xml::sax::XDocumentHandler >& handler ) /* throw (css::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException) */ = 0;
36 : virtual void SAL_CALL rebuildIDLink( const ::com::sun::star::uno::Reference< css::xml::wrapper::XXMLElementWrapper >& node ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
37 :
38 : static inline ::com::sun::star::uno::Type const & SAL_CALL static_type(void * = 0);
39 :
40 : protected:
41 0 : ~XXMLDocumentWrapper() throw () {} // avoid warnings about virtual members and non-virtual dtor
42 : };
43 :
44 :
45 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::xml::wrapper::XXMLDocumentWrapper const *);
46 : } } } } }
47 :
48 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(const ::com::sun::star::uno::Reference< css::xml::wrapper::XXMLDocumentWrapper > *) SAL_THROW(());
49 :
50 : #endif
|