fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git] / xmloff / source / text / XMLIndexTOCSourceContext.cxx
blobe7b3f1f93434ac7fe0c92c8f240dac6ddee34204
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 "XMLIndexTOCSourceContext.hxx"
21 #include <com/sun/star/beans/XPropertySet.hpp>
22 #include <com/sun/star/container/XIndexReplace.hpp>
23 #include <sax/tools/converter.hxx>
24 #include "XMLIndexTemplateContext.hxx"
25 #include "XMLIndexTitleTemplateContext.hxx"
26 #include "XMLIndexTOCStylesContext.hxx"
27 #include <xmloff/xmlictxt.hxx>
28 #include <xmloff/xmlimp.hxx>
29 #include <xmloff/txtimp.hxx>
30 #include "xmloff/xmlnmspe.hxx"
31 #include <xmloff/nmspmap.hxx>
32 #include <xmloff/xmltoken.hxx>
33 #include <rtl/ustring.hxx>
37 using namespace ::xmloff::token;
39 using ::com::sun::star::beans::XPropertySet;
40 using ::com::sun::star::uno::Reference;
41 using ::com::sun::star::uno::Any;
42 using ::com::sun::star::xml::sax::XAttributeList;
44 const sal_Char sAPI_CreateFromChapter[] = "CreateFromChapter";
45 const sal_Char sAPI_CreateFromOutline[] = "CreateFromOutline";
46 const sal_Char sAPI_CreateFromMarks[] = "CreateFromMarks";
47 const sal_Char sAPI_Level[] = "Level";
48 const sal_Char sAPI_CreateFromLevelParagraphStyles[] = "CreateFromLevelParagraphStyles";
51 TYPEINIT1( XMLIndexTOCSourceContext, XMLIndexSourceBaseContext );
53 XMLIndexTOCSourceContext::XMLIndexTOCSourceContext(
54 SvXMLImport& rImport,
55 sal_uInt16 nPrfx,
56 const OUString& rLocalName,
57 Reference<XPropertySet> & rPropSet)
58 : XMLIndexSourceBaseContext(rImport, nPrfx, rLocalName, rPropSet, sal_True)
59 , sCreateFromMarks(sAPI_CreateFromMarks)
60 , sLevel(sAPI_Level)
61 , sCreateFromOutline(sAPI_CreateFromOutline)
62 , sCreateFromLevelParagraphStyles(sAPI_CreateFromLevelParagraphStyles)
63 // use all chapters by default
64 , nOutlineLevel(rImport.GetTextImport()->GetChapterNumbering()->getCount())
65 , bUseOutline(sal_True)
66 , bUseMarks(sal_True)
67 , bUseParagraphStyles(sal_False)
71 XMLIndexTOCSourceContext::~XMLIndexTOCSourceContext()
75 void XMLIndexTOCSourceContext::ProcessAttribute(
76 enum IndexSourceParamEnum eParam,
77 const OUString& rValue)
79 switch (eParam)
81 case XML_TOK_INDEXSOURCE_OUTLINE_LEVEL:
82 if ( IsXMLToken( rValue, XML_NONE ) )
84 // #104651# use OUTLINE_LEVEL and USE_OUTLINE_LEVEL instead of
85 // OUTLINE_LEVEL with values none|1..10. For backwards
86 // compatibility, 'none' must still be read.
87 bUseOutline = sal_False;
89 else
91 sal_Int32 nTmp;
92 if (::sax::Converter::convertNumber(
93 nTmp, rValue, 1, GetImport().GetTextImport()->
94 GetChapterNumbering()->getCount()))
96 bUseOutline = sal_True;
97 nOutlineLevel = nTmp;
100 break;
102 case XML_TOK_INDEXSOURCE_USE_OUTLINE_LEVEL:
104 bool bTmp(false);
105 if (::sax::Converter::convertBool(bTmp, rValue))
107 bUseOutline = bTmp;
109 break;
113 case XML_TOK_INDEXSOURCE_USE_INDEX_MARKS:
115 bool bTmp(false);
116 if (::sax::Converter::convertBool(bTmp, rValue))
118 bUseMarks = bTmp;
120 break;
123 case XML_TOK_INDEXSOURCE_USE_INDEX_SOURCE_STYLES:
125 bool bTmp(false);
126 if (::sax::Converter::convertBool(bTmp, rValue))
128 bUseParagraphStyles = bTmp;
130 break;
133 default:
134 // default: ask superclass
135 XMLIndexSourceBaseContext::ProcessAttribute(eParam, rValue);
136 break;
140 void XMLIndexTOCSourceContext::EndElement()
142 Any aAny;
144 aAny.setValue(&bUseMarks, ::getBooleanCppuType());
145 rIndexPropertySet->setPropertyValue(sCreateFromMarks, aAny);
147 aAny.setValue(&bUseOutline, ::getBooleanCppuType());
148 rIndexPropertySet->setPropertyValue(sCreateFromOutline, aAny);
150 aAny.setValue(&bUseParagraphStyles, ::getBooleanCppuType());
151 rIndexPropertySet->setPropertyValue(sCreateFromLevelParagraphStyles, aAny);
153 aAny <<= (sal_Int16)nOutlineLevel;
154 rIndexPropertySet->setPropertyValue(sLevel, aAny);
156 // process common attributes
157 XMLIndexSourceBaseContext::EndElement();
161 SvXMLImportContext* XMLIndexTOCSourceContext::CreateChildContext(
162 sal_uInt16 nPrefix,
163 const OUString& rLocalName,
164 const Reference<XAttributeList> & xAttrList )
166 if ( (XML_NAMESPACE_TEXT == nPrefix) &&
167 IsXMLToken(rLocalName, XML_TABLE_OF_CONTENT_ENTRY_TEMPLATE) )
169 return new XMLIndexTemplateContext(GetImport(), rIndexPropertySet,
170 nPrefix, rLocalName,
171 aSvLevelNameTOCMap,
172 XML_OUTLINE_LEVEL,
173 aLevelStylePropNameTOCMap,
174 aAllowedTokenTypesTOC, sal_True );
176 else
178 return XMLIndexSourceBaseContext::CreateChildContext(nPrefix,
179 rLocalName,
180 xAttrList);
184 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */