-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapplicationui.hpp
54 lines (38 loc) · 1.13 KB
/
applicationui.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#ifndef APPLICATIONUI_HPP
#define APPLICATIONUI_HPP
#include <QObject>
class ApplicationUI : public QObject
{
Q_OBJECT
public:
ApplicationUI(QObject *parent = 0);
Q_PROPERTY(bool darkTheme READ darkTheme WRITE setDarkTheme NOTIFY darkThemeChanged)
Q_PROPERTY(bool systemColor READ systemColor WRITE setSystemColor NOTIFY systemColorChanged)
Q_INVOKABLE
QStringList swapThemePalette();
Q_INVOKABLE
QStringList defaultThemePalette();
Q_INVOKABLE
QStringList primaryPalette(const int paletteIndex);
Q_INVOKABLE
QStringList accentPalette(const int paletteIndex);
Q_INVOKABLE
QStringList defaultPrimaryPalette();
Q_INVOKABLE
QStringList defaultAccentPalette();
bool darkTheme() const;
bool systemColor() const;
signals:
void darkThemeChanged();
void systemColorChanged();
public slots:
void setSystemColor(bool newSystemColor);
void setDarkTheme(bool newDarkTheme);
private:
bool mIsDarkTheme;
int mPrimaryPalette;
int mAccentPalette;
bool m_darkTheme{false};
bool m_systemColor;
};
#endif // APPLICATIONUI_HPP