diff options
author | Miodrag Milanovic <mmicko@gmail.com> | 2020-01-05 13:51:12 +0100 |
---|---|---|
committer | Miodrag Milanovic <mmicko@gmail.com> | 2020-01-05 13:51:12 +0100 |
commit | 3f439c1ef2c1f4b7694d05be53117f0afe97cc17 (patch) | |
tree | af84b01b5c786b564a684170ec17b1a86ac5e283 /gui/basewindow.h | |
parent | abfe31d5d22a0ed1cc6ef32cf73fc1826b090b1c (diff) | |
download | nextpnr-3f439c1ef2c1f4b7694d05be53117f0afe97cc17.tar.gz nextpnr-3f439c1ef2c1f4b7694d05be53117f0afe97cc17.tar.bz2 nextpnr-3f439c1ef2c1f4b7694d05be53117f0afe97cc17.zip |
Enable screenshot and recording feature
Diffstat (limited to 'gui/basewindow.h')
-rw-r--r-- | gui/basewindow.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gui/basewindow.h b/gui/basewindow.h index 7562307e..fe9dfdf2 100644 --- a/gui/basewindow.h +++ b/gui/basewindow.h @@ -83,6 +83,9 @@ class BaseMainWindow : public QMainWindow void taskStarted();
void taskPaused();
+ void screenshot();
+ void saveMovie();
+
Q_SIGNALS:
void contextChanged(Context *ctx);
void updateTreeView();
@@ -128,6 +131,9 @@ class BaseMainWindow : public QMainWindow QAction *actionDisplayWire;
QAction *actionDisplayPip;
QAction *actionDisplayGroups;
+
+ QAction *actionScreenshot;
+ QAction *actionMovie;
};
NEXTPNR_NAMESPACE_END
|