mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-23 19:20:59 +08:00
26 lines
584 B
C++
26 lines
584 B
C++
#ifndef FLUWATERMARK_H
|
|
#define FLUWATERMARK_H
|
|
|
|
#include <QQuickItem>
|
|
#include <QQuickPaintedItem>
|
|
#include <QPainter>
|
|
#include "stdafx.h"
|
|
|
|
class FluWatermark : public QQuickPaintedItem
|
|
{
|
|
Q_OBJECT
|
|
Q_PROPERTY_AUTO(QString,text)
|
|
Q_PROPERTY_AUTO(QPoint,gap)
|
|
Q_PROPERTY_AUTO(QPoint,offset);
|
|
Q_PROPERTY_AUTO(QColor,textColor);
|
|
Q_PROPERTY_AUTO(int,rotate);
|
|
Q_PROPERTY_AUTO(int,textSize);
|
|
QML_NAMED_ELEMENT(FluWatermark)
|
|
public:
|
|
explicit FluWatermark(QQuickItem *parent = nullptr);
|
|
void paint(QPainter* painter) override;
|
|
|
|
};
|
|
|
|
#endif // FLUWATERMARK_H
|