diff options
author | Clifford Wolf <clifford@clifford.at> | 2018-06-23 16:14:39 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2018-06-23 16:14:39 +0200 |
commit | 0ccd9febebdb7f2de700d116a8498f23de093e88 (patch) | |
tree | 094f717951a81fd91d01e3d776695629f354d089 /gui/ice40/mainwindow.h | |
parent | a40d9dc514b680538d0ffa99873974a15bff9e97 (diff) | |
parent | 1e8840b0f9400a1dc17ba6c7496314f82f0db2e1 (diff) | |
download | nextpnr-0ccd9febebdb7f2de700d116a8498f23de093e88.tar.gz nextpnr-0ccd9febebdb7f2de700d116a8498f23de093e88.tar.bz2 nextpnr-0ccd9febebdb7f2de700d116a8498f23de093e88.zip |
Merge branch 'master' of gitlab.com:SymbioticEDA/nextpnr
Diffstat (limited to 'gui/ice40/mainwindow.h')
-rw-r--r-- | gui/ice40/mainwindow.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gui/ice40/mainwindow.h b/gui/ice40/mainwindow.h index c0c4bef8..9857adf8 100644 --- a/gui/ice40/mainwindow.h +++ b/gui/ice40/mainwindow.h @@ -36,11 +36,20 @@ class MainWindow : public BaseMainWindow public:
void createMenu();
+ Q_SIGNALS:
+ void budget(double freq);
+ void place(bool timing_driven);
+
protected Q_SLOTS:
virtual void open();
virtual bool save();
+
+ void budget();
+ void place();
+
void loadfile_finished(bool status);
void pack_finished(bool status);
+ void budget_finish(bool status);
void place_finished(bool status);
void route_finished(bool status);
@@ -53,11 +62,14 @@ class MainWindow : public BaseMainWindow TaskManager *task;
QAction *actionPack;
+ QAction *actionAssignBudget;
QAction *actionPlace;
QAction *actionRoute;
QAction *actionPlay;
QAction *actionPause;
QAction *actionStop;
+
+ bool timing_driven;
};
NEXTPNR_NAMESPACE_END
|