18 #include <QDockWidget> 20 #include <QMainWindow> 22 #include <core/darwin.h> 23 #include <core/evolution.h> 24 #include <core/universe.h> 34 class MainWindow :
public QMainWindow {
39 ~MainWindow()
override;
46 void closeEvent(QCloseEvent* event)
override;
50 void on_action_new_triggered();
51 void on_action_open_triggered();
53 void on_action_run_triggered();
54 void on_action_pause_triggered();
55 void on_action_reset_triggered();
58 void on_action_new_experiment_triggered();
59 void on_action_open_experiment_triggered();
60 void on_action_branch_experiment_triggered();
62 void on_action_new_sandbox_triggered();
63 void on_sandbox_tabs_tabCloseRequested(
int index);
66 void dockWindow(
const char* name,
68 Qt::DockWidgetAreas allowed_areas,
69 Qt::DockWidgetArea area,
70 bool permanent =
false);
72 bool confirmationDialog(
const QString& title,
const QString& text);
73 bool confirmEndOfExperiment();
75 void createExperimentWindows();
77 void reopenLastUniverse();
78 void universeSwitched();
80 bool resetExperiment();
81 void closeExperiment();
82 void nextBatchedRun();
84 void saveGeometry()
const;
85 void restoreGeometry();
87 void saveLayout()
const;
90 void evolutionEvent(uint32_t event_flags);
95 QLabel* status_label_ =
nullptr;
96 QLabel* batch_label_ =
nullptr;
97 vector<QDockWidget*> experiment_windows_;
99 unique_ptr<darwin::Universe> universe_;
100 shared_ptr<darwin::Experiment> experiment_;
103 bool active_experiment_ =
false;
107 int batch_total_runs_ = 0;
108 int batch_current_run_ = 0;
Definition: evolution_window.h:22
Settings for an evolution experiment run.
Definition: evolution.h:104