-
-
Notifications
You must be signed in to change notification settings - Fork 144
/
themeprovider.cpp
143 lines (120 loc) · 4.31 KB
/
themeprovider.cpp
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
#include "themeprovider.h"
#include <QApplication>
#include <QJsonDocument>
#include <QPalette>
#include <QVariant>
#include <QFile>
#include <QDir>
#include <cmath>
#include "redasmsettings.h"
#define THEME_UI_SET_COLOR(palette, key) if(m_theme.contains(#key)) palette.setColor(QPalette::key, m_theme[#key].toString())
QJsonObject ThemeProvider::m_theme;
QStringList ThemeProvider::themes() { return ThemeProvider::readThemes(":/themes"); }
QString ThemeProvider::theme(const QString &name) { return QString(":/themes/%1.json").arg(name.toLower()); }
bool ThemeProvider::isDarkTheme()
{
QPalette p = qApp->palette();
QColor c = p.window().color();
double hsp = std::sqrt(0.299 * (c.red() * c.red()) +
0.587 * (c.green() * c.green()) +
0.114 * (c.blue() * c.blue()));
return hsp <= 127.5;
}
bool ThemeProvider::loadTheme(const QString& theme)
{
if(!m_theme.isEmpty()) return true;
QFile f(QString(":/themes/%1.json").arg(theme.toLower()));
if(!f.open(QFile::ReadOnly)) return false;
QJsonDocument doc = QJsonDocument::fromJson(f.readAll());
if(doc.isObject()) m_theme = doc.object();
else return false;
return true;
}
QColor ThemeProvider::themeValue(rd_type theme)
{
auto* c = RDConfig_GetTheme(theme);
return c ? QColor(c) : QColor();
}
QIcon ThemeProvider::icon(const QString &name)
{
REDasmSettings settings;
return QIcon(QString(":/res/%1/%2.png").arg(ThemeProvider::isDarkTheme() ? "dark" : "light")
.arg(name));
}
void ThemeProvider::applyTheme()
{
REDasmSettings settings;
if(!ThemeProvider::loadTheme(settings.currentTheme()))
return;
QPalette palette = qApp->palette();
THEME_UI_SET_COLOR(palette, Shadow);
THEME_UI_SET_COLOR(palette, Base);
THEME_UI_SET_COLOR(palette, AlternateBase);
THEME_UI_SET_COLOR(palette, Text);
THEME_UI_SET_COLOR(palette, Window);
THEME_UI_SET_COLOR(palette, WindowText);
THEME_UI_SET_COLOR(palette, Button);
THEME_UI_SET_COLOR(palette, ButtonText);
THEME_UI_SET_COLOR(palette, Highlight);
THEME_UI_SET_COLOR(palette, HighlightedText);
THEME_UI_SET_COLOR(palette, ToolTipBase);
THEME_UI_SET_COLOR(palette, ToolTipText);
qApp->setPalette(palette);
ThemeProvider::applyListingTheme();
}
void ThemeProvider::applyListingTheme()
{
static std::unordered_map<std::string, rd_type> themes = {
{ "foreground", Theme_Foreground },
{ "background", Theme_Background },
{ "seek", Theme_Seek },
{ "auto_comment", Theme_AutoComment },
{ "comment", Theme_Comment },
{ "highlight_fg", Theme_HighlightFg },
{ "highlight_bg", Theme_HighlightBg },
{ "selection_fg", Theme_SelectionFg },
{ "selection_bg", Theme_SelectionBg },
{ "cursor_fg", Theme_CursorFg },
{ "cursor_bg", Theme_CursorBg },
{ "segment", Theme_Segment },
{ "function", Theme_Function },
{ "address", Theme_Address },
{ "constant", Theme_Constant },
{ "reg", Theme_Reg },
{ "string", Theme_String },
{ "label", Theme_Label },
{ "data", Theme_Data },
{ "pointer", Theme_Pointer },
{ "import", Theme_Import },
{ "type", Theme_Type },
{ "nop", Theme_Nop },
{ "ret", Theme_Ret },
{ "call", Theme_Call },
{ "jump", Theme_Jump },
{ "jump_c", Theme_JumpCond },
{ "entry_fg", Theme_EntryFg },
{ "entry_bg", Theme_EntryBg },
{ "graph_bg", Theme_GraphBg },
{ "graph_edge", Theme_GraphEdge },
{ "graph_edge_loop", Theme_GraphEdgeLoop },
{ "graph_edge_loop_c", Theme_GraphEdgeLoopCond },
{ "success", Theme_Success },
{ "fail", Theme_Fail },
{ "warning", Theme_Warning } };
for(auto it = m_theme.begin(); it != m_theme.end(); it++)
{
auto thit = themes.find(it.key().toStdString());
if(thit == themes.end()) continue;
RDConfig_SetTheme(thit->second, it.value().toString().toStdString().c_str());
}
}
QStringList ThemeProvider::readThemes(const QString &path)
{
QStringList themes = QDir(path).entryList({"*.json"});
for(QString& theme : themes)
{
theme.remove(".json");
theme[0] = theme[0].toUpper();
}
return themes;
}