Init version
This commit is contained in:
39
DEC_GUI/breedingwindow.h
Normal file
39
DEC_GUI/breedingwindow.h
Normal file
@@ -0,0 +1,39 @@
|
||||
#ifndef BREEDINGWINDOW_H
|
||||
#define BREEDINGWINDOW_H
|
||||
|
||||
#include <QWidget>
|
||||
#include <breedqplot.h>
|
||||
|
||||
namespace Ui {
|
||||
class BreedingWindow;
|
||||
}
|
||||
|
||||
class BreedingWindow : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit BreedingWindow(QWidget *parent = 0);
|
||||
~BreedingWindow();
|
||||
void setPopComboBoxes();
|
||||
|
||||
public slots:
|
||||
void startDraw(int ind);
|
||||
|
||||
signals:
|
||||
void drawGraph(QCustomPlot *cPlot, int ind);
|
||||
|
||||
private slots:
|
||||
void on_pop_comboBox_currentIndexChanged(int index);
|
||||
|
||||
void on_pop_comboBox_2_currentIndexChanged(int index);
|
||||
|
||||
void on_evol_pushButton_clicked();
|
||||
|
||||
private:
|
||||
Ui::BreedingWindow *ui;
|
||||
BreedQPlot breedQPlot;
|
||||
int plotFlag;
|
||||
};
|
||||
|
||||
#endif // BREEDINGWINDOW_H
|
||||
Reference in New Issue
Block a user