OfficeAssistant_Win10/OfficeAssistant_msvc/mainwindow.h

34 lines
554 B
C
Raw Normal View History

2023-07-26 19:48:14 +08:00
//
// Created by HW on 2023/07/26.
//
#ifndef UNTITLED_MAINWINDOW_H
#define UNTITLED_MAINWINDOW_H
#include <QMainWindow>
#include <QVBoxLayout>
#include "mainwindowlayout.h"
2023-08-01 23:51:40 +08:00
#include <QIcon>
2023-07-26 19:48:14 +08:00
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;
2023-08-01 23:51:40 +08:00
QIcon *icon;
2023-07-26 19:48:14 +08:00
QVBoxLayout *layout;
MainWindowLayout *mainWindowLayout;
};
#endif //UNTITLED_MAINWINDOW_H