FluentUI/src/FluentUI.h

20 lines
348 B
C
Raw Normal View History

2023-02-24 18:44:29 +08:00
#ifndef FLUENTUI_H
#define FLUENTUI_H
#include <QtQuick/QQuickPaintedItem>
class FluentUI : public QQuickPaintedItem
{
Q_OBJECT
QML_ELEMENT
Q_DISABLE_COPY(FluentUI)
public:
explicit FluentUI(QQuickItem *parent = nullptr);
void paint(QPainter *painter) override;
~FluentUI() override;
signals:
};
#endif // FLUENTUI_H