From 0e3b25468cb839039b7a49f0c5b5aba3db19f580 Mon Sep 17 00:00:00 2001 From: gatecat Date: Sun, 25 Jul 2021 12:06:51 +0100 Subject: gui: Implement about dialog Signed-off-by: gatecat --- gui/CMakeLists.txt | 1 + gui/basewindow.cc | 11 +++++++++++ gui/basewindow.h | 2 ++ 3 files changed, 14 insertions(+) (limited to 'gui') diff --git a/gui/CMakeLists.txt b/gui/CMakeLists.txt index 1deffcfb..110251b9 100644 --- a/gui/CMakeLists.txt +++ b/gui/CMakeLists.txt @@ -34,6 +34,7 @@ add_library(gui_${family} STATIC ${GUI_SOURCE_FILES} ${PYTHON_CONSOLE_SRC} ${GUI include(${family}/family.cmake) target_include_directories(gui_${family} PRIVATE ../${family} ${family} ../3rdparty/QtPropertyBrowser/src ../3rdparty/imgui ../3rdparty/qtimgui/) +target_include_directories(gui_${family} PRIVATE ${CMAKE_BINARY_DIR}/generated) if (BUILD_PYTHON) target_include_directories(gui_${family} PRIVATE ../3rdparty/python-console ../3rdparty/python-console/modified) endif() diff --git a/gui/basewindow.cc b/gui/basewindow.cc index e93428cf..6e64bf6f 100644 --- a/gui/basewindow.cc +++ b/gui/basewindow.cc @@ -35,6 +35,7 @@ #include "log.h" #include "mainwindow.h" #include "pythontab.h" +#include "version.h" static void initBasenameResource() { Q_INIT_RESOURCE(base); } @@ -129,6 +130,15 @@ void BaseMainWindow::closeTab(int index) { delete centralTabWidget->widget(index void BaseMainWindow::writeInfo(std::string text) { console->info(text); } +void BaseMainWindow::about() +{ + QString msg; + QTextStream out(&msg); + out << "nextpnr-" << NPNR_STRINGIFY_MACRO(ARCHNAME) << "\n"; + out << "Version " << GIT_DESCRIBE_STR; + QMessageBox::information(this, "About nextpnr", msg); +} + void BaseMainWindow::createMenusAndBars() { // File menu / project toolbar actions @@ -140,6 +150,7 @@ void BaseMainWindow::createMenusAndBars() // Help menu actions QAction *actionAbout = new QAction("About", this); + connect(actionAbout, &QAction::triggered, this, &BaseMainWindow::about); // Gile menu options actionNew = new QAction("New", this); diff --git a/gui/basewindow.h b/gui/basewindow.h index 0b63dd73..4e3cdcb8 100644 --- a/gui/basewindow.h +++ b/gui/basewindow.h @@ -87,6 +87,8 @@ class BaseMainWindow : public QMainWindow void saveMovie(); void saveSVG(); + void about(); + Q_SIGNALS: void contextChanged(Context *ctx); void updateTreeView(); -- cgit v1.2.3