diff options
author | Miodrag Milanovic <mmicko@gmail.com> | 2023-03-08 11:54:53 +0100 |
---|---|---|
committer | myrtle <gatecat@ds0.me> | 2023-03-16 13:37:23 +0100 |
commit | 26f23e31212d41c713127d20e561d00260c80408 (patch) | |
tree | c52d1eb01a37569145e5d0956e016072b17f65ea /gui/machxo2/mainwindow.h | |
parent | 18ad718e53daa836e15eaa3f61da428f286fbd54 (diff) | |
download | nextpnr-26f23e31212d41c713127d20e561d00260c80408.tar.gz nextpnr-26f23e31212d41c713127d20e561d00260c80408.tar.bz2 nextpnr-26f23e31212d41c713127d20e561d00260c80408.zip |
Make small GUI changes
Diffstat (limited to 'gui/machxo2/mainwindow.h')
-rw-r--r-- | gui/machxo2/mainwindow.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gui/machxo2/mainwindow.h b/gui/machxo2/mainwindow.h index 2dcd052f..20d72c68 100644 --- a/gui/machxo2/mainwindow.h +++ b/gui/machxo2/mainwindow.h @@ -35,13 +35,19 @@ class MainWindow : public BaseMainWindow public: void createMenu(); + protected: void onDisableActions() override; void onUpdateActions() override; protected Q_SLOTS: void new_proj() override; - void newContext(Context *ctx); + void open_lpf(); + void save_config(); + + private: + QAction *actionLoadLPF; + QAction *actionSaveConfig; }; NEXTPNR_NAMESPACE_END |