xref: /AOO41X/main/xmloff/inc/XMLImageMapContext.hxx (revision ecfe53c5d1886e1e0d215b0d140d05282ab1c477)
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_XMLIMAGEMAPCONTEXT_HXX_
25 #define _XMLOFF_XMLIMAGEMAPCONTEXT_HXX_
26 
27 #include <xmloff/xmlictxt.hxx>
28 #include <rtl/ustring.hxx>
29 #include <com/sun/star/uno/Reference.h>
30 
31 namespace com { namespace sun { namespace star {
32     namespace container { class XIndexContainer; }
33     namespace beans { class XPropertySet; }
34     namespace xml { namespace sax { class XAttributeList; } }
35 } } }
36 
37 
38 class XMLImageMapContext : public SvXMLImportContext
39 {
40     const ::rtl::OUString sImageMap;
41 
42     /// the image map to be imported
43     ::com::sun::star::uno::Reference<
44         ::com::sun::star::container::XIndexContainer> xImageMap;
45 
46     /// the property set from which to get and where eventually to set the
47     /// image map
48     ::com::sun::star::uno::Reference<
49         ::com::sun::star::beans::XPropertySet> xPropertySet;
50 
51 public:
52     TYPEINFO();
53 
54     XMLImageMapContext(
55         SvXMLImport& rImport,
56         sal_uInt16 nPrefix,
57         const ::rtl::OUString& rLocalName,
58         ::com::sun::star::uno::Reference<
59             ::com::sun::star::beans::XPropertySet> & rPropertySet);
60 
61     virtual ~XMLImageMapContext();
62 
63     virtual SvXMLImportContext *CreateChildContext(
64         sal_uInt16 nPrefix,
65         const ::rtl::OUString& rLocalName,
66         const ::com::sun::star::uno::Reference<
67             ::com::sun::star::xml::sax::XAttributeList >& xAttrList );
68 
69     virtual void EndElement();
70 };
71 
72 #endif
73