1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
19 #ifndef INCLUDED_XMLOFF_PRSTYLEI_HXX
20 #define INCLUDED_XMLOFF_PRSTYLEI_HXX
22 #include <sal/config.h>
23 #include <xmloff/dllapi.h>
24 #include <sal/types.h>
26 #include <xmloff/xmlstyle.hxx>
28 #include <unordered_set>
30 struct XMLPropertyState
;
32 namespace com
{ namespace sun
{ namespace star
{
33 namespace beans
{ class XPropertySet
; }
36 namespace com
{ namespace sun
{ namespace star
{ namespace style
{ class XStyle
; } } } }
38 typedef std::unordered_set
<OUString
> OldFillStyleDefinitionSet
;
40 class XMLOFF_DLLPUBLIC XMLPropStyleContext
: public SvXMLStyleContext
43 ::std::vector
< XMLPropertyState
> maProperties
;
44 css::uno::Reference
< css::style::XStyle
> mxStyle
;
45 SvXMLImportContextRef
const mxStyles
;
47 XMLPropStyleContext(XMLPropStyleContext
const &) = delete;
48 XMLPropStyleContext
& operator =(XMLPropStyleContext
const &) = delete;
52 // Helper to check if the local maProperties contains the given
53 // FillStyle tag and if the FillStyle there is different from FillStyle_NONE
54 bool doNewDrawingLayerFillStyleDefinitionsExist(
55 const OUString
& rFillStyleTag
) const;
57 // Helper which will deactivate all old fill definitions (identified by
58 // the given OldFillStyleDefinitionSet) in the local maProperties. Deactivation
59 // is done setting theindex to -1. It returns true when actually old fill
60 // definitions existed and were deactivated
61 void deactivateOldFillStyleDefinitions(
62 const OldFillStyleDefinitionSet
& rHashSetOfTags
);
64 // Helper to translate new DrawingLayer FillStyle values which are name-based
65 // from ODF internal name to style display names which can be found in the current
66 // document model (using NameOrIndex Items). The change is executed on the internal
67 // maProperties. The return value is true when actually names were changed
68 void translateNameBasedDrawingLayerFillStyleDefinitionsToStyleDisplayNames();
70 // provider for often used sets
71 static const OldFillStyleDefinitionSet
& getStandardSet();
72 static const OldFillStyleDefinitionSet
& getHeaderSet();
73 static const OldFillStyleDefinitionSet
& getFooterSet();
75 virtual void SetAttribute( sal_uInt16 nPrefixKey
,
76 const OUString
& rLocalName
,
77 const OUString
& rValue
) override
;
78 SvXMLStylesContext
*GetStyles() { return static_cast<SvXMLStylesContext
*>(mxStyles
.get()); }
79 ::std::vector
< XMLPropertyState
> & GetProperties() { return maProperties
; }
81 // Override this method to create a new style. It's called by
82 // CreateInsert to create a style if a style with the requested family and
83 // name couldn't be found.
84 virtual css::uno::Reference
< css::style::XStyle
> Create();
89 XMLPropStyleContext( SvXMLImport
& rImport
, sal_uInt16 nPrfx
,
90 const OUString
& rLName
,
91 const css::uno::Reference
< css::xml::sax::XAttributeList
> & xAttrList
,
92 SvXMLStylesContext
& rStyles
, sal_uInt16 nFamily
,
93 bool bDefaultStyle
=false );
94 virtual ~XMLPropStyleContext() override
;
96 virtual SvXMLImportContextRef
CreateChildContext(
98 const OUString
& rLocalName
,
99 const css::uno::Reference
< css::xml::sax::XAttributeList
> & xAttrList
) override
;
101 virtual void FillPropertySet(
102 const css::uno::Reference
< css::beans::XPropertySet
> & rPropSet
);
104 const SvXMLStylesContext
*GetStyles() const { return static_cast<const SvXMLStylesContext
*>(mxStyles
.get()); }
105 const ::std::vector
< XMLPropertyState
> & GetProperties() const { return maProperties
; }
107 const css::uno::Reference
< css::style::XStyle
>&
108 GetStyle() const { return mxStyle
; }
110 const css::uno::Reference
< css::style::XStyle
>& xStl
) { mxStyle
= xStl
; }
112 virtual void SetDefaults() override
;
114 virtual void CreateAndInsert( bool bOverwrite
) override
;
115 virtual void Finish( bool bOverwrite
) override
;
120 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */