xref: /aoo4110/main/xmloff/inc/xmloff/xmlmetai.hxx (revision b1cdbd2c)
1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 
24 #ifndef XMLOFF_XMLMETAI_HXX
25 #define XMLOFF_XMLMETAI_HXX
26 
27 #include "sal/config.h"
28 #include "xmloff/dllapi.h"
29 #include <xmloff/xmlictxt.hxx>
30 
31 #include <com/sun/star/beans/XPropertySet.hpp>
32 #include <com/sun/star/document/XDocumentProperties.hpp>
33 #include <com/sun/star/xml/sax/XDocumentHandler.hpp>
34 
35 
36 /// handles the top-level office:document-meta element of meta.xml documents
37 // NB: virtual inheritance is needed so that the context that handles the
38 //     flat xml file format can multiply inherit properly
39 class XMLOFF_DLLPUBLIC SvXMLMetaDocumentContext
40     : public virtual SvXMLImportContext
41 {
42 private:
43     ::com::sun::star::uno::Reference<
44         ::com::sun::star::document::XDocumentProperties> mxDocProps;
45     ::com::sun::star::uno::Reference<
46         ::com::sun::star::xml::sax::XDocumentHandler> mxDocBuilder;
47 
48 public:
49     SvXMLMetaDocumentContext(SvXMLImport& rImport, sal_uInt16 nPrfx,
50         const rtl::OUString& rLName,
51         const ::com::sun::star::uno::Reference<
52             ::com::sun::star::document::XDocumentProperties>& xDocProps,
53         const ::com::sun::star::uno::Reference<
54             ::com::sun::star::xml::sax::XDocumentHandler>& xDocBuilder);
55 
56     virtual ~SvXMLMetaDocumentContext();
57 
58     virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix,
59         const rtl::OUString& rLocalName,
60         const ::com::sun::star::uno::Reference<
61             ::com::sun::star::xml::sax::XAttributeList>& xAttrList );
62 
63     virtual void StartElement( const ::com::sun::star::uno::Reference<
64              ::com::sun::star::xml::sax::XAttributeList >& xAttrList );
65 
66     virtual void EndElement();
67 
68 public:
69     static void setBuildId(const ::rtl::OUString & rGenerator,
70         const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet>& xImportInfo );
71 };
72 
73 #endif // _XMLOFF_XMLMETAI_HXX
74 
75