FluentUI/src/FluRectangle.h

24 lines
488 B
C
Raw Normal View History

2023-09-17 20:36:33 +08:00
#ifndef FLURECTANGLE_H
#define FLURECTANGLE_H
#include <QQuickItem>
#include <QQuickPaintedItem>
#include <QPainter>
#include "stdafx.h"
2024-02-27 12:23:24 +08:00
/**
* @brief The FluRectangle class
*/
2023-09-17 20:36:33 +08:00
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