mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2025-07-07 20:17:42 +08:00
first commit
This commit is contained in:
19
src/FluentUI.h
Normal file
19
src/FluentUI.h
Normal file
@ -0,0 +1,19 @@
|
||||
#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
|
Reference in New Issue
Block a user