2023-07-28 16:08:58 +08:00
|
|
|
#ifndef FLUWATERMARK_H
|
|
|
|
#define FLUWATERMARK_H
|
|
|
|
|
|
|
|
#include <QQuickItem>
|
|
|
|
#include <QQuickPaintedItem>
|
|
|
|
#include <QPainter>
|
|
|
|
#include "stdafx.h"
|
|
|
|
|
2024-02-27 12:23:24 +08:00
|
|
|
/**
|
|
|
|
* @brief The FluWatermark class
|
|
|
|
*/
|
2023-07-28 16:08:58 +08:00
|
|
|
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
|