diff options
| author | David Shah <dave@ds0.me> | 2019-07-03 12:39:38 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-07-03 12:39:38 +0100 |
| commit | 8f2813279c5888e655ee6f50f198cf8cb11b0b50 (patch) | |
| tree | 0aac9464d3ea87d37cd0689903ba08094b7c0984 /gui/ice40/mainwindow.h | |
| parent | ff958830d1097b9bfa3c3b34094e671741ef563d (diff) | |
| parent | e27dc41a7646fd3377d2400059c916fbcc35119c (diff) | |
| download | nextpnr-8f2813279c5888e655ee6f50f198cf8cb11b0b50.tar.gz nextpnr-8f2813279c5888e655ee6f50f198cf8cb11b0b50.tar.bz2 nextpnr-8f2813279c5888e655ee6f50f198cf8cb11b0b50.zip | |
Merge pull request #284 from YosysHQ/json_write
Initial support for writing to json files from nextpnr.
Diffstat (limited to 'gui/ice40/mainwindow.h')
| -rw-r--r-- | gui/ice40/mainwindow.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gui/ice40/mainwindow.h b/gui/ice40/mainwindow.h index 4a9a7d8e..6e725a16 100644 --- a/gui/ice40/mainwindow.h +++ b/gui/ice40/mainwindow.h @@ -29,7 +29,7 @@ class MainWindow : public BaseMainWindow Q_OBJECT
public:
- explicit MainWindow(std::unique_ptr<Context> context, ArchArgs args, QWidget *parent = 0);
+ explicit MainWindow(std::unique_ptr<Context> context, CommandHandler *handler, QWidget *parent = 0);
virtual ~MainWindow();
public:
@@ -39,9 +39,7 @@ class MainWindow : public BaseMainWindow void load_pcf(std::string filename);
void onDisableActions() override;
- void onJsonLoaded() override;
- void onRouteFinished() override;
- void onProjectLoaded() override;
+ void onUpdateActions() override;
protected Q_SLOTS:
void new_proj() override;
|
