From 22e4081c73ab7eec3c9f0841fcb1f247a85b5265 Mon Sep 17 00:00:00 2001 From: YRabbit Date: Sat, 29 Jan 2022 14:45:17 +1000 Subject: 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 --- gui/gowin/mainwindow.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'gui/gowin/mainwindow.h') 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 -- cgit v1.2.3