40 lines
766 B
C++
40 lines
766 B
C++
#ifndef DERREPRFBR2013WINDOW_H
|
|
#define DERREPRFBR2013WINDOW_H
|
|
|
|
#include <QWidget>
|
|
#include "derrep2013qplot.h"
|
|
|
|
namespace Ui {
|
|
class DerRepRFBR2013window;
|
|
}
|
|
|
|
class DerRepRFBR2013window : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit DerRepRFBR2013window(QWidget *parent = 0);
|
|
~DerRepRFBR2013window();
|
|
void setParametersSettings();
|
|
|
|
public slots:
|
|
void startDraw();
|
|
|
|
signals:
|
|
void drawGraph(QCustomPlot *cPlot);
|
|
|
|
private slots:
|
|
void on_pop_comboBox_currentIndexChanged(int index);
|
|
|
|
void on_split_pushButton_clicked();
|
|
|
|
void on_evol_pushButton_clicked();
|
|
|
|
private:
|
|
Ui::DerRepRFBR2013window *ui;
|
|
DerRep2013QPlot derRep2013Qplot;
|
|
int editText_flag;
|
|
};
|
|
|
|
#endif // DERREPRFBR2013WINDOW_H
|