Sun, 22 Sep 2019 11:51:41 +0300
Added lots of code
0 | 1 | #include "mainwindow.h" |
2 | #include "ui_mainwindow.h" | |
1 | 3 | #include "version.h" |
3 | 4 | #include <QQuaternion> |
0 | 5 | |
6 | MainWindow::MainWindow(QWidget *parent) : | |
3 | 7 | QMainWindow{parent}, |
8 | ui{std::make_unique<Ui_MainWindow>()} | |
0 | 9 | { |
3 | 10 | ui->setupUi(this); |
11 | connect(ui->actionQuit, &QAction::triggered, this, &QMainWindow::close); | |
1 | 12 | QString title = ::appName; |
13 | title += " "; | |
14 | title += fullVersionString(); | |
15 | setWindowTitle(title); | |
0 | 16 | } |
17 | ||
18 | MainWindow::~MainWindow() | |
19 | { | |
20 | } |