第一次提交

This commit is contained in:
Mike Solar
2023-07-26 19:48:14 +08:00
commit 25daaecbc0
23 changed files with 447 additions and 0 deletions

30
mainwindow.h Normal file
View File

@ -0,0 +1,30 @@
//
// 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