aboutsummaryrefslogtreecommitdiffstats
path: root/gui/gowin/mainwindow.h
diff options
context:
space:
mode:
authorYRabbit <rabbit@yrabbit.cyou>2022-01-29 14:45:17 +1000
committerYRabbit <rabbit@yrabbit.cyou>2022-01-29 14:45:17 +1000
commit22e4081c73ab7eec3c9f0841fcb1f247a85b5265 (patch)
treea6356121c9ea35e6221a42ed5e67c260f280f4ad /gui/gowin/mainwindow.h
parente069b3bc6ab4d504e84ef62086d2bb9e5144717b (diff)
downloadnextpnr-22e4081c73ab7eec3c9f0841fcb1f247a85b5265.tar.gz
nextpnr-22e4081c73ab7eec3c9f0841fcb1f247a85b5265.tar.bz2
nextpnr-22e4081c73ab7eec3c9f0841fcb1f247a85b5265.zip
gowin: Add GUI.
* Items such as LUT, DFF, MUX, ALU, IOB are displayed; * Local wires, 1-2-4-8 wires are displayed; * The clock spines, taps and branches are displayed with some caveats. For now, you can not create a project in the GUI because of possible conflict with another PR (about GW1NR-9C support), but you can specify the board in the command line and load .JSON and .CST in the GUI. Although ALUs are displayed, but the CIN and COUT wires are not. This is still an unsolved problem. Signed-off-by: YRabbit <rabbit@yrabbit.cyou>
Diffstat (limited to 'gui/gowin/mainwindow.h')
-rw-r--r--gui/gowin/mainwindow.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/gui/gowin/mainwindow.h b/gui/gowin/mainwindow.h
index 1e39b63f..0d65ed1c 100644
--- a/gui/gowin/mainwindow.h
+++ b/gui/gowin/mainwindow.h
@@ -35,9 +35,21 @@ class MainWindow : public BaseMainWindow
public:
void createMenu();
+ protected:
+ void onDisableActions() override;
+ void onUpdateActions() override;
+
+ void load_cst(std::string filename);
+
protected Q_SLOTS:
void new_proj() override;
+
+ void open_cst();
+
void newContext(Context *ctx);
+
+ private:
+ QAction *actionLoadCST;
};
NEXTPNR_NAMESPACE_END