mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-23 19:20:59 +08:00
36 lines
905 B
C++
36 lines
905 B
C++
#ifndef WINDOWHELPER_H
|
|
#define WINDOWHELPER_H
|
|
|
|
#include <QObject>
|
|
#include <QQuickWindow>
|
|
#include <QQuickItem>
|
|
#include <QWindow>
|
|
#include <QJsonObject>
|
|
#include "FramelessView.h"
|
|
|
|
class WindowHelper : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit WindowHelper(QObject *parent = nullptr);
|
|
|
|
Q_INVOKABLE void initWindow(FramelessView* window);
|
|
Q_INVOKABLE void setTitle(const QString& text);
|
|
Q_INVOKABLE void setMinimumWidth(int width);
|
|
Q_INVOKABLE void setMaximumWidth(int width);
|
|
Q_INVOKABLE void setMinimumHeight(int height);
|
|
Q_INVOKABLE void setMaximumHeight(int height);
|
|
Q_INVOKABLE QJsonObject getArgument();
|
|
Q_INVOKABLE QVariant getPageRegister();
|
|
Q_INVOKABLE void updateWindow();
|
|
Q_INVOKABLE void setModality(int type);
|
|
Q_INVOKABLE QVariant createRegister(const QString& path);
|
|
|
|
private:
|
|
FramelessView* window;
|
|
|
|
};
|
|
|
|
#endif // WINDOWHELPER_H
|