31 lines
522 B
C
31 lines
522 B
C
|
//
|
||
|
// Created by HW on 2023/07/26.
|
||
|
//
|
||
|
|
||
|
#ifndef UNTITLED_MAINWINDOW_H
|
||
|
#define UNTITLED_MAINWINDOW_H
|
||
|
|
||
|
#include <QMainWindow>
|
||
|
#include <QVBoxLayout>
|
||
|
#include "mainwindowlayout.h"
|
||
|
QT_BEGIN_NAMESPACE
|
||
|
namespace Ui { class MainWindow; }
|
||
|
QT_END_NAMESPACE
|
||
|
|
||
|
class MainWindow : public QMainWindow {
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit MainWindow(QWidget *parent = nullptr);
|
||
|
|
||
|
~MainWindow() override;
|
||
|
|
||
|
private:
|
||
|
Ui::MainWindow *ui;
|
||
|
QVBoxLayout *layout;
|
||
|
MainWindowLayout *mainWindowLayout;
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif //UNTITLED_MAINWINDOW_H
|