diff options
Diffstat (limited to 'gui/dummy')
-rw-r--r-- | gui/dummy/mainwindow.cc | 18 | ||||
-rw-r--r-- | gui/dummy/mainwindow.h | 21 |
2 files changed, 39 insertions, 0 deletions
diff --git a/gui/dummy/mainwindow.cc b/gui/dummy/mainwindow.cc new file mode 100644 index 00000000..a9420524 --- /dev/null +++ b/gui/dummy/mainwindow.cc @@ -0,0 +1,18 @@ +#include "mainwindow.h"
+
+MainWindow::MainWindow(Context *_ctx, QWidget *parent)
+ : BaseMainWindow(_ctx, parent)
+{
+ std::string title = "nextpnr-dummy - " + ctx->getChipName();
+ setWindowTitle(title.c_str());
+
+ createMenu();
+}
+
+MainWindow::~MainWindow() {}
+
+void MainWindow::createMenu()
+{
+ QMenu *menu_Custom = new QMenu("&Dummy", menuBar);
+ menuBar->addAction(menu_Custom->menuAction());
+}
diff --git a/gui/dummy/mainwindow.h b/gui/dummy/mainwindow.h new file mode 100644 index 00000000..e9c8ff77 --- /dev/null +++ b/gui/dummy/mainwindow.h @@ -0,0 +1,21 @@ +#ifndef MAINWINDOW_H
+#define MAINWINDOW_H
+
+#include "../basewindow.h"
+
+// FIXME
+USING_NEXTPNR_NAMESPACE
+
+class MainWindow : public BaseMainWindow
+{
+ Q_OBJECT
+
+ public:
+ explicit MainWindow(Context *ctx, QWidget *parent = 0);
+ ~MainWindow();
+
+ public:
+ void createMenu();
+};
+
+#endif // MAINWINDOW_H
|