fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / oox / inc / drawingml / chart / datasourcecontext.hxx
blob82aa38e2f2ac70d6209f8423c16d9e317eada27b
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 <drawingml/chart/chartcontextbase.hxx>
25 namespace oox {
26 namespace drawingml {
27 namespace chart {
31 struct DataSequenceModel;
33 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();
45 virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) SAL_OVERRIDE;
46 virtual void onCharacters( const OUString& rChars ) SAL_OVERRIDE;
48 private:
49 sal_Int32 mnPtIndex; /// Current data point index.
54 /** Handler for a string sequence context (c:multiLvlStrRef, c:strLit,
55 c:strRef elements).
57 class StringSequenceContext : public DataSequenceContextBase
59 public:
60 explicit StringSequenceContext( ::oox::core::ContextHandler2Helper& rParent, DataSequenceModel& rModel );
61 virtual ~StringSequenceContext();
63 virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) SAL_OVERRIDE;
64 virtual void onCharacters( const OUString& rChars ) SAL_OVERRIDE;
66 private:
67 sal_Int32 mnPtIndex; /// Current data point index.
72 struct DataSourceModel;
74 /** Handler for a data source context (c:bubbleSize, c:cat, c:minus, c:plus,
75 c:val, c:xVal, c:yVal elements).
77 class DataSourceContext : public ContextBase< DataSourceModel >
79 public:
80 explicit DataSourceContext( ::oox::core::ContextHandler2Helper& rParent, DataSourceModel& rModel );
81 virtual ~DataSourceContext();
83 virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) SAL_OVERRIDE;
88 } // namespace chart
89 } // namespace drawingml
90 } // namespace oox
92 #endif
94 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */