LibreOffice Module xmloff (master) 1
XMLTextPropertySetContext.cxx
Go to the documentation of this file.
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>
26
27#include <xmloff/xmlimppr.hxx>
28#include <xmloff/txtprmap.hxx>
29#include <xmltabi.hxx>
30#include "txtdropi.hxx"
31
32using namespace ::com::sun::star::uno;
33using namespace ::com::sun::star;
34
36 SvXMLImport& rImport, sal_Int32 nElement,
37 const Reference< xml::sax::XFastAttributeList > & xAttrList,
38 sal_uInt32 nFamily,
39 ::std::vector< XMLPropertyState > &rProps,
41 OUString& rDCTextStyleName ) :
42 SvXMLPropertySetContext( rImport, nElement, xAttrList, nFamily,
43 rProps, rMap ),
44 rDropCapTextStyleName( rDCTextStyleName )
45{
46}
47
49{
50}
51
52css::uno::Reference< css::xml::sax::XFastContextHandler > XMLTextPropertySetContext::createFastChildContext(
53 sal_Int32 nElement,
54 const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList,
55 ::std::vector< XMLPropertyState > &rProperties,
56 const XMLPropertyState& rProp )
57{
58 switch( mxMapper->getPropertySetMapper()
59 ->GetEntryContextId( rProp.mnIndex ) )
60 {
61 case CTF_TABSTOP:
62 return new SvxXMLTabStopImportContext( GetImport(), nElement,
63 rProp,
64 rProperties );
65 break;
66 case CTF_TEXTCOLUMNS:
67 return new XMLTextColumnsContext( GetImport(), nElement,
68 xAttrList, rProp,
69 rProperties );
70 break;
71
73 return new XMLComplexColorContext(GetImport(), nElement, xAttrList, rProp, rProperties);
74 break;
75
77 {
78 DBG_ASSERT( rProp.mnIndex >= 2 &&
79 CTF_DROPCAPWHOLEWORD == mxMapper->getPropertySetMapper()
80 ->GetEntryContextId( rProp.mnIndex-2 ),
81 "invalid property map!");
82 XMLTextDropCapImportContext *pDCContext =
84 xAttrList,
85 rProp,
86 rProp.mnIndex-2,
87 rProperties );
88 rDropCapTextStyleName = pDCContext->GetStyleName();
89 return pDCContext;
90 }
91 break;
92
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) &&
107 mxMapper->getPropertySetMapper()->GetEntryContextId(
108 rProp.mnIndex-3 ) ) )
109 nTranspIndex = rProp.mnIndex-3;
110
111 return
112 new XMLBackgroundImageContext( GetImport(), nElement,
113 xAttrList,
114 rProp,
115 rProp.mnIndex-2,
116 rProp.mnIndex-1,
117 nTranspIndex,
118 -1,
119 rProperties );
120 }
121 break;
125 GetImport(), nElement, rProperties,
126 mxMapper->getPropertySetMapper());
127 break;
128 }
129
131 xAttrList,
132 rProperties, rProp );
133}
134
135/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
SvXMLImport & GetImport()
Definition: xmlictxt.hxx:60
rtl::Reference< SvXMLImportPropertyMapper > mxMapper
Definition: xmlprcon.hxx:37
virtual css::uno::Reference< css::xml::sax::XFastContextHandler > SAL_CALL createFastChildContext(sal_Int32 nElement, const css::uno::Reference< css::xml::sax::XFastAttributeList > &AttrList) override
Definition: xmlprcon.cxx:55
Import the footnote-/endnote-configuration element in section styles.
const OUString & GetStyleName() const
Definition: txtdropi.hxx:43
virtual css::uno::Reference< css::xml::sax::XFastContextHandler > createFastChildContext(sal_Int32 nElement, const css::uno::Reference< css::xml::sax::XFastAttributeList > &xAttrList, ::std::vector< XMLPropertyState > &rProperties, const XMLPropertyState &rProp) override
This method is called from this instance implementation of CreateChildContext if the element matches ...
XMLTextPropertySetContext(SvXMLImport &rImport, sal_Int32 nElement, const css::uno::Reference< css::xml::sax::XFastAttributeList > &xAttrList, sal_uInt32 nFamily, ::std::vector< XMLPropertyState > &rProps, const rtl::Reference< SvXMLImportPropertyMapper > &rMap, OUString &rDopCapTextStyleName)
virtual ~XMLTextPropertySetContext() override
#define DBG_ASSERT(sCon, aError)
Smart struct to transport an Any with an index to the appropriate property-name.
Definition: maptype.hxx:140
sal_Int32 mnIndex
Definition: maptype.hxx:141
#define CTF_BACKGROUND_POS
Definition: txtprmap.hxx:90
#define CTF_BACKGROUND_FILTER
Definition: txtprmap.hxx:91
#define CTF_DROPCAPFORMAT
Definition: txtprmap.hxx:53
#define CTF_TABSTOP
Definition: txtprmap.hxx:55
#define CTF_COMPLEX_COLOR
Definition: txtprmap.hxx:205
#define CTF_BACKGROUND_URL
Definition: txtprmap.hxx:89
#define CTF_SECTION_ENDNOTE_END
Definition: txtprmap.hxx:122
#define CTF_TEXTCOLUMNS
Definition: txtprmap.hxx:77
#define CTF_BACKGROUND_TRANSPARENCY
Definition: txtprmap.hxx:143
#define CTF_SECTION_FOOTNOTE_END
Definition: txtprmap.hxx:115
#define CTF_DROPCAPWHOLEWORD
Definition: txtprmap.hxx:52