51 lines
1.0 KiB
C++
51 lines
1.0 KiB
C++
#ifndef DERREP2014WINDOW_H
|
|
#define DERREP2014WINDOW_H
|
|
|
|
#include <QWidget>
|
|
#include "derrep2014qplot.h"
|
|
#include "Kolch_Shind/qcustomplot.h"
|
|
#include "DEC-0.0/DerevyankoReport2014.h"
|
|
|
|
namespace Ui {
|
|
class DerRep2014Window;
|
|
}
|
|
|
|
class DerRep2014Window : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit DerRep2014Window(QWidget *parent = 0);
|
|
~DerRep2014Window();
|
|
void setParametersSettings();
|
|
|
|
public slots:
|
|
void startDefault();
|
|
void changeProgrBarVal(int iter);
|
|
|
|
signals:
|
|
void drawDefault(QCustomPlot *cPlot);
|
|
void drawDefaultSeparate(QCustomPlot *cPlot);
|
|
|
|
private slots:
|
|
void on_showGender_pushButton_clicked();
|
|
|
|
void on_evolution_pushButton_clicked();
|
|
|
|
void on_migration_pushButton_clicked();
|
|
|
|
void on_evol_migr_pushButton_clicked();
|
|
|
|
void on_pop_comboBox_currentIndexChanged(int index);
|
|
|
|
void on_saveStat_pushButton_clicked();
|
|
|
|
private:
|
|
Ui::DerRep2014Window *ui;
|
|
DerRep2014QPlot derRep2014Qplot;
|
|
bool graphFlag;
|
|
|
|
};
|
|
|
|
#endif // DERREP2014WINDOW_H
|