mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-23 19:20:59 +08:00
21 lines
432 B
C++
21 lines
432 B
C++
#pragma once
|
|
|
|
#include <QQuickItem>
|
|
#include <QQuickPaintedItem>
|
|
#include <QPainter>
|
|
#include "stdafx.h"
|
|
|
|
/**
|
|
* @brief The FluRectangle class
|
|
*/
|
|
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;
|
|
};
|