summaryrefslogtreecommitdiffstats
path: root/chart2/source/tools
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2022-01-30 08:34:22 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2022-01-30 16:02:18 +0100
commit026e2f437e969d75209ed05211e7f02349035b98 (patch)
tree3a567141feaf520acca03b473e571e6502dd3fa1 /chart2/source/tools
parentResolves: tdf#147013 transform the control point positions too (diff)
downloadcore-026e2f437e969d75209ed05211e7f02349035b98.tar.gz
core-026e2f437e969d75209ed05211e7f02349035b98.zip
use more concrete types in chart2, RegressionCurveModel
Change-Id: Ib4a5198f425577307ba437c73c61408b88d83dc1 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129160 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'chart2/source/tools')
-rw-r--r--chart2/source/tools/RegressionCurveHelper.cxx2
-rw-r--r--chart2/source/tools/RegressionCurveModel.cxx2
-rw-r--r--chart2/source/tools/RegressionCurveModel.hxx240
3 files changed, 2 insertions, 242 deletions
diff --git a/chart2/source/tools/RegressionCurveHelper.cxx b/chart2/source/tools/RegressionCurveHelper.cxx
index 00e846105c7f..77ffcf2391a5 100644
--- a/chart2/source/tools/RegressionCurveHelper.cxx
+++ b/chart2/source/tools/RegressionCurveHelper.cxx
@@ -26,7 +26,7 @@
#include <ExponentialRegressionCurveCalculator.hxx>
#include <PotentialRegressionCurveCalculator.hxx>
#include <CommonConverters.hxx>
-#include "RegressionCurveModel.hxx"
+#include <RegressionCurveModel.hxx>
#include <ChartTypeHelper.hxx>
#include <ChartType.hxx>
#include <ChartModel.hxx>
diff --git a/chart2/source/tools/RegressionCurveModel.cxx b/chart2/source/tools/RegressionCurveModel.cxx
index d6cef7c2c8d8..8ea03805865c 100644
--- a/chart2/source/tools/RegressionCurveModel.cxx
+++ b/chart2/source/tools/RegressionCurveModel.cxx
@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "RegressionCurveModel.hxx"
+#include <RegressionCurveModel.hxx>
#include <LinePropertiesHelper.hxx>
#include <RegressionCurveHelper.hxx>
#include "RegressionEquation.hxx"
diff --git a/chart2/source/tools/RegressionCurveModel.hxx b/chart2/source/tools/RegressionCurveModel.hxx
deleted file mode 100644
index 73c2439f01e7..000000000000
--- a/chart2/source/tools/RegressionCurveModel.hxx
+++ /dev/null
@@ -1,240 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-#pragma once
-
-#include <OPropertySet.hxx>
-
-#include <cppuhelper/basemutex.hxx>
-#include <cppuhelper/implbase.hxx>
-#include <comphelper/uno3.hxx>
-
-#include <com/sun/star/chart2/XRegressionCurve.hpp>
-
-#include <com/sun/star/lang/XServiceInfo.hpp>
-#include <com/sun/star/lang/XServiceName.hpp>
-#include <com/sun/star/util/XCloneable.hpp>
-#include <ModifyListenerHelper.hxx>
-
-namespace chart
-{
-
-namespace impl
-{
-typedef ::cppu::WeakImplHelper<
- css::lang::XServiceInfo,
- css::lang::XServiceName,
- css::chart2::XRegressionCurve,
- css::util::XCloneable,
- css::util::XModifyBroadcaster,
- css::util::XModifyListener >
- RegressionCurveModel_Base;
-}
-
-class RegressionCurveModel :
- public cppu::BaseMutex,
- public impl::RegressionCurveModel_Base,
- public ::property::OPropertySet
-{
-public:
- enum tCurveType
- {
- CURVE_TYPE_MEAN_VALUE,
- CURVE_TYPE_LINEAR,
- CURVE_TYPE_LOGARITHM,
- CURVE_TYPE_EXPONENTIAL,
- CURVE_TYPE_POWER,
- CURVE_TYPE_POLYNOMIAL,
- CURVE_TYPE_MOVING_AVERAGE
- };
-
- RegressionCurveModel( tCurveType eCurveType );
- RegressionCurveModel( const RegressionCurveModel & rOther );
- virtual ~RegressionCurveModel() override;
-
- /// merge XInterface implementations
- DECLARE_XINTERFACE()
- /// merge XTypeProvider implementations
- DECLARE_XTYPEPROVIDER()
-
-protected:
- // ____ OPropertySet ____
- virtual void GetDefaultValue( sal_Int32 nHandle, css::uno::Any& rAny ) const override;
-
- // ____ OPropertySet ____
- virtual ::cppu::IPropertyArrayHelper & SAL_CALL getInfoHelper() override;
-
- // ____ XPropertySet ____
- virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL
- getPropertySetInfo() override;
-
- // ____ XRegressionCurve ____
- virtual css::uno::Reference< css::chart2::XRegressionCurveCalculator > SAL_CALL getCalculator() override;
- virtual css::uno::Reference< css::beans::XPropertySet > SAL_CALL getEquationProperties() override;
- virtual void SAL_CALL setEquationProperties(
- const css::uno::Reference< css::beans::XPropertySet >& xEquationProperties ) override;
-
- // ____ XServiceName ____
- virtual OUString SAL_CALL getServiceName() override;
-
- // ____ XModifyBroadcaster ____
- virtual void SAL_CALL addModifyListener(
- const css::uno::Reference< css::util::XModifyListener >& aListener ) override;
- virtual void SAL_CALL removeModifyListener(
- const css::uno::Reference< css::util::XModifyListener >& aListener ) override;
-
- // ____ XModifyListener ____
- virtual void SAL_CALL modified(
- const css::lang::EventObject& aEvent ) override;
-
- // ____ XEventListener (base of XModifyListener) ____
- virtual void SAL_CALL disposing(
- const css::lang::EventObject& Source ) override;
-
- using ::cppu::OPropertySetHelper::disposing;
-
- // ____ OPropertySet ____
- virtual void firePropertyChangeEvent() override;
-
- void fireModifyEvent();
-
-private:
- const tCurveType m_eRegressionCurveType;
-
- rtl::Reference<ModifyEventForwarder> m_xModifyEventForwarder;
- css::uno::Reference< css::beans::XPropertySet > m_xEquationProperties;
-};
-
-// implementations for factory instantiation
-
-class MeanValueRegressionCurve : public RegressionCurveModel
-{
-public:
- explicit MeanValueRegressionCurve();
- explicit MeanValueRegressionCurve(
- const MeanValueRegressionCurve & rOther );
- virtual ~MeanValueRegressionCurve() override;
-
- // ____ XCloneable ____
- virtual css::uno::Reference< css::util::XCloneable > SAL_CALL createClone() override;
-
- /// XServiceInfo declarations
- virtual OUString SAL_CALL getImplementationName() override;
- virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
- virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
-};
-
-class LinearRegressionCurve : public RegressionCurveModel
-{
-public:
- explicit LinearRegressionCurve();
- explicit LinearRegressionCurve( const LinearRegressionCurve & rOther );
- virtual ~LinearRegressionCurve() override;
-
- // ____ XCloneable ____
- virtual css::uno::Reference< css::util::XCloneable > SAL_CALL createClone() override;
-
- /// XServiceInfo declarations
- virtual OUString SAL_CALL getImplementationName() override;
- virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
- virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
-};
-
-class LogarithmicRegressionCurve : public RegressionCurveModel
-{
-public:
- explicit LogarithmicRegressionCurve();
- explicit LogarithmicRegressionCurve( const LogarithmicRegressionCurve & rOther );
- virtual ~LogarithmicRegressionCurve() override;
-
- // ____ XCloneable ____
- virtual css::uno::Reference< css::util::XCloneable > SAL_CALL createClone() override;
-
- /// XServiceInfo declarations
- virtual OUString SAL_CALL getImplementationName() override;
- virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
- virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
-};
-
-class ExponentialRegressionCurve : public RegressionCurveModel
-{
-public:
- explicit ExponentialRegressionCurve();
- explicit ExponentialRegressionCurve( const ExponentialRegressionCurve & rOther );
- virtual ~ExponentialRegressionCurve() override;
-
- // ____ XCloneable ____
- virtual css::uno::Reference< css::util::XCloneable > SAL_CALL createClone() override;
-
- /// XServiceInfo declarations
- virtual OUString SAL_CALL getImplementationName() override;
- virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
- virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
-};
-
-class PotentialRegressionCurve : public RegressionCurveModel
-{
-public:
- explicit PotentialRegressionCurve();
- explicit PotentialRegressionCurve( const PotentialRegressionCurve & rOther );
- virtual ~PotentialRegressionCurve() override;
-
- // ____ XCloneable ____
- virtual css::uno::Reference< css::util::XCloneable > SAL_CALL createClone() override;
-
- /// XServiceInfo declarations
- virtual OUString SAL_CALL getImplementationName() override;
- virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
- virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
-};
-
-class PolynomialRegressionCurve : public RegressionCurveModel
-{
-public:
- explicit PolynomialRegressionCurve();
- explicit PolynomialRegressionCurve( const PolynomialRegressionCurve & rOther );
- virtual ~PolynomialRegressionCurve() override;
-
- // ____ XCloneable ____
- virtual css::uno::Reference< css::util::XCloneable > SAL_CALL createClone() override;
-
- /// XServiceInfo declarations
- virtual OUString SAL_CALL getImplementationName() override;
- virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
- virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
-};
-
-class MovingAverageRegressionCurve : public RegressionCurveModel
-{
-public:
- explicit MovingAverageRegressionCurve();
- explicit MovingAverageRegressionCurve( const MovingAverageRegressionCurve & rOther );
- virtual ~MovingAverageRegressionCurve() override;
-
- // ____ XCloneable ____
- virtual css::uno::Reference< css::util::XCloneable > SAL_CALL createClone() override;
-
- /// XServiceInfo declarations
- virtual OUString SAL_CALL getImplementationName() override;
- virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
- virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
-};
-
-} // namespace chart
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */