tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / oox / inc / drawingml / chart / datasourcecontext.hxx
blob7edb029eb336d4e0beace7b81e699a52502f534c
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>
26 class SvNumberFormatter;
28 namespace oox::drawingml::chart {
31 struct DataSequenceModel;
33 typedef ContextBase< DataSequenceModel > DataSequenceContextBase;
36 /** Handler for a double sequence context (c:numLit, c:numRef elements).
38 class DoubleSequenceContext final : public DataSequenceContextBase
40 public:
41 explicit DoubleSequenceContext( ::oox::core::ContextHandler2Helper& rParent, DataSequenceModel& rModel );
42 virtual ~DoubleSequenceContext() override;
44 virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
45 virtual void onCharacters( const OUString& rChars ) override;
47 private:
48 SvNumberFormatter* getNumberFormatter();
50 private:
51 sal_Int32 mnPtIndex; /// Current data point index.
52 std::unique_ptr<SvNumberFormatter>
53 mpNumberFormatter;
57 /** Handler for a string sequence context (c:multiLvlStrRef, c:strLit,
58 c:strRef elements).
60 class StringSequenceContext final : public DataSequenceContextBase
62 public:
63 explicit StringSequenceContext( ::oox::core::ContextHandler2Helper& rParent, DataSequenceModel& rModel );
64 virtual ~StringSequenceContext() override;
66 virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
67 virtual void onCharacters( const OUString& rChars ) override;
69 private:
70 sal_Int32 mnPtIndex; /// Current data point index.
71 bool mbReadC15; /// Allow reading extension tags data under c15 namespace.
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 final : 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 oox::drawingml::chart
92 #endif
94 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */