39 lines
685 B
C++
39 lines
685 B
C++
//
|
|
// Created by HW on 2023/07/26.
|
|
//
|
|
|
|
#ifndef UNTITLED_MAINWINDOW_H
|
|
#define UNTITLED_MAINWINDOW_H
|
|
|
|
#include <QMainWindow>
|
|
#include <QVBoxLayout>
|
|
#include "mainwindowlayout.h"
|
|
#include <QJsonArray>
|
|
#include <QJsonDocument>
|
|
#include <QJsonObject>
|
|
#include <QJsonValue>
|
|
#include <QIcon>
|
|
|
|
|
|
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;
|
|
QIcon *icon;
|
|
QVBoxLayout *layout;
|
|
MainWindowLayout *mainWindowLayout;
|
|
};
|
|
|
|
|
|
#endif //UNTITLED_MAINWINDOW_H
|