换完IDE了

This commit is contained in:
Mike Solar
2023-07-29 07:23:38 +08:00
parent c9db35e414
commit b9559e444b
38 changed files with 264 additions and 56 deletions

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