30 lines
698 B
C++
30 lines
698 B
C++
//
|
|
// Created by HW on 2023/07/26.
|
|
//
|
|
|
|
// You may need to build the project (run Qt uic code generator) to get "ui_MainWindow.h" resolved
|
|
|
|
#include "mainwindow.h"
|
|
#include "ui_MainWindow.h"
|
|
|
|
|
|
|
|
MainWindow::MainWindow(QWidget *parent) :
|
|
QMainWindow(parent), ui(new Ui::MainWindow) {
|
|
ui->setupUi(this);
|
|
QDesktopWidget* desktopWidget = QApplication::desktop();
|
|
QRect deskRect = desktopWidget->availableGeometry();
|
|
//delete desktopWidget;
|
|
mainWindowLayout=new MainWindowLayout(this);
|
|
setCentralWidget(mainWindowLayout);
|
|
setWindowState(Qt::WindowMaximized);
|
|
|
|
|
|
}
|
|
|
|
MainWindow::~MainWindow() {
|
|
this->setCentralWidget(nullptr);
|
|
delete mainWindowLayout;
|
|
delete ui;
|
|
}
|