Branch data Line data Source code
1 : : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : : /*************************************************************************
3 : : *
4 : : * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 : : *
6 : : * Copyright 2000, 2010 Oracle and/or its affiliates.
7 : : *
8 : : * OpenOffice.org - a multi-platform office productivity suite
9 : : *
10 : : * This file is part of OpenOffice.org.
11 : : *
12 : : * OpenOffice.org is free software: you can redistribute it and/or modify
13 : : * it under the terms of the GNU Lesser General Public License version 3
14 : : * only, as published by the Free Software Foundation.
15 : : *
16 : : * OpenOffice.org is distributed in the hope that it will be useful,
17 : : * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 : : * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 : : * GNU Lesser General Public License version 3 for more details
20 : : * (a copy is included in the LICENSE file that accompanied this code).
21 : : *
22 : : * You should have received a copy of the GNU Lesser General Public License
23 : : * version 3 along with OpenOffice.org. If not, see
24 : : * <http://www.openoffice.org/license.html>
25 : : * for a copy of the LGPLv3 License.
26 : : *
27 : : ************************************************************************/
28 : :
29 : : #include <tools/debug.hxx>
30 : : #include "PagePropertySetContext.hxx"
31 : : #include "XMLBackgroundImageContext.hxx"
32 : : #include "XMLTextColumnsContext.hxx"
33 : : #include <xmloff/PageMasterStyleMap.hxx>
34 : : #include "XMLFootnoteSeparatorImport.hxx"
35 : :
36 : : using ::rtl::OUString;
37 : :
38 : : using namespace ::com::sun::star::uno;
39 : : using namespace ::com::sun::star;
40 : :
41 : 686 : PagePropertySetContext::PagePropertySetContext(
42 : : SvXMLImport& rImport, sal_uInt16 nPrfx,
43 : : const OUString& rLName,
44 : : const Reference< xml::sax::XAttributeList > & xAttrList,
45 : : sal_uInt32 nFam,
46 : : ::std::vector< XMLPropertyState > &rProps,
47 : : const UniReference < SvXMLImportPropertyMapper > &rMap,
48 : : sal_Int32 nStartIndex, sal_Int32 nEndIndex,
49 : : const PageContextType aTempType ) :
50 : : SvXMLPropertySetContext( rImport, nPrfx, rLName, xAttrList, nFam,
51 : 686 : rProps, rMap, nStartIndex, nEndIndex )
52 : : {
53 : 686 : aType = aTempType;
54 : 686 : }
55 : :
56 : 686 : PagePropertySetContext::~PagePropertySetContext()
57 : : {
58 [ - + ]: 1372 : }
59 : :
60 : 296 : SvXMLImportContext *PagePropertySetContext::CreateChildContext(
61 : : sal_uInt16 nPrefix,
62 : : const OUString& rLocalName,
63 : : const Reference< xml::sax::XAttributeList > & xAttrList,
64 : : ::std::vector< XMLPropertyState > &rProperties,
65 : : const XMLPropertyState& rProp )
66 : : {
67 : 296 : sal_Int32 nPos = CTF_PM_GRAPHICPOSITION;
68 : 296 : sal_Int32 nFil = CTF_PM_GRAPHICFILTER;
69 [ + + + ]: 296 : switch ( aType )
70 : : {
71 : : case Header:
72 : : {
73 : 93 : nPos = CTF_PM_HEADERGRAPHICPOSITION;
74 : 93 : nFil = CTF_PM_HEADERGRAPHICFILTER;
75 : : }
76 : 93 : break;
77 : : case Footer:
78 : : {
79 : 93 : nPos = CTF_PM_FOOTERGRAPHICPOSITION;
80 : 93 : nFil = CTF_PM_FOOTERGRAPHICFILTER;
81 : : }
82 : 93 : break;
83 : : default:
84 : 110 : break;
85 : : }
86 : 296 : SvXMLImportContext *pContext = 0;
87 : :
88 [ + + + - ]: 592 : switch( mxMapper->getPropertySetMapper()
89 : 296 : ->GetEntryContextId( rProp.mnIndex ) )
90 : : {
91 : : case CTF_PM_GRAPHICURL:
92 : : case CTF_PM_HEADERGRAPHICURL:
93 : : case CTF_PM_FOOTERGRAPHICURL:
94 : : DBG_ASSERT( rProp.mnIndex >= 2 &&
95 : : nPos == mxMapper->getPropertySetMapper()
96 : : ->GetEntryContextId( rProp.mnIndex-2 ) &&
97 : : nFil == mxMapper->getPropertySetMapper()
98 : : ->GetEntryContextId( rProp.mnIndex-1 ),
99 : : "invalid property map!");
100 : : (void)nPos;
101 : : (void)nFil;
102 : : pContext =
103 : 189 : new XMLBackgroundImageContext( GetImport(), nPrefix,
104 : : rLocalName, xAttrList,
105 : : rProp,
106 : : rProp.mnIndex-2,
107 : : rProp.mnIndex-1,
108 : : -1,
109 [ + - ]: 189 : rProperties );
110 : 189 : break;
111 : :
112 : : case CTF_PM_TEXTCOLUMNS:
113 : 6 : pContext = new XMLTextColumnsContext( GetImport(), nPrefix,
114 : : rLocalName, xAttrList, rProp,
115 [ + - ]: 6 : rProperties );
116 : 6 : break;
117 : :
118 : : case CTF_PM_FTN_LINE_WEIGTH:
119 : : pContext = new XMLFootnoteSeparatorImport(
120 : 101 : GetImport(), nPrefix, rLocalName, rProperties,
121 [ + - ]: 101 : mxMapper->getPropertySetMapper(), rProp.mnIndex);
122 : 101 : break;
123 : : }
124 : :
125 [ - + ]: 296 : if( !pContext )
126 : : pContext = SvXMLPropertySetContext::CreateChildContext( nPrefix, rLocalName,
127 : : xAttrList,
128 : 0 : rProperties, rProp );
129 : :
130 : 296 : return pContext;
131 : : }
132 : :
133 : :
134 : : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|