diff options
author | jan Iversen <jan@casacondor.com> | 2020-01-15 09:55:00 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-01-30 07:53:34 +0200 |
commit | 906cce9e88453332806b8d5b620eb9c5a78a99f0 (patch) | |
tree | af404886f75e317800b06af1b8286fc5ce22fa8f /mobile-widgets/themeinterface.h | |
parent | 5a7ebe15a5bd278c581038d1e38e7a5f589c2edc (diff) | |
download | subsurface-906cce9e88453332806b8d5b620eb9c5a78a99f0.tar.gz |
mobile-widgets: emit signals for each color
Emit signals for each standard color when theme changes.
The iconStyle property was changed from being a constant, because it can
change, and thus a signal was added.
Signed-off-by: jan Iversen <jan@casacondor.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/themeinterface.h')
-rw-r--r-- | mobile-widgets/themeinterface.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mobile-widgets/themeinterface.h b/mobile-widgets/themeinterface.h index f06d834da..7ef26d7f9 100644 --- a/mobile-widgets/themeinterface.h +++ b/mobile-widgets/themeinterface.h @@ -33,7 +33,7 @@ class themeInterface : public QObject { // Support Q_PROPERTY(QString currentTheme MEMBER m_currentTheme WRITE set_currentTheme NOTIFY currentThemeChanged) - Q_PROPERTY(QString iconStyle MEMBER m_iconStyle CONSTANT) + Q_PROPERTY(QString iconStyle MEMBER m_iconStyle NOTIFY iconStyleChanged) // Compatibility existing code Q_PROPERTY(QColor blueBackgroundColor MEMBER m_blueBackgroundColor CONSTANT) @@ -107,6 +107,7 @@ signals: void currentScaleChanged(double); void currentThemeChanged(const QString &); + void iconStyleChanged(const QString &); private: themeInterface() {} |