File indexing completed on 2024-05-12 15:28:09

0001 /***************************************************************************
0002     File             : XYIntegrationCurveDock.h
0003     Project          : LabPlot
0004     --------------------------------------------------------------------
0005     Copyright        : (C) 2016 Stefan Gerlach (stefan.gerlach@uni.kn)
0006     Description      : widget for editing properties of integration curves
0007 
0008  ***************************************************************************/
0009 
0010 /***************************************************************************
0011  *                                                                         *
0012  *  This program is free software; you can redistribute it and/or modify   *
0013  *  it under the terms of the GNU General Public License as published by   *
0014  *  the Free Software Foundation; either version 2 of the License, or      *
0015  *  (at your option) any later version.                                    *
0016  *                                                                         *
0017  *  This program is distributed in the hope that it will be useful,        *
0018  *  but WITHOUT ANY WARRANTY; without even the implied warranty of         *
0019  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the          *
0020  *  GNU General Public License for more details.                           *
0021  *                                                                         *
0022  *   You should have received a copy of the GNU General Public License     *
0023  *   along with this program; if not, write to the Free Software           *
0024  *   Foundation, Inc., 51 Franklin Street, Fifth Floor,                    *
0025  *   Boston, MA  02110-1301  USA                                           *
0026  *                                                                         *
0027  ***************************************************************************/
0028 
0029 #ifndef XYINTEGRATIONCURVEDOCK_H
0030 #define XYINTEGRATIONCURVEDOCK_H
0031 
0032 #include "kdefrontend/dockwidgets/XYCurveDock.h"
0033 #include "backend/worksheet/plots/cartesian/XYIntegrationCurve.h"
0034 #include "ui_xyintegrationcurvedockgeneraltab.h"
0035 
0036 class TreeViewComboBox;
0037 
0038 class XYIntegrationCurveDock: public XYCurveDock {
0039     Q_OBJECT
0040 
0041 public:
0042     explicit XYIntegrationCurveDock(QWidget*);
0043     void setCurves(QList<XYCurve*>);
0044     void setupGeneral() override;
0045 
0046 private:
0047     void initGeneralTab() override;
0048     void showIntegrationResult();
0049     void updateSettings(const AbstractColumn*);
0050 
0051     Ui::XYIntegrationCurveDockGeneralTab uiGeneralTab;
0052     TreeViewComboBox* cbDataSourceCurve{nullptr};
0053     TreeViewComboBox* cbXDataColumn{nullptr};
0054     TreeViewComboBox* cbYDataColumn{nullptr};
0055 
0056     XYIntegrationCurve* m_integrationCurve{nullptr};
0057     XYIntegrationCurve::IntegrationData m_integrationData;
0058     bool m_dateTimeRange{false};
0059 
0060 protected:
0061     void setModel() override;
0062 
0063 private slots:
0064     //SLOTs for changes triggered in XYIntegrationCurveDock
0065     //general tab
0066     void dataSourceTypeChanged(int);
0067     void dataSourceCurveChanged(const QModelIndex&);
0068     void xDataColumnChanged(const QModelIndex&);
0069     void yDataColumnChanged(const QModelIndex&);
0070     void autoRangeChanged();
0071     void xRangeMinChanged(double);
0072     void xRangeMaxChanged(double);
0073     void xRangeMinDateTimeChanged(const QDateTime&);
0074     void xRangeMaxDateTimeChanged(const QDateTime&);
0075     void methodChanged(int);
0076     void absoluteChanged();
0077 
0078     void recalculateClicked();
0079     void enableRecalculate() const;
0080 
0081     //SLOTs for changes triggered in XYCurve
0082     //General-Tab
0083     void curveDescriptionChanged(const AbstractAspect*);
0084     void curveDataSourceTypeChanged(XYAnalysisCurve::DataSourceType);
0085     void curveDataSourceCurveChanged(const XYCurve*);
0086     void curveXDataColumnChanged(const AbstractColumn*);
0087     void curveYDataColumnChanged(const AbstractColumn*);
0088     void curveIntegrationDataChanged(const XYIntegrationCurve::IntegrationData&);
0089     void dataChanged();
0090     void curveVisibilityChanged(bool);
0091 };
0092 
0093 #endif