mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-27 13:49:08 +08:00
35 lines
542 B
C
35 lines
542 B
C
|
#ifndef FLUTOOLS_H
|
|||
|
#define FLUTOOLS_H
|
|||
|
|
|||
|
#include <QObject>
|
|||
|
#include <QtQml/qqml.h>
|
|||
|
|
|||
|
/**
|
|||
|
* @brief The FluTools class
|
|||
|
*/
|
|||
|
class FluTools : public QObject
|
|||
|
{
|
|||
|
Q_OBJECT
|
|||
|
|
|||
|
QML_NAMED_ELEMENT(FluTools)
|
|||
|
QML_SINGLETON
|
|||
|
|
|||
|
public:
|
|||
|
explicit FluTools(QObject *parent = nullptr);
|
|||
|
|
|||
|
/**
|
|||
|
* @brief clipText 将字符串添加到剪切板
|
|||
|
* @param text
|
|||
|
*/
|
|||
|
Q_INVOKABLE void clipText(const QString& text);
|
|||
|
|
|||
|
/**
|
|||
|
* @brief uuid 获取uuid
|
|||
|
* @return
|
|||
|
*/
|
|||
|
Q_INVOKABLE QString uuid();
|
|||
|
|
|||
|
};
|
|||
|
|
|||
|
#endif // FLUTOOLS_H
|