diff options
Diffstat (limited to 'mobile-widgets/themeinterface.h')
-rw-r--r-- | mobile-widgets/themeinterface.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mobile-widgets/themeinterface.h b/mobile-widgets/themeinterface.h index cb89c40fd..ee6a8879c 100644 --- a/mobile-widgets/themeinterface.h +++ b/mobile-widgets/themeinterface.h @@ -23,6 +23,9 @@ class themeInterface : public QObject { Q_PROPERTY(QColor secondaryTextColor MEMBER m_secondaryTextColor NOTIFY secondaryTextColorChanged) Q_PROPERTY(QColor textColor MEMBER m_textColor NOTIFY textColorChanged) + // Font + Q_PROPERTY(double basePointSize MEMBER m_basePointSize CONSTANT) + // Support Q_PROPERTY(QString currentTheme MEMBER m_currentTheme WRITE set_currentTheme NOTIFY currentThemeChanged) Q_PROPERTY(QString iconStyle MEMBER m_iconStyle CONSTANT) @@ -108,6 +111,8 @@ private: QColor m_secondaryTextColor; QColor m_textColor; + double m_basePointSize; + QString m_currentTheme; QString m_iconStyle; |