LibreOffice Module sc (master) 1
XMLCellRangeSourceContext.cxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19
21
23
24#include "xmlimprt.hxx"
26#include <xmloff/xmltoken.hxx>
27
28using namespace ::com::sun::star;
29using namespace xmloff::token;
30
32 nColumns( 0 ),
33 nRows( 0 ),
34 nRefresh( 0 )
35{
36}
37
39 ScXMLImport& rImport,
41 ScMyImpCellRangeSource* pCellRangeSource ) :
42 ScXMLImportContext( rImport )
43{
44 if ( !rAttrList.is() )
45 return;
46
47 for (auto &aIter : *rAttrList)
48 {
49 switch (aIter.getToken())
50 {
51 case XML_ELEMENT( TABLE, XML_NAME ):
52 pCellRangeSource->sSourceStr = aIter.toString();
53 break;
55 pCellRangeSource->sFilterName = aIter.toString();
56 break;
58 pCellRangeSource->sFilterOptions = aIter.toString();
59 break;
60 case XML_ELEMENT( XLINK, XML_HREF ):
61 pCellRangeSource->sURL = GetScImport().GetAbsoluteReference(aIter.toString());
62 break;
64 {
65 sal_Int32 nValue;
66 if (::sax::Converter::convertNumber( nValue, aIter.toView(), 1 ))
67 pCellRangeSource->nColumns = nValue;
68 else
69 pCellRangeSource->nColumns = 1;
70 }
71 break;
73 {
74 sal_Int32 nValue;
75 if (::sax::Converter::convertNumber( nValue, aIter.toView(), 1 ))
76 pCellRangeSource->nRows = nValue;
77 else
78 pCellRangeSource->nRows = 1;
79 }
80 break;
82 {
83 double fTime;
84 if (::sax::Converter::convertDuration( fTime, aIter.toView() ))
85 pCellRangeSource->nRefresh = std::max( static_cast<sal_Int32>(fTime * 86400.0), sal_Int32(0) );
86 }
87 break;
88 }
89 }
90}
91
93{
94}
95
96/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
ScXMLCellRangeSourceContext(ScXMLImport &rImport, const rtl::Reference< sax_fastparser::FastAttributeList > &rAttrList, ScMyImpCellRangeSource *pCellRangeSource)
This class exists only to provide GetScImport() to its derived classes.
ScXMLImport & GetScImport()
static void convertDuration(OUStringBuffer &rBuffer, const double fTime)
static bool convertNumber(sal_Int32 &rValue, std::u16string_view aString, sal_Int32 nMin=SAL_MIN_INT32, sal_Int32 nMax=SAL_MAX_INT32)
sal_Int16 nValue
TABLE
XML_LAST_ROW_SPANNED
XML_HREF
XML_FILTER_OPTIONS
XML_REFRESH_DELAY
XML_NAME
XML_LAST_COLUMN_SPANNED
XML_FILTER_NAME
#define XML_ELEMENT(prefix, name)