LibreOffice Module oox (master) 1
datasourcecontext.hxx
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
20#ifndef INCLUDED_OOX_DRAWINGML_CHART_DATASOURCECONTEXT_HXX
21#define INCLUDED_OOX_DRAWINGML_CHART_DATASOURCECONTEXT_HXX
22
23#include <memory>
25
27
28namespace oox::drawingml::chart {
29
30
31struct DataSequenceModel;
32
34
35
39{
40public:
41 explicit DoubleSequenceContext( ::oox::core::ContextHandler2Helper& rParent, DataSequenceModel& rModel );
42 virtual ~DoubleSequenceContext() override;
43
44 virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
45 virtual void onCharacters( const OUString& rChars ) override;
46
47private:
49
50private:
51 sal_Int32 mnPtIndex;
52 std::unique_ptr<SvNumberFormatter>
54};
55
56
61{
62public:
63 explicit StringSequenceContext( ::oox::core::ContextHandler2Helper& rParent, DataSequenceModel& rModel );
64 virtual ~StringSequenceContext() override;
65
66 virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
67 virtual void onCharacters( const OUString& rChars ) override;
68
69private:
70 sal_Int32 mnPtIndex;
71 bool mbReadC15;
72};
73
74
75struct DataSourceModel;
76
80class DataSourceContext final : public ContextBase< DataSourceModel >
81{
82public:
83 explicit DataSourceContext( ::oox::core::ContextHandler2Helper& rParent, DataSourceModel& rModel );
84 virtual ~DataSourceContext() override;
85
86 virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
87};
88
89
90} // namespace oox::drawingml::chart
91
92#endif
93
94/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Provides access to attribute values of an element.
Handler for a data source context (c:bubbleSize, c:cat, c:minus, c:plus, c:val, c:xVal,...
DataSourceContext(::oox::core::ContextHandler2Helper &rParent, DataSourceModel &rModel)
virtual ::oox::core::ContextHandlerRef onCreateContext(sal_Int32 nElement, const AttributeList &rAttribs) override
Handler for a double sequence context (c:numLit, c:numRef elements).
virtual ::oox::core::ContextHandlerRef onCreateContext(sal_Int32 nElement, const AttributeList &rAttribs) override
std::unique_ptr< SvNumberFormatter > mpNumberFormatter
Current data point index.
DoubleSequenceContext(::oox::core::ContextHandler2Helper &rParent, DataSequenceModel &rModel)
virtual void onCharacters(const OUString &rChars) override
Handler for a string sequence context (c:multiLvlStrRef, c:strLit, c:strRef elements).
virtual ::oox::core::ContextHandlerRef onCreateContext(sal_Int32 nElement, const AttributeList &rAttribs) override
StringSequenceContext(::oox::core::ContextHandler2Helper &rParent, DataSequenceModel &rModel)
virtual void onCharacters(const OUString &rChars) override
::rtl::Reference< ContextHandler > ContextHandlerRef
ContextBase< DataSequenceModel > DataSequenceContextBase