tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / sc / source / filter / xml / xmlsceni.cxx
blob7a1c1848ba876304bc80c2a83ee688993faaf7ca
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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"
23 #include <attrib.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(
35 ScXMLImport& rImport,
36 const rtl::Reference<sax_fastparser::FastAttributeList>& rAttrList ):
37 ScXMLImportContext( rImport ),
38 aBorderColor( COL_BLACK ),
39 bDisplayBorder( true ),
40 bCopyBack( true ),
41 bCopyStyles( true ),
42 bCopyFormulas( true ),
43 bIsActive( false ),
44 bProtected( false )
46 rImport.LockSolarMutex();
48 if ( !rAttrList.is() )
49 return;
51 for (auto &aIter : *rAttrList)
53 switch (aIter.getToken())
55 case XML_ELEMENT( TABLE, XML_DISPLAY_BORDER ):
56 bDisplayBorder = IsXMLToken(aIter, XML_TRUE);
57 break;
58 case XML_ELEMENT( TABLE, XML_BORDER_COLOR ):
59 ::sax::Converter::convertColor(aBorderColor, aIter.toView());
60 break;
61 case XML_ELEMENT( TABLE, XML_COPY_BACK ):
62 bCopyBack = IsXMLToken(aIter, XML_TRUE);
63 break;
64 case XML_ELEMENT( TABLE, XML_COPY_STYLES ):
65 bCopyStyles = IsXMLToken(aIter, XML_TRUE);
66 break;
67 case XML_ELEMENT( TABLE, XML_COPY_FORMULAS ):
68 bCopyFormulas = IsXMLToken(aIter, XML_TRUE);
69 break;
70 case XML_ELEMENT( TABLE, XML_IS_ACTIVE ):
71 bIsActive = IsXMLToken(aIter, XML_TRUE);
72 break;
73 case XML_ELEMENT( TABLE, XML_SCENARIO_RANGES ):
75 ScDocument* pDoc = GetScImport().GetDocument();
76 assert(pDoc);
77 ScRangeStringConverter::GetRangeListFromString(
78 aScenarioRanges, aIter.toString(), *pDoc, ::formula::FormulaGrammar::CONV_OOO );
79 break;
81 case XML_ELEMENT( TABLE, XML_COMMENT ):
82 sComment = aIter.toString();
83 break;
84 case XML_ELEMENT( TABLE, XML_PROTECTED ):
85 bProtected = IsXMLToken(aIter, XML_TRUE);
86 break;
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());
100 if (!pDoc)
101 return;
103 pDoc->SetScenario( nCurrTable, true );
104 ScScenarioFlags nFlags( ScScenarioFlags::NONE );
105 if( bDisplayBorder )
106 nFlags |= ScScenarioFlags::ShowFrame;
107 if( bCopyBack )
108 nFlags |= ScScenarioFlags::TwoWay;
109 if( bCopyStyles )
110 nFlags |= ScScenarioFlags::Attrib;
111 if( !bCopyFormulas )
112 nFlags |= ScScenarioFlags::Value;
113 if( bProtected )
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: */