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 .
20 #include <document.hxx>
21 #include "xmlimprt.hxx"
22 #include "xmlsceni.hxx"
24 #include <rangeutl.hxx>
26 #include <xmloff/xmltoken.hxx>
27 #include <xmloff/xmlnamespace.hxx>
29 #include <sax/tools/converter.hxx>
31 using namespace com::sun::star
;
32 using namespace xmloff::token
;
34 ScXMLTableScenarioContext::ScXMLTableScenarioContext(
36 const rtl::Reference
<sax_fastparser::FastAttributeList
>& rAttrList
):
37 ScXMLImportContext( rImport
),
38 aBorderColor( COL_BLACK
),
39 bDisplayBorder( true ),
42 bCopyFormulas( true ),
46 rImport
.LockSolarMutex();
48 if ( !rAttrList
.is() )
51 for (auto &aIter
: *rAttrList
)
53 switch (aIter
.getToken())
55 case XML_ELEMENT( TABLE
, XML_DISPLAY_BORDER
):
56 bDisplayBorder
= IsXMLToken(aIter
, XML_TRUE
);
58 case XML_ELEMENT( TABLE
, XML_BORDER_COLOR
):
59 ::sax::Converter::convertColor(aBorderColor
, aIter
.toView());
61 case XML_ELEMENT( TABLE
, XML_COPY_BACK
):
62 bCopyBack
= IsXMLToken(aIter
, XML_TRUE
);
64 case XML_ELEMENT( TABLE
, XML_COPY_STYLES
):
65 bCopyStyles
= IsXMLToken(aIter
, XML_TRUE
);
67 case XML_ELEMENT( TABLE
, XML_COPY_FORMULAS
):
68 bCopyFormulas
= IsXMLToken(aIter
, XML_TRUE
);
70 case XML_ELEMENT( TABLE
, XML_IS_ACTIVE
):
71 bIsActive
= IsXMLToken(aIter
, XML_TRUE
);
73 case XML_ELEMENT( TABLE
, XML_SCENARIO_RANGES
):
75 ScDocument
* pDoc
= GetScImport().GetDocument();
77 ScRangeStringConverter::GetRangeListFromString(
78 aScenarioRanges
, aIter
.toString(), *pDoc
, ::formula::FormulaGrammar::CONV_OOO
);
81 case XML_ELEMENT( TABLE
, XML_COMMENT
):
82 sComment
= aIter
.toString();
84 case XML_ELEMENT( TABLE
, XML_PROTECTED
):
85 bProtected
= IsXMLToken(aIter
, XML_TRUE
);
91 ScXMLTableScenarioContext::~ScXMLTableScenarioContext()
93 GetScImport().UnlockSolarMutex();
96 void SAL_CALL
ScXMLTableScenarioContext::endFastElement( sal_Int32
/*nElement*/ )
98 SCTAB
nCurrTable( GetScImport().GetTables().GetCurrentSheet() );
99 ScDocument
* pDoc(GetScImport().GetDocument());
103 pDoc
->SetScenario( nCurrTable
, true );
104 ScScenarioFlags
nFlags( ScScenarioFlags::NONE
);
106 nFlags
|= ScScenarioFlags::ShowFrame
;
108 nFlags
|= ScScenarioFlags::TwoWay
;
110 nFlags
|= ScScenarioFlags::Attrib
;
112 nFlags
|= ScScenarioFlags::Value
;
114 nFlags
|= ScScenarioFlags::Protected
;
115 pDoc
->SetScenarioData( nCurrTable
, sComment
, aBorderColor
, nFlags
);
116 for( size_t i
= 0; i
< aScenarioRanges
.size(); ++i
)
118 ScRange
const & rRange
= aScenarioRanges
[ i
];
119 pDoc
->ApplyFlagsTab( rRange
.aStart
.Col(), rRange
.aStart
.Row(),
120 rRange
.aEnd
.Col(), rRange
.aEnd
.Row(), nCurrTable
, ScMF::Scenario
);
122 pDoc
->SetActiveScenario( nCurrTable
, bIsActive
);
125 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */