第一次提交
This commit is contained in:
35
mainwindowlayout.h
Normal file
35
mainwindowlayout.h
Normal file
@ -0,0 +1,35 @@
|
||||
|
||||
//
|
||||
// Created by HW on 2023/07/26.
|
||||
//
|
||||
|
||||
#ifndef OFFICEASSISTANT_MAINWINDOWLAYOUT_H
|
||||
#define OFFICEASSISTANT_MAINWINDOWLAYOUT_H
|
||||
|
||||
#include <QWidget>
|
||||
#include <QVBoxLayout>
|
||||
#include "navbar.h"
|
||||
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
namespace Ui { class MainWindowLayout; }
|
||||
QT_END_NAMESPACE
|
||||
|
||||
class MainWindowLayout : public QWidget {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit MainWindowLayout(QWidget *parent = nullptr);
|
||||
|
||||
~MainWindowLayout() override;
|
||||
|
||||
private:
|
||||
Ui::MainWindowLayout *ui;
|
||||
QVBoxLayout *layout;
|
||||
QList<ButtonStruct *> list;
|
||||
NavBar *navBar;
|
||||
ButtonStruct *buttons;
|
||||
};
|
||||
|
||||
|
||||
#endif //OFFICEASSISTANT_MAINWINDOWLAYOUT_H
|
Reference in New Issue
Block a user