1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  *
9  * This file incorporates work covered by the following license notice:
10  *
11  *   Licensed to the Apache Software Foundation (ASF) under one or more
12  *   contributor license agreements. See the NOTICE file distributed
13  *   with this work for additional information regarding copyright
14  *   ownership. The ASF licenses this file to you under the Apache
15  *   License, Version 2.0 (the "License"); you may not use this file
16  *   except in compliance with the License. You may obtain a copy of
17  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
18  */
19 
20 #include <tools/debug.hxx>
21 #include "XMLTextPropertySetContext.hxx"
22 #include <XMLTextColumnsContext.hxx>
23 #include <XMLBackgroundImageContext.hxx>
24 #include "XMLSectionFootnoteConfigImport.hxx"
25 
26 #include <xmloff/xmlimppr.hxx>
27 #include <xmloff/txtprmap.hxx>
28 #include <xmltabi.hxx>
29 #include "txtdropi.hxx"
30 
31 
32 using namespace ::com::sun::star::uno;
33 using namespace ::com::sun::star;
34 
XMLTextPropertySetContext(SvXMLImport & rImport,sal_uInt16 nPrfx,const OUString & rLName,const Reference<xml::sax::XAttributeList> & xAttrList,sal_uInt32 nFamily,::std::vector<XMLPropertyState> & rProps,const rtl::Reference<SvXMLImportPropertyMapper> & rMap,OUString & rDCTextStyleName)35 XMLTextPropertySetContext::XMLTextPropertySetContext(
36                  SvXMLImport& rImport, sal_uInt16 nPrfx,
37                  const OUString& rLName,
38                  const Reference< xml::sax::XAttributeList > & xAttrList,
39                  sal_uInt32 nFamily,
40                  ::std::vector< XMLPropertyState > &rProps,
41                  const rtl::Reference < SvXMLImportPropertyMapper > &rMap,
42                  OUString& rDCTextStyleName ) :
43     SvXMLPropertySetContext( rImport, nPrfx, rLName, xAttrList, nFamily,
44                              rProps, rMap ),
45     rDropCapTextStyleName( rDCTextStyleName )
46 {
47 }
48 
~XMLTextPropertySetContext()49 XMLTextPropertySetContext::~XMLTextPropertySetContext()
50 {
51 }
52 
CreateChildContext(sal_uInt16 nPrefix,const OUString & rLocalName,const Reference<xml::sax::XAttributeList> & xAttrList,::std::vector<XMLPropertyState> & rProperties,const XMLPropertyState & rProp)53 SvXMLImportContextRef XMLTextPropertySetContext::CreateChildContext(
54                    sal_uInt16 nPrefix,
55                    const OUString& rLocalName,
56                    const Reference< xml::sax::XAttributeList > & xAttrList,
57                    ::std::vector< XMLPropertyState > &rProperties,
58                    const XMLPropertyState& rProp )
59 {
60     SvXMLImportContextRef xContext;
61 
62     switch( mxMapper->getPropertySetMapper()
63                     ->GetEntryContextId( rProp.mnIndex ) )
64     {
65     case CTF_TABSTOP:
66         xContext = new SvxXMLTabStopImportContext( GetImport(), nPrefix,
67                                                    rLocalName, rProp,
68                                                    rProperties );
69         break;
70     case CTF_TEXTCOLUMNS:
71         xContext = new XMLTextColumnsContext( GetImport(), nPrefix,
72                                                    rLocalName, xAttrList, rProp,
73                                                    rProperties );
74         break;
75 
76     case CTF_DROPCAPFORMAT:
77         {
78             DBG_ASSERT( rProp.mnIndex >= 2 &&
79                         CTF_DROPCAPWHOLEWORD  == mxMapper->getPropertySetMapper()
80                             ->GetEntryContextId( rProp.mnIndex-2 ),
81                         "invalid property map!");
82             XMLTextDropCapImportContext *pDCContext =
83                 new XMLTextDropCapImportContext( GetImport(), nPrefix,
84                                                         rLocalName, xAttrList,
85                                                         rProp,
86                                                         rProp.mnIndex-2,
87                                                         rProperties );
88             rDropCapTextStyleName = pDCContext->GetStyleName();
89             xContext = pDCContext;
90         }
91         break;
92 
93     case CTF_BACKGROUND_URL:
94     {
95         DBG_ASSERT( rProp.mnIndex >= 2 &&
96                     CTF_BACKGROUND_POS  == mxMapper->getPropertySetMapper()
97                         ->GetEntryContextId( rProp.mnIndex-2 ) &&
98                     CTF_BACKGROUND_FILTER  == mxMapper->getPropertySetMapper()
99                         ->GetEntryContextId( rProp.mnIndex-1 ),
100                     "invalid property map!");
101 
102         // #99657# Transparency might be there as well... but doesn't have
103         // to. Thus, this is checked with an if, rather than with an assertion.
104         sal_Int32 nTranspIndex = -1;
105         if( (rProp.mnIndex >= 3) &&
106             ( CTF_BACKGROUND_TRANSPARENCY ==
107               mxMapper->getPropertySetMapper()->GetEntryContextId(
108                   rProp.mnIndex-3 ) ) )
109             nTranspIndex = rProp.mnIndex-3;
110 
111         xContext =
112             new XMLBackgroundImageContext( GetImport(), nPrefix,
113                                            rLocalName, xAttrList,
114                                            rProp,
115                                            rProp.mnIndex-2,
116                                            rProp.mnIndex-1,
117                                            nTranspIndex,
118                                            -1,
119                                            rProperties );
120     }
121     break;
122     case CTF_SECTION_FOOTNOTE_END:
123     case CTF_SECTION_ENDNOTE_END:
124         xContext = new XMLSectionFootnoteConfigImport(
125             GetImport(), nPrefix, rLocalName, rProperties,
126             mxMapper->getPropertySetMapper());
127         break;
128     }
129 
130     if (!xContext)
131         xContext = SvXMLPropertySetContext::CreateChildContext( nPrefix, rLocalName,
132                                                             xAttrList,
133                                                             rProperties, rProp );
134 
135     return xContext;
136 }
137 
138 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
139