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

0001 /***************************************************************************
0002     File             : XYFourierTransformCurveDock.h
0003     Project          : LabPlot
0004     --------------------------------------------------------------------
0005     Copyright        : (C) 2016 Stefan Gerlach (stefan.gerlach@uni.kn)
0006     Description      : widget for editing properties of Fourier transform 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 XYFOURIERTRANSFORMCURVEDOCK_H
0030 #define XYFOURIERTRANSFORMCURVEDOCK_H
0031 
0032 #include "kdefrontend/dockwidgets/XYCurveDock.h"
0033 #include "backend/worksheet/plots/cartesian/XYFourierTransformCurve.h"
0034 #include "ui_xyfouriertransformcurvedockgeneraltab.h"
0035 
0036 class TreeViewComboBox;
0037 
0038 class XYFourierTransformCurveDock: public XYCurveDock {
0039     Q_OBJECT
0040 
0041 public:
0042     explicit XYFourierTransformCurveDock(QWidget *parent);
0043     void setCurves(QList<XYCurve*>);
0044     void setupGeneral() override;
0045 
0046 private:
0047     void initGeneralTab() override;
0048     void showTransformResult();
0049 
0050     Ui::XYFourierTransformCurveDockGeneralTab uiGeneralTab;
0051     TreeViewComboBox* cbXDataColumn{nullptr};
0052     TreeViewComboBox* cbYDataColumn{nullptr};
0053 
0054     XYFourierTransformCurve* m_transformCurve{nullptr};
0055     XYFourierTransformCurve::TransformData m_transformData;
0056 
0057 protected:
0058     void setModel() override;
0059 
0060 private slots:
0061     //SLOTs for changes triggered in XYFourierTransformCurveDock
0062     //general tab
0063     void xDataColumnChanged(const QModelIndex&);
0064     void yDataColumnChanged(const QModelIndex&);
0065     void autoRangeChanged();
0066     void xRangeMinChanged();
0067     void xRangeMaxChanged();
0068     void windowTypeChanged();
0069     void typeChanged();
0070     void twoSidedChanged();
0071     void shiftedChanged();
0072     void xScaleChanged();
0073 
0074 //  void showOptions();
0075     void recalculateClicked();
0076 
0077     void enableRecalculate() const;
0078 
0079     //SLOTs for changes triggered in XYCurve
0080     //General-Tab
0081     void curveDescriptionChanged(const AbstractAspect*);
0082     void curveXDataColumnChanged(const AbstractColumn*);
0083     void curveYDataColumnChanged(const AbstractColumn*);
0084     void curveTransformDataChanged(const XYFourierTransformCurve::TransformData&);
0085     void dataChanged();
0086     void curveVisibilityChanged(bool);
0087 };
0088 
0089 #endif