mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2025-02-02 19:27:38 +08:00
34 lines
786 B
C++
34 lines
786 B
C++
#ifndef FLUTEXTSTYLE_H
|
|
#define FLUTEXTSTYLE_H
|
|
|
|
#include <QObject>
|
|
#include <QtQml/qqml.h>
|
|
#include <QFont>
|
|
#include "stdafx.h"
|
|
#include "singleton.h"
|
|
|
|
/**
|
|
* @brief The FluTextStyle class
|
|
*/
|
|
class FluTextStyle : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
Q_PROPERTY_AUTO(QFont,Caption);
|
|
Q_PROPERTY_AUTO(QFont,Body);
|
|
Q_PROPERTY_AUTO(QFont,BodyStrong);
|
|
Q_PROPERTY_AUTO(QFont,Subtitle);
|
|
Q_PROPERTY_AUTO(QFont,Title);
|
|
Q_PROPERTY_AUTO(QFont,TitleLarge);
|
|
Q_PROPERTY_AUTO(QFont,Display);
|
|
QML_NAMED_ELEMENT(FluTextStyle)
|
|
QML_SINGLETON
|
|
private:
|
|
explicit FluTextStyle(QObject *parent = nullptr);
|
|
public:
|
|
SINGLETON(FluTextStyle)
|
|
static FluTextStyle *create(QQmlEngine *qmlEngine, QJSEngine *jsEngine){return getInstance();}
|
|
};
|
|
|
|
#endif // FLUTEXTSTYLE_H
|