1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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>
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
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
;
49 sal_Int32 mnPtIndex
; /// Current data point index.
54 /** Handler for a string sequence context (c:multiLvlStrRef, c:strLit,
57 class StringSequenceContext
: public DataSequenceContextBase
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
;
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
>
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
;
89 } // namespace drawingml
94 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */