40 lines
728 B
C++
40 lines
728 B
C++
#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
|