Version 6.4.0.0.beta1, tag libreoffice-6.4.0.0.beta1
[LibreOffice.git] / oox / inc / drawingml / chart / datasourcecontext.hxx
blob95ddd1f6381d8d426dae75bdd4470c91967aa1e3
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 #ifndef INCLUDED_OOX_DRAWINGML_CHART_DATASOURCECONTEXT_HXX
21 #define INCLUDED_OOX_DRAWINGML_CHART_DATASOURCECONTEXT_HXX
23 #include <memory>
24 #include <drawingml/chart/chartcontextbase.hxx>
25 #include <svl/zforlist.hxx>
27 namespace oox {
28 namespace drawingml {
29 namespace chart {
32 struct DataSequenceModel;
34 typedef ContextBase< DataSequenceModel > DataSequenceContextBase;
37 /** Handler for a double sequence context (c:numLit, c:numRef elements).
39 class DoubleSequenceContext : public DataSequenceContextBase
41 public:
42 explicit DoubleSequenceContext( ::oox::core::ContextHandler2Helper& rParent, DataSequenceModel& rModel );
43 virtual ~DoubleSequenceContext() override;
45 virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
46 virtual void onCharacters( const OUString& rChars ) override;
48 private:
49 SvNumberFormatter* getNumberFormatter();
51 private:
52 sal_Int32 mnPtIndex; /// Current data point index.
53 std::unique_ptr<SvNumberFormatter>
54 mpNumberFormatter;
58 /** Handler for a string sequence context (c:multiLvlStrRef, c:strLit,
59 c:strRef elements).
61 class StringSequenceContext : public DataSequenceContextBase
63 public:
64 explicit StringSequenceContext( ::oox::core::ContextHandler2Helper& rParent, DataSequenceModel& rModel );
65 virtual ~StringSequenceContext() override;
67 virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
68 virtual void onCharacters( const OUString& rChars ) override;
70 private:
71 sal_Int32 mnPtIndex; /// Current data point index.
75 struct DataSourceModel;
77 /** Handler for a data source context (c:bubbleSize, c:cat, c:minus, c:plus,
78 c:val, c:xVal, c:yVal elements).
80 class DataSourceContext : public ContextBase< DataSourceModel >
82 public:
83 explicit DataSourceContext( ::oox::core::ContextHandler2Helper& rParent, DataSourceModel& rModel );
84 virtual ~DataSourceContext() override;
86 virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
90 } // namespace chart
91 } // namespace drawingml
92 } // namespace oox
94 #endif
96 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */