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 .
21 #include <com/sun/star/awt/Size.hpp>
22 #include <xmloff/xmlictxt.hxx>
23 #include <xmloff/SchXMLImportHelper.hxx>
25 #include "transporttypes.hxx"
27 class SchXMLRegressionCurveObjectContext
: public SvXMLImportContext
30 SchXMLRegressionCurveObjectContext(
31 SchXMLImportHelper
& rImportHelper
,
33 std::vector
< RegressionStyle
>& rRegressionStyleVector
,
34 css::uno::Reference
< css::chart2::XDataSeries
> xSeries
,
35 const css::awt::Size
& rChartSize
);
37 virtual ~SchXMLRegressionCurveObjectContext() override
;
39 virtual css::uno::Reference
< css::xml::sax::XFastContextHandler
> SAL_CALL
createFastChildContext(
41 const css::uno::Reference
< css::xml::sax::XFastAttributeList
>& AttrList
) override
;
42 virtual void SAL_CALL
startFastElement(
44 const css::uno::Reference
< css::xml::sax::XFastAttributeList
>& xAttrList
) override
;
48 SchXMLImportHelper
& mrImportHelper
;
49 css::uno::Reference
<css::chart2::XDataSeries
> mxSeries
;
50 css::awt::Size maChartSize
;
51 std::vector
< RegressionStyle
>& mrRegressionStyleVector
;
54 class SchXMLEquationContext
: public SvXMLImportContext
57 SchXMLEquationContext(
58 SchXMLImportHelper
& rImportHelper
,
60 const css::awt::Size
& rChartSize
,
61 RegressionStyle
& rRegressionStyle
);
63 virtual ~SchXMLEquationContext() override
;
65 virtual void SAL_CALL
startFastElement (sal_Int32 Element
,
66 const css::uno::Reference
< css::xml::sax::XFastAttributeList
>& Attribs
) override
;
69 SchXMLImportHelper
& mrImportHelper
;
70 RegressionStyle
& mrRegressionStyle
;
71 css::awt::Size maChartSize
;
74 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */