mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-23 11:17:15 +08:00
21 lines
447 B
C++
21 lines
447 B
C++
#ifndef FLURECTANGLE_H
|
|
#define FLURECTANGLE_H
|
|
|
|
#include <QQuickItem>
|
|
#include <QQuickPaintedItem>
|
|
#include <QPainter>
|
|
#include "stdafx.h"
|
|
|
|
class FluRectangle : public QQuickPaintedItem
|
|
{
|
|
Q_OBJECT
|
|
Q_PROPERTY_AUTO(QColor,color)
|
|
Q_PROPERTY_AUTO(QList<int>,radius)
|
|
QML_NAMED_ELEMENT(FluRectangle)
|
|
public:
|
|
explicit FluRectangle(QQuickItem *parent = nullptr);
|
|
void paint(QPainter* painter) override;
|
|
};
|
|
|
|
#endif // FLURECTANGLE_H
|