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

0001 /***************************************************************************
0002     File             : XYSmoothCurveDock.h
0003     Project          : LabPlot
0004     --------------------------------------------------------------------
0005     Copyright        : (C) 2016 Stefan Gerlach (stefan.gerlach@uni.kn)
0006     Description      : widget for editing properties of smooth 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 XYSMOOTHCURVEDOCK_H
0030 #define XYSMOOTHCURVEDOCK_H
0031 
0032 #include "kdefrontend/dockwidgets/XYCurveDock.h"
0033 #include "backend/worksheet/plots/cartesian/XYSmoothCurve.h"
0034 #include "ui_xysmoothcurvedockgeneraltab.h"
0035 
0036 class TreeViewComboBox;
0037 
0038 class XYSmoothCurveDock: public XYCurveDock {
0039     Q_OBJECT
0040 
0041 public:
0042     explicit XYSmoothCurveDock(QWidget *parent);
0043     void setCurves(QList<XYCurve*>);
0044     void setupGeneral() override;
0045 
0046 private:
0047     void initGeneralTab() override;
0048     void showSmoothResult();
0049 
0050     Ui::XYSmoothCurveDockGeneralTab uiGeneralTab;
0051     TreeViewComboBox* cbDataSourceCurve{nullptr};
0052     TreeViewComboBox* cbXDataColumn{nullptr};
0053     TreeViewComboBox* cbYDataColumn{nullptr};
0054 
0055     XYSmoothCurve* m_smoothCurve{nullptr};
0056     XYSmoothCurve::SmoothData m_smoothData;
0057     bool m_dateTimeRange{false};
0058 
0059 protected:
0060     void setModel() override;
0061 
0062 private slots:
0063     //SLOTs for changes triggered in XYSmoothCurveDock
0064     //general tab
0065     void dataSourceTypeChanged(int);
0066     void dataSourceCurveChanged(const QModelIndex&);
0067     void xDataColumnChanged(const QModelIndex&);
0068     void yDataColumnChanged(const QModelIndex&);
0069     void autoRangeChanged();
0070     void xRangeMinChanged(double);
0071     void xRangeMaxChanged(double);
0072     void xRangeMinDateTimeChanged(const QDateTime&);
0073     void xRangeMaxDateTimeChanged(const QDateTime&);
0074     void typeChanged(int);
0075     void pointsChanged(int);
0076     void weightChanged(int);
0077     void percentileChanged(double);
0078     void orderChanged(int);
0079     void modeChanged(int);
0080     void valueChanged();
0081 
0082     void recalculateClicked();
0083     void enableRecalculate() const;
0084 
0085     //SLOTs for changes triggered in XYCurve
0086     //General-Tab
0087     void curveDescriptionChanged(const AbstractAspect*);
0088     void curveDataSourceTypeChanged(XYAnalysisCurve::DataSourceType);
0089     void curveDataSourceCurveChanged(const XYCurve*);
0090     void curveXDataColumnChanged(const AbstractColumn*);
0091     void curveYDataColumnChanged(const AbstractColumn*);
0092     void curveSmoothDataChanged(const XYSmoothCurve::SmoothData&);
0093     void dataChanged();
0094     void curveVisibilityChanged(bool);
0095 };
0096 
0097 #endif