Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/editor/themes/theme_classic.cpp
14709 views
1
/**************************************************************************/
2
/* theme_classic.cpp */
3
/**************************************************************************/
4
/* This file is part of: */
5
/* GODOT ENGINE */
6
/* https://godotengine.org */
7
/**************************************************************************/
8
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
9
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
10
/* */
11
/* Permission is hereby granted, free of charge, to any person obtaining */
12
/* a copy of this software and associated documentation files (the */
13
/* "Software"), to deal in the Software without restriction, including */
14
/* without limitation the rights to use, copy, modify, merge, publish, */
15
/* distribute, sublicense, and/or sell copies of the Software, and to */
16
/* permit persons to whom the Software is furnished to do so, subject to */
17
/* the following conditions: */
18
/* */
19
/* The above copyright notice and this permission notice shall be */
20
/* included in all copies or substantial portions of the Software. */
21
/* */
22
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
23
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
24
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
25
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
26
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
27
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
28
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
29
/**************************************************************************/
30
31
#include "theme_classic.h"
32
33
#include "editor/editor_string_names.h"
34
#include "editor/settings/editor_settings.h"
35
#include "editor/themes/editor_scale.h"
36
#include "editor/themes/editor_theme_manager.h"
37
#include "scene/gui/graph_edit.h"
38
#include "scene/resources/compressed_texture.h"
39
#include "scene/resources/dpi_texture.h"
40
#include "scene/resources/image_texture.h"
41
#include "scene/resources/style_box_flat.h"
42
#include "scene/resources/style_box_line.h"
43
#include "scene/resources/style_box_texture.h"
44
45
void ThemeClassic::populate_shared_styles(const Ref<EditorTheme> &p_theme, EditorThemeManager::ThemeConfiguration &p_config) {
46
// Colors.
47
{
48
// Base colors.
49
50
p_theme->set_color("base_color", EditorStringName(Editor), p_config.base_color);
51
p_theme->set_color("accent_color", EditorStringName(Editor), p_config.accent_color);
52
53
// White (dark theme) or black (light theme), will be used to generate the rest of the colors
54
p_config.mono_color = p_config.dark_theme ? Color(1, 1, 1) : Color(0, 0, 0);
55
p_config.mono_color_font = p_config.dark_icon_and_font ? Color(1, 1, 1) : Color(0, 0, 0);
56
57
// Ensure base colors are in the 0..1 luminance range to avoid 8-bit integer overflow or text rendering issues.
58
// Some places in the editor use 8-bit integer colors.
59
p_config.dark_color_1 = p_config.base_color.lerp(Color(0, 0, 0, 1), p_config.contrast).clamp();
60
p_config.dark_color_2 = p_config.base_color.lerp(Color(0, 0, 0, 1), p_config.contrast * 1.5).clamp();
61
p_config.dark_color_3 = p_config.base_color.lerp(Color(0, 0, 0, 1), p_config.contrast * 2).clamp();
62
63
p_config.contrast_color_1 = p_config.base_color.lerp(p_config.mono_color, MAX(p_config.contrast, p_config.default_contrast));
64
p_config.contrast_color_2 = p_config.base_color.lerp(p_config.mono_color, MAX(p_config.contrast * 1.5, p_config.default_contrast * 1.5));
65
66
p_config.highlight_color = Color(p_config.accent_color.r, p_config.accent_color.g, p_config.accent_color.b, 0.275);
67
p_config.highlight_disabled_color = p_config.highlight_color.lerp(p_config.dark_icon_and_font ? Color(0, 0, 0) : Color(1, 1, 1), 0.5);
68
69
p_config.success_color = Color(0.45, 0.95, 0.5);
70
p_config.warning_color = Color(1, 0.87, 0.4);
71
p_config.error_color = Color(1, 0.47, 0.42);
72
73
// Keep dark theme colors accessible for use in the frame time gradient in the 3D editor.
74
// This frame time gradient is used to colorize text for a dark background, so it should keep using bright colors
75
// even when using a light theme.
76
p_theme->set_color("success_color_dark_background", EditorStringName(Editor), p_config.success_color);
77
p_theme->set_color("warning_color_dark_background", EditorStringName(Editor), p_config.warning_color);
78
p_theme->set_color("error_color_dark_background", EditorStringName(Editor), p_config.error_color);
79
80
if (!p_config.dark_icon_and_font) {
81
// Darken some colors to be readable on a light background.
82
p_config.success_color = p_config.success_color.lerp(p_config.mono_color_font, 0.35);
83
p_config.warning_color = Color(0.82, 0.56, 0.1);
84
p_config.error_color = Color(0.8, 0.22, 0.22);
85
}
86
87
p_theme->set_color("mono_color", EditorStringName(Editor), p_config.mono_color);
88
p_theme->set_color("dark_color_1", EditorStringName(Editor), p_config.dark_color_1);
89
p_theme->set_color("dark_color_2", EditorStringName(Editor), p_config.dark_color_2);
90
p_theme->set_color("dark_color_3", EditorStringName(Editor), p_config.dark_color_3);
91
p_theme->set_color("contrast_color_1", EditorStringName(Editor), p_config.contrast_color_1);
92
p_theme->set_color("contrast_color_2", EditorStringName(Editor), p_config.contrast_color_2);
93
p_theme->set_color("highlight_color", EditorStringName(Editor), p_config.highlight_color);
94
p_theme->set_color("highlight_disabled_color", EditorStringName(Editor), p_config.highlight_disabled_color);
95
p_theme->set_color("success_color", EditorStringName(Editor), p_config.success_color);
96
p_theme->set_color("warning_color", EditorStringName(Editor), p_config.warning_color);
97
p_theme->set_color("error_color", EditorStringName(Editor), p_config.error_color);
98
p_theme->set_color("ruler_color", EditorStringName(Editor), p_config.dark_color_2);
99
#ifndef DISABLE_DEPRECATED // Used before 4.3.
100
p_theme->set_color("disabled_highlight_color", EditorStringName(Editor), p_config.highlight_disabled_color);
101
#endif
102
103
// Only used when the Draw Extra Borders editor setting is enabled.
104
p_config.extra_border_color_1 = Color(0.5, 0.5, 0.5);
105
p_config.extra_border_color_2 = p_config.dark_theme ? Color(0.3, 0.3, 0.3) : Color(0.7, 0.7, 0.7);
106
107
p_theme->set_color("extra_border_color_1", EditorStringName(Editor), p_config.extra_border_color_1);
108
p_theme->set_color("extra_border_color_2", EditorStringName(Editor), p_config.extra_border_color_2);
109
110
// Font colors.
111
112
p_config.font_color = p_config.mono_color_font.lerp(p_config.base_color, 0.25);
113
p_config.font_focus_color = p_config.mono_color_font.lerp(p_config.base_color, 0.125);
114
p_config.font_hover_color = p_config.mono_color_font.lerp(p_config.base_color, 0.125);
115
p_config.font_pressed_color = p_config.accent_color;
116
p_config.font_hover_pressed_color = p_config.font_hover_color.lerp(p_config.accent_color, 0.74);
117
p_config.font_disabled_color = Color(p_config.mono_color_font.r, p_config.mono_color_font.g, p_config.mono_color_font.b, 0.35);
118
p_config.font_readonly_color = Color(p_config.mono_color_font.r, p_config.mono_color_font.g, p_config.mono_color_font.b, 0.65);
119
p_config.font_placeholder_color = Color(p_config.mono_color_font.r, p_config.mono_color_font.g, p_config.mono_color_font.b, 0.5);
120
p_config.font_outline_color = Color(0, 0, 0, 0);
121
122
// Colors designed for dark backgrounds, even when using a light theme.
123
// This is used for 3D editor overlay texts.
124
if (p_config.dark_theme) {
125
p_config.font_dark_background_color = p_config.font_color;
126
p_config.font_dark_background_focus_color = p_config.font_focus_color;
127
p_config.font_dark_background_hover_color = p_config.font_hover_color;
128
p_config.font_dark_background_pressed_color = p_config.font_pressed_color;
129
p_config.font_dark_background_hover_pressed_color = p_config.font_hover_pressed_color;
130
} else {
131
p_config.font_dark_background_color = p_config.mono_color.inverted().lerp(p_config.base_color, 0.75);
132
p_config.font_dark_background_focus_color = p_config.mono_color.inverted().lerp(p_config.base_color, 0.25);
133
p_config.font_dark_background_hover_color = p_config.mono_color.inverted().lerp(p_config.base_color, 0.25);
134
p_config.font_dark_background_pressed_color = p_config.font_dark_background_color.lerp(p_config.accent_color, 0.74);
135
p_config.font_dark_background_hover_pressed_color = p_config.font_dark_background_color.lerp(p_config.accent_color, 0.5);
136
}
137
138
p_theme->set_color(SceneStringName(font_color), EditorStringName(Editor), p_config.font_color);
139
p_theme->set_color("font_focus_color", EditorStringName(Editor), p_config.font_focus_color);
140
p_theme->set_color("font_hover_color", EditorStringName(Editor), p_config.font_hover_color);
141
p_theme->set_color("font_pressed_color", EditorStringName(Editor), p_config.font_pressed_color);
142
p_theme->set_color("font_hover_pressed_color", EditorStringName(Editor), p_config.font_hover_pressed_color);
143
p_theme->set_color("font_disabled_color", EditorStringName(Editor), p_config.font_disabled_color);
144
p_theme->set_color("font_readonly_color", EditorStringName(Editor), p_config.font_readonly_color);
145
p_theme->set_color("font_placeholder_color", EditorStringName(Editor), p_config.font_placeholder_color);
146
p_theme->set_color("font_outline_color", EditorStringName(Editor), p_config.font_outline_color);
147
148
p_theme->set_color("font_dark_background_color", EditorStringName(Editor), p_config.font_dark_background_color);
149
p_theme->set_color("font_dark_background_focus_color", EditorStringName(Editor), p_config.font_dark_background_focus_color);
150
p_theme->set_color("font_dark_background_hover_color", EditorStringName(Editor), p_config.font_dark_background_hover_color);
151
p_theme->set_color("font_dark_background_pressed_color", EditorStringName(Editor), p_config.font_dark_background_pressed_color);
152
p_theme->set_color("font_dark_background_hover_pressed_color", EditorStringName(Editor), p_config.font_dark_background_hover_pressed_color);
153
154
#ifndef DISABLE_DEPRECATED // Used before 4.3.
155
p_theme->set_color("readonly_font_color", EditorStringName(Editor), p_config.font_readonly_color);
156
p_theme->set_color("disabled_font_color", EditorStringName(Editor), p_config.font_disabled_color);
157
p_theme->set_color("readonly_color", EditorStringName(Editor), p_config.font_readonly_color);
158
p_theme->set_color("highlighted_font_color", EditorStringName(Editor), p_config.font_hover_color); // Closest equivalent.
159
#endif
160
161
// Icon colors.
162
163
p_config.icon_normal_color = Color(1, 1, 1);
164
p_config.icon_focus_color = p_config.icon_normal_color * (p_config.dark_icon_and_font ? 1.15 : 1.45);
165
p_config.icon_focus_color.a = 1.0;
166
p_config.icon_hover_color = p_config.icon_focus_color;
167
// Make the pressed icon color overbright because icons are not completely white on a dark theme.
168
// On a light theme, icons are dark, so we need to modulate them with an even brighter color.
169
p_config.icon_pressed_color = p_config.accent_color * (p_config.dark_icon_and_font ? 1.15 : 3.5);
170
p_config.icon_pressed_color.a = 1.0;
171
p_config.icon_disabled_color = Color(p_config.icon_normal_color, 0.4);
172
173
p_theme->set_color("icon_normal_color", EditorStringName(Editor), p_config.icon_normal_color);
174
p_theme->set_color("icon_focus_color", EditorStringName(Editor), p_config.icon_focus_color);
175
p_theme->set_color("icon_hover_color", EditorStringName(Editor), p_config.icon_hover_color);
176
p_theme->set_color("icon_pressed_color", EditorStringName(Editor), p_config.icon_pressed_color);
177
p_theme->set_color("icon_disabled_color", EditorStringName(Editor), p_config.icon_disabled_color);
178
179
// Additional GUI colors.
180
181
p_config.shadow_color = Color(0, 0, 0, p_config.dark_theme ? 0.3 : 0.1);
182
p_config.selection_color = p_config.accent_color * Color(1, 1, 1, 0.4);
183
p_config.disabled_border_color = p_config.mono_color.inverted().lerp(p_config.base_color, 0.7);
184
p_config.disabled_bg_color = p_config.mono_color.inverted().lerp(p_config.base_color, 0.9);
185
p_config.separator_color = Color(p_config.mono_color.r, p_config.mono_color.g, p_config.mono_color.b, 0.1);
186
187
p_theme->set_color("selection_color", EditorStringName(Editor), p_config.selection_color);
188
p_theme->set_color("disabled_border_color", EditorStringName(Editor), p_config.disabled_border_color);
189
p_theme->set_color("disabled_bg_color", EditorStringName(Editor), p_config.disabled_bg_color);
190
p_theme->set_color("separator_color", EditorStringName(Editor), p_config.separator_color);
191
192
// Additional editor colors.
193
194
p_theme->set_color("box_selection_fill_color", EditorStringName(Editor), p_config.accent_color * Color(1, 1, 1, 0.3));
195
p_theme->set_color("box_selection_stroke_color", EditorStringName(Editor), p_config.accent_color * Color(1, 1, 1, 0.8));
196
197
p_theme->set_color("axis_x_color", EditorStringName(Editor), Color(0.96, 0.20, 0.32));
198
p_theme->set_color("axis_y_color", EditorStringName(Editor), Color(0.53, 0.84, 0.01));
199
p_theme->set_color("axis_z_color", EditorStringName(Editor), Color(0.16, 0.55, 0.96));
200
p_theme->set_color("axis_w_color", EditorStringName(Editor), Color(0.55, 0.55, 0.55));
201
202
const float prop_color_saturation = p_config.accent_color.get_s() * 0.75;
203
const float prop_color_value = p_config.accent_color.get_v();
204
205
p_theme->set_color("property_color_x", EditorStringName(Editor), Color::from_hsv(0.0 / 3.0 + 0.05, prop_color_saturation, prop_color_value));
206
p_theme->set_color("property_color_y", EditorStringName(Editor), Color::from_hsv(1.0 / 3.0 + 0.05, prop_color_saturation, prop_color_value));
207
p_theme->set_color("property_color_z", EditorStringName(Editor), Color::from_hsv(2.0 / 3.0 + 0.05, prop_color_saturation, prop_color_value));
208
p_theme->set_color("property_color_w", EditorStringName(Editor), Color::from_hsv(1.5 / 3.0 + 0.05, prop_color_saturation, prop_color_value));
209
210
// Special colors for rendering methods.
211
212
p_theme->set_color("forward_plus_color", EditorStringName(Editor), Color::hex(0x5d8c3fff));
213
p_theme->set_color("mobile_color", EditorStringName(Editor), Color::hex(0xa5557dff));
214
p_theme->set_color("gl_compatibility_color", EditorStringName(Editor), Color::hex(0x5586a4ff));
215
}
216
217
// Constants.
218
{
219
// Can't save single float in theme, so using Color.
220
p_theme->set_color("icon_saturation", EditorStringName(Editor), Color(p_config.icon_saturation, p_config.icon_saturation, p_config.icon_saturation));
221
222
// Controls may rely on the scale for their internal drawing logic.
223
p_theme->set_default_base_scale(EDSCALE);
224
p_theme->set_constant("scale", EditorStringName(Editor), EDSCALE);
225
226
p_theme->set_constant("thumb_size", EditorStringName(Editor), p_config.thumb_size);
227
p_theme->set_constant("class_icon_size", EditorStringName(Editor), p_config.class_icon_size);
228
p_theme->set_constant("gizmo_handle_scale", EditorStringName(Editor), p_config.gizmo_handle_scale);
229
230
p_theme->set_constant("base_margin", EditorStringName(Editor), p_config.base_margin);
231
p_theme->set_constant("increased_margin", EditorStringName(Editor), p_config.increased_margin);
232
p_theme->set_constant("window_border_margin", EditorStringName(Editor), p_config.window_border_margin);
233
p_theme->set_constant("top_bar_separation", EditorStringName(Editor), p_config.top_bar_separation);
234
235
p_theme->set_constant("dark_theme", EditorStringName(Editor), p_config.dark_theme);
236
}
237
238
// Styleboxes.
239
{
240
// This is the basic stylebox, used as a base for most other styleboxes (through `duplicate()`).
241
p_config.base_style = EditorThemeManager::make_flat_stylebox(p_config.base_color, p_config.base_margin, p_config.base_margin, p_config.base_margin, p_config.base_margin, p_config.corner_radius);
242
p_config.base_style->set_border_width_all(p_config.border_width);
243
p_config.base_style->set_border_color(p_config.base_color);
244
245
p_config.base_empty_style = EditorThemeManager::make_empty_stylebox(p_config.base_margin, p_config.base_margin, p_config.base_margin, p_config.base_margin);
246
247
// Button styles.
248
{
249
p_config.widget_margin = Vector2(p_config.increased_margin + 2, p_config.increased_margin + 1) * EDSCALE;
250
251
p_config.button_style = p_config.base_style->duplicate();
252
p_config.button_style->set_content_margin_individual(p_config.widget_margin.x, p_config.widget_margin.y, p_config.widget_margin.x, p_config.widget_margin.y);
253
p_config.button_style->set_bg_color(p_config.dark_color_1);
254
if (p_config.draw_extra_borders) {
255
p_config.button_style->set_border_width_all(Math::round(EDSCALE));
256
p_config.button_style->set_border_color(p_config.extra_border_color_1);
257
} else {
258
p_config.button_style->set_border_color(p_config.dark_color_2);
259
}
260
261
p_config.button_style_disabled = p_config.button_style->duplicate();
262
p_config.button_style_disabled->set_bg_color(p_config.disabled_bg_color);
263
if (p_config.draw_extra_borders) {
264
p_config.button_style_disabled->set_border_color(p_config.extra_border_color_2);
265
} else {
266
p_config.button_style_disabled->set_border_color(p_config.disabled_border_color);
267
}
268
269
p_config.button_style_focus = p_config.button_style->duplicate();
270
p_config.button_style_focus->set_draw_center(false);
271
p_config.button_style_focus->set_border_width_all(Math::round(2 * MAX(1, EDSCALE)));
272
p_config.button_style_focus->set_border_color(p_config.accent_color);
273
274
p_config.button_style_pressed = p_config.button_style->duplicate();
275
p_config.button_style_pressed->set_bg_color(p_config.dark_color_1.darkened(0.125));
276
277
p_config.button_style_hover = p_config.button_style->duplicate();
278
p_config.button_style_hover->set_bg_color(p_config.mono_color * Color(1, 1, 1, 0.11));
279
if (p_config.draw_extra_borders) {
280
p_config.button_style_hover->set_border_color(p_config.extra_border_color_1);
281
} else {
282
p_config.button_style_hover->set_border_color(p_config.mono_color * Color(1, 1, 1, 0.05));
283
}
284
}
285
286
// Windows and popups.
287
{
288
p_config.popup_style = p_config.base_style->duplicate();
289
p_config.popup_style->set_content_margin_all(p_config.popup_margin);
290
p_config.popup_style->set_border_color(p_config.contrast_color_1);
291
p_config.popup_style->set_shadow_color(p_config.shadow_color);
292
p_config.popup_style->set_shadow_size(4 * EDSCALE);
293
// Popups are separate windows by default in the editor. Windows currently don't support per-pixel transparency
294
// in 4.0, and even if it was, it may not always work in practice (e.g. running with compositing disabled).
295
p_config.popup_style->set_corner_radius_all(0);
296
297
p_config.popup_border_style = p_config.popup_style->duplicate();
298
p_config.popup_border_style->set_content_margin_all(MAX(Math::round(EDSCALE), p_config.border_width) + 2 + (p_config.base_margin * 1.5) * EDSCALE);
299
// Always display a border for popups like PopupMenus so they can be distinguished from their background.
300
p_config.popup_border_style->set_border_width_all(MAX(Math::round(EDSCALE), p_config.border_width));
301
if (p_config.draw_extra_borders) {
302
p_config.popup_border_style->set_border_color(p_config.extra_border_color_2);
303
} else {
304
p_config.popup_border_style->set_border_color(p_config.dark_color_2);
305
}
306
307
p_config.window_style = p_config.popup_style->duplicate();
308
p_config.window_style->set_border_color(p_config.base_color);
309
p_config.window_style->set_border_width(SIDE_TOP, 24 * EDSCALE);
310
p_config.window_style->set_expand_margin(SIDE_TOP, 24 * EDSCALE);
311
312
// Prevent corner artifacts between window title and body.
313
p_config.dialog_style = p_config.base_style->duplicate();
314
p_config.dialog_style->set_corner_radius(CORNER_TOP_LEFT, 0);
315
p_config.dialog_style->set_corner_radius(CORNER_TOP_RIGHT, 0);
316
p_config.dialog_style->set_content_margin_all(p_config.popup_margin);
317
// Prevent visible line between window title and body.
318
p_config.dialog_style->set_expand_margin(SIDE_BOTTOM, 2 * EDSCALE);
319
}
320
321
// Panels.
322
{
323
p_config.panel_container_style = p_config.button_style->duplicate();
324
p_config.panel_container_style->set_draw_center(false);
325
p_config.panel_container_style->set_border_width_all(0);
326
327
// Content panel for tabs and similar containers.
328
329
// Compensate for the border.
330
const int content_panel_margin = p_config.base_margin * EDSCALE + p_config.border_width;
331
332
p_config.content_panel_style = p_config.base_style->duplicate();
333
p_config.content_panel_style->set_border_color(p_config.dark_color_3);
334
p_config.content_panel_style->set_border_width_all(p_config.border_width);
335
p_config.content_panel_style->set_border_width(Side::SIDE_TOP, 0);
336
p_config.content_panel_style->set_corner_radius(CORNER_TOP_LEFT, 0);
337
p_config.content_panel_style->set_corner_radius(CORNER_TOP_RIGHT, 0);
338
p_config.content_panel_style->set_content_margin_individual(content_panel_margin, 2 * EDSCALE + content_panel_margin, content_panel_margin, content_panel_margin);
339
340
p_config.tab_container_style = p_config.content_panel_style;
341
342
// Trees and similarly inset panels.
343
344
p_config.tree_panel_style = p_config.base_style->duplicate();
345
// Make Trees easier to distinguish from other controls by using a darker background color.
346
p_config.tree_panel_style->set_bg_color(p_config.dark_color_1.lerp(p_config.dark_color_2, 0.5));
347
if (p_config.draw_extra_borders) {
348
p_config.tree_panel_style->set_border_width_all(Math::round(EDSCALE));
349
p_config.tree_panel_style->set_border_color(p_config.extra_border_color_2);
350
} else {
351
p_config.tree_panel_style->set_border_color(p_config.dark_color_3);
352
}
353
}
354
}
355
}
356
357
void ThemeClassic::populate_standard_styles(const Ref<EditorTheme> &p_theme, EditorThemeManager::ThemeConfiguration &p_config) {
358
// Panels.
359
{
360
// Panel.
361
p_theme->set_stylebox(SceneStringName(panel), "Panel", EditorThemeManager::make_flat_stylebox(p_config.dark_color_1, 6, 4, 6, 4, p_config.corner_radius));
362
363
// PanelContainer.
364
p_theme->set_stylebox(SceneStringName(panel), "PanelContainer", p_config.panel_container_style);
365
366
// TooltipPanel & TooltipLabel.
367
{
368
// TooltipPanel is also used for custom tooltips, while TooltipLabel
369
// is only relevant for default tooltips.
370
371
p_theme->set_color(SceneStringName(font_color), "TooltipLabel", p_config.font_hover_color);
372
p_theme->set_color("font_shadow_color", "TooltipLabel", Color(0, 0, 0, 0));
373
374
Ref<StyleBoxFlat> style_tooltip = p_config.popup_style->duplicate();
375
style_tooltip->set_shadow_size(0);
376
style_tooltip->set_content_margin_all(p_config.base_margin * EDSCALE * 0.5);
377
style_tooltip->set_bg_color(p_config.dark_color_3 * Color(0.8, 0.8, 0.8, 0.9));
378
if (p_config.draw_extra_borders) {
379
style_tooltip->set_border_width_all(Math::round(EDSCALE));
380
style_tooltip->set_border_color(p_config.extra_border_color_2);
381
} else {
382
style_tooltip->set_border_width_all(0);
383
}
384
p_theme->set_stylebox(SceneStringName(panel), "TooltipPanel", style_tooltip);
385
}
386
387
// PopupPanel
388
p_theme->set_stylebox(SceneStringName(panel), "PopupPanel", p_config.popup_border_style);
389
}
390
391
// Buttons.
392
{
393
// Button.
394
395
p_theme->set_stylebox(CoreStringName(normal), "Button", p_config.button_style);
396
p_theme->set_stylebox(SceneStringName(hover), "Button", p_config.button_style_hover);
397
p_theme->set_stylebox(SceneStringName(pressed), "Button", p_config.button_style_pressed);
398
p_theme->set_stylebox("focus", "Button", p_config.button_style_focus);
399
p_theme->set_stylebox("disabled", "Button", p_config.button_style_disabled);
400
401
p_theme->set_color(SceneStringName(font_color), "Button", p_config.font_color);
402
p_theme->set_color("font_hover_color", "Button", p_config.font_hover_color);
403
p_theme->set_color("font_hover_pressed_color", "Button", p_config.font_hover_pressed_color);
404
p_theme->set_color("font_focus_color", "Button", p_config.font_focus_color);
405
p_theme->set_color("font_pressed_color", "Button", p_config.font_pressed_color);
406
p_theme->set_color("font_disabled_color", "Button", p_config.font_disabled_color);
407
p_theme->set_color("font_outline_color", "Button", p_config.font_outline_color);
408
409
p_theme->set_color("icon_normal_color", "Button", p_config.icon_normal_color);
410
p_theme->set_color("icon_hover_color", "Button", p_config.icon_hover_color);
411
p_theme->set_color("icon_focus_color", "Button", p_config.icon_focus_color);
412
p_theme->set_color("icon_hover_pressed_color", "Button", p_config.icon_pressed_color);
413
p_theme->set_color("icon_pressed_color", "Button", p_config.icon_pressed_color);
414
p_theme->set_color("icon_disabled_color", "Button", p_config.icon_disabled_color);
415
416
p_theme->set_constant("h_separation", "Button", 4 * EDSCALE);
417
p_theme->set_constant("outline_size", "Button", 0);
418
419
p_theme->set_constant("align_to_largest_stylebox", "Button", 1); // Enabled.
420
421
// MenuButton.
422
423
p_theme->set_stylebox(CoreStringName(normal), "MenuButton", p_config.panel_container_style);
424
p_theme->set_stylebox(SceneStringName(hover), "MenuButton", p_config.button_style_hover);
425
p_theme->set_stylebox(SceneStringName(pressed), "MenuButton", p_config.panel_container_style);
426
p_theme->set_stylebox("focus", "MenuButton", p_config.panel_container_style);
427
p_theme->set_stylebox("disabled", "MenuButton", p_config.panel_container_style);
428
429
p_theme->set_color(SceneStringName(font_color), "MenuButton", p_config.font_color);
430
p_theme->set_color("font_hover_color", "MenuButton", p_config.font_hover_color);
431
p_theme->set_color("font_hover_pressed_color", "MenuButton", p_config.font_hover_pressed_color);
432
p_theme->set_color("font_focus_color", "MenuButton", p_config.font_focus_color);
433
p_theme->set_color("font_outline_color", "MenuButton", p_config.font_outline_color);
434
435
p_theme->set_constant("outline_size", "MenuButton", 0);
436
437
// MenuBar.
438
439
p_theme->set_stylebox(CoreStringName(normal), "MenuBar", p_config.button_style);
440
p_theme->set_stylebox(SceneStringName(hover), "MenuBar", p_config.button_style_hover);
441
p_theme->set_stylebox(SceneStringName(pressed), "MenuBar", p_config.button_style_pressed);
442
p_theme->set_stylebox("disabled", "MenuBar", p_config.button_style_disabled);
443
444
p_theme->set_color(SceneStringName(font_color), "MenuBar", p_config.font_color);
445
p_theme->set_color("font_hover_color", "MenuBar", p_config.font_hover_color);
446
p_theme->set_color("font_hover_pressed_color", "MenuBar", p_config.font_hover_pressed_color);
447
p_theme->set_color("font_focus_color", "MenuBar", p_config.font_focus_color);
448
p_theme->set_color("font_pressed_color", "MenuBar", p_config.font_pressed_color);
449
p_theme->set_color("font_disabled_color", "MenuBar", p_config.font_disabled_color);
450
p_theme->set_color("font_outline_color", "MenuBar", p_config.font_outline_color);
451
452
p_theme->set_constant("h_separation", "MenuBar", 4 * EDSCALE);
453
p_theme->set_constant("outline_size", "MenuBar", 0);
454
455
// OptionButton.
456
{
457
Ref<StyleBoxFlat> option_button_focus_style = p_config.button_style_focus->duplicate();
458
Ref<StyleBoxFlat> option_button_normal_style = p_config.button_style->duplicate();
459
Ref<StyleBoxFlat> option_button_hover_style = p_config.button_style_hover->duplicate();
460
Ref<StyleBoxFlat> option_button_pressed_style = p_config.button_style_pressed->duplicate();
461
Ref<StyleBoxFlat> option_button_disabled_style = p_config.button_style_disabled->duplicate();
462
463
option_button_focus_style->set_content_margin(SIDE_RIGHT, 4 * EDSCALE);
464
option_button_normal_style->set_content_margin(SIDE_RIGHT, 4 * EDSCALE);
465
option_button_hover_style->set_content_margin(SIDE_RIGHT, 4 * EDSCALE);
466
option_button_pressed_style->set_content_margin(SIDE_RIGHT, 4 * EDSCALE);
467
option_button_disabled_style->set_content_margin(SIDE_RIGHT, 4 * EDSCALE);
468
469
p_theme->set_stylebox("focus", "OptionButton", option_button_focus_style);
470
p_theme->set_stylebox(CoreStringName(normal), "OptionButton", p_config.button_style);
471
p_theme->set_stylebox(SceneStringName(hover), "OptionButton", p_config.button_style_hover);
472
p_theme->set_stylebox(SceneStringName(pressed), "OptionButton", p_config.button_style_pressed);
473
p_theme->set_stylebox("disabled", "OptionButton", p_config.button_style_disabled);
474
475
p_theme->set_stylebox("normal_mirrored", "OptionButton", option_button_normal_style);
476
p_theme->set_stylebox("hover_mirrored", "OptionButton", option_button_hover_style);
477
p_theme->set_stylebox("pressed_mirrored", "OptionButton", option_button_pressed_style);
478
p_theme->set_stylebox("disabled_mirrored", "OptionButton", option_button_disabled_style);
479
480
p_theme->set_color(SceneStringName(font_color), "OptionButton", p_config.font_color);
481
p_theme->set_color("font_hover_color", "OptionButton", p_config.font_hover_color);
482
p_theme->set_color("font_hover_pressed_color", "OptionButton", p_config.font_hover_pressed_color);
483
p_theme->set_color("font_focus_color", "OptionButton", p_config.font_focus_color);
484
p_theme->set_color("font_pressed_color", "OptionButton", p_config.font_pressed_color);
485
p_theme->set_color("font_disabled_color", "OptionButton", p_config.font_disabled_color);
486
p_theme->set_color("font_outline_color", "OptionButton", p_config.font_outline_color);
487
488
p_theme->set_color("icon_normal_color", "OptionButton", p_config.icon_normal_color);
489
p_theme->set_color("icon_hover_color", "OptionButton", p_config.icon_hover_color);
490
p_theme->set_color("icon_focus_color", "OptionButton", p_config.icon_focus_color);
491
p_theme->set_color("icon_pressed_color", "OptionButton", p_config.icon_pressed_color);
492
p_theme->set_color("icon_disabled_color", "OptionButton", p_config.icon_disabled_color);
493
494
p_theme->set_icon("arrow", "OptionButton", p_theme->get_icon(SNAME("GuiOptionArrow"), EditorStringName(EditorIcons)));
495
p_theme->set_constant("arrow_margin", "OptionButton", p_config.widget_margin.x - 2 * EDSCALE);
496
p_theme->set_constant("modulate_arrow", "OptionButton", true);
497
p_theme->set_constant("h_separation", "OptionButton", 4 * EDSCALE);
498
p_theme->set_constant("outline_size", "OptionButton", 0);
499
}
500
501
// CheckButton.
502
503
p_theme->set_stylebox(CoreStringName(normal), "CheckButton", p_config.panel_container_style);
504
p_theme->set_stylebox(SceneStringName(pressed), "CheckButton", p_config.panel_container_style);
505
p_theme->set_stylebox("disabled", "CheckButton", p_config.panel_container_style);
506
p_theme->set_stylebox(SceneStringName(hover), "CheckButton", p_config.panel_container_style);
507
p_theme->set_stylebox("hover_pressed", "CheckButton", p_config.panel_container_style);
508
509
p_theme->set_icon("checked", "CheckButton", p_theme->get_icon(SNAME("GuiToggleOn"), EditorStringName(EditorIcons)));
510
p_theme->set_icon("checked_disabled", "CheckButton", p_theme->get_icon(SNAME("GuiToggleOnDisabled"), EditorStringName(EditorIcons)));
511
p_theme->set_icon("unchecked", "CheckButton", p_theme->get_icon(SNAME("GuiToggleOff"), EditorStringName(EditorIcons)));
512
p_theme->set_icon("unchecked_disabled", "CheckButton", p_theme->get_icon(SNAME("GuiToggleOffDisabled"), EditorStringName(EditorIcons)));
513
514
p_theme->set_icon("checked_mirrored", "CheckButton", p_theme->get_icon(SNAME("GuiToggleOnMirrored"), EditorStringName(EditorIcons)));
515
p_theme->set_icon("checked_disabled_mirrored", "CheckButton", p_theme->get_icon(SNAME("GuiToggleOnDisabledMirrored"), EditorStringName(EditorIcons)));
516
p_theme->set_icon("unchecked_mirrored", "CheckButton", p_theme->get_icon(SNAME("GuiToggleOffMirrored"), EditorStringName(EditorIcons)));
517
p_theme->set_icon("unchecked_disabled_mirrored", "CheckButton", p_theme->get_icon(SNAME("GuiToggleOffDisabledMirrored"), EditorStringName(EditorIcons)));
518
519
p_theme->set_color(SceneStringName(font_color), "CheckButton", p_config.font_color);
520
p_theme->set_color("font_hover_color", "CheckButton", p_config.font_hover_color);
521
p_theme->set_color("font_hover_pressed_color", "CheckButton", p_config.font_hover_pressed_color);
522
p_theme->set_color("font_focus_color", "CheckButton", p_config.font_focus_color);
523
p_theme->set_color("font_pressed_color", "CheckButton", p_config.font_pressed_color);
524
p_theme->set_color("font_disabled_color", "CheckButton", p_config.font_disabled_color);
525
p_theme->set_color("font_outline_color", "CheckButton", p_config.font_outline_color);
526
527
p_theme->set_color("icon_normal_color", "CheckButton", p_config.icon_normal_color);
528
p_theme->set_color("icon_hover_color", "CheckButton", p_config.icon_hover_color);
529
p_theme->set_color("icon_focus_color", "CheckButton", p_config.icon_focus_color);
530
p_theme->set_color("icon_pressed_color", "CheckButton", p_config.icon_pressed_color);
531
p_theme->set_color("icon_disabled_color", "CheckButton", p_config.icon_disabled_color);
532
533
p_theme->set_constant("h_separation", "CheckButton", 8 * EDSCALE);
534
p_theme->set_constant("check_v_offset", "CheckButton", 0);
535
p_theme->set_constant("outline_size", "CheckButton", 0);
536
537
// CheckBox.
538
{
539
Ref<StyleBoxFlat> checkbox_style = p_config.panel_container_style->duplicate();
540
541
p_theme->set_stylebox(CoreStringName(normal), "CheckBox", checkbox_style);
542
p_theme->set_stylebox(SceneStringName(pressed), "CheckBox", checkbox_style);
543
p_theme->set_stylebox("disabled", "CheckBox", checkbox_style);
544
p_theme->set_stylebox(SceneStringName(hover), "CheckBox", checkbox_style);
545
p_theme->set_stylebox("hover_pressed", "CheckBox", checkbox_style);
546
547
p_theme->set_icon("checked", "CheckBox", p_theme->get_icon(SNAME("GuiChecked"), EditorStringName(EditorIcons)));
548
p_theme->set_icon("unchecked", "CheckBox", p_theme->get_icon(SNAME("GuiUnchecked"), EditorStringName(EditorIcons)));
549
p_theme->set_icon("radio_checked", "CheckBox", p_theme->get_icon(SNAME("GuiRadioChecked"), EditorStringName(EditorIcons)));
550
p_theme->set_icon("radio_unchecked", "CheckBox", p_theme->get_icon(SNAME("GuiRadioUnchecked"), EditorStringName(EditorIcons)));
551
p_theme->set_icon("checked_disabled", "CheckBox", p_theme->get_icon(SNAME("GuiCheckedDisabled"), EditorStringName(EditorIcons)));
552
p_theme->set_icon("unchecked_disabled", "CheckBox", p_theme->get_icon(SNAME("GuiUncheckedDisabled"), EditorStringName(EditorIcons)));
553
p_theme->set_icon("radio_checked_disabled", "CheckBox", p_theme->get_icon(SNAME("GuiRadioCheckedDisabled"), EditorStringName(EditorIcons)));
554
p_theme->set_icon("radio_unchecked_disabled", "CheckBox", p_theme->get_icon(SNAME("GuiRadioUncheckedDisabled"), EditorStringName(EditorIcons)));
555
556
p_theme->set_color(SceneStringName(font_color), "CheckBox", p_config.font_color);
557
p_theme->set_color("font_hover_color", "CheckBox", p_config.font_hover_color);
558
p_theme->set_color("font_hover_pressed_color", "CheckBox", p_config.font_hover_pressed_color);
559
p_theme->set_color("font_focus_color", "CheckBox", p_config.font_focus_color);
560
p_theme->set_color("font_pressed_color", "CheckBox", p_config.font_pressed_color);
561
p_theme->set_color("font_disabled_color", "CheckBox", p_config.font_disabled_color);
562
p_theme->set_color("font_outline_color", "CheckBox", p_config.font_outline_color);
563
564
p_theme->set_color("icon_normal_color", "CheckBox", p_config.icon_normal_color);
565
p_theme->set_color("icon_hover_color", "CheckBox", p_config.icon_hover_color);
566
p_theme->set_color("icon_focus_color", "CheckBox", p_config.icon_focus_color);
567
p_theme->set_color("icon_pressed_color", "CheckBox", p_config.icon_pressed_color);
568
p_theme->set_color("icon_disabled_color", "CheckBox", p_config.icon_disabled_color);
569
570
p_theme->set_constant("h_separation", "CheckBox", 8 * EDSCALE);
571
p_theme->set_constant("check_v_offset", "CheckBox", 0);
572
p_theme->set_constant("outline_size", "CheckBox", 0);
573
}
574
575
// LinkButton.
576
577
p_theme->set_stylebox("focus", "LinkButton", p_config.base_empty_style);
578
579
p_theme->set_color(SceneStringName(font_color), "LinkButton", p_config.font_color);
580
p_theme->set_color("font_hover_color", "LinkButton", p_config.font_hover_color);
581
p_theme->set_color("font_hover_pressed_color", "LinkButton", p_config.font_hover_pressed_color);
582
p_theme->set_color("font_focus_color", "LinkButton", p_config.font_focus_color);
583
p_theme->set_color("font_pressed_color", "LinkButton", p_config.font_pressed_color);
584
p_theme->set_color("font_disabled_color", "LinkButton", p_config.font_disabled_color);
585
p_theme->set_color("font_outline_color", "LinkButton", p_config.font_outline_color);
586
587
p_theme->set_constant("outline_size", "LinkButton", 0);
588
}
589
590
// Tree & ItemList.
591
{
592
Ref<StyleBoxFlat> style_tree_focus = p_config.base_style->duplicate();
593
style_tree_focus->set_bg_color(p_config.highlight_color);
594
style_tree_focus->set_border_width_all(0);
595
596
Ref<StyleBoxFlat> style_tree_selected = style_tree_focus->duplicate();
597
598
const Color guide_color = p_config.mono_color * Color(1, 1, 1, 0.05);
599
600
// Tree.
601
{
602
p_theme->set_icon("checked", "Tree", p_theme->get_icon(SNAME("GuiChecked"), EditorStringName(EditorIcons)));
603
p_theme->set_icon("checked_disabled", "Tree", p_theme->get_icon(SNAME("GuiCheckedDisabled"), EditorStringName(EditorIcons)));
604
p_theme->set_icon("indeterminate", "Tree", p_theme->get_icon(SNAME("GuiIndeterminate"), EditorStringName(EditorIcons)));
605
p_theme->set_icon("indeterminate_disabled", "Tree", p_theme->get_icon(SNAME("GuiIndeterminateDisabled"), EditorStringName(EditorIcons)));
606
p_theme->set_icon("unchecked", "Tree", p_theme->get_icon(SNAME("GuiUnchecked"), EditorStringName(EditorIcons)));
607
p_theme->set_icon("unchecked_disabled", "Tree", p_theme->get_icon(SNAME("GuiUncheckedDisabled"), EditorStringName(EditorIcons)));
608
p_theme->set_icon("arrow", "Tree", p_theme->get_icon(SNAME("GuiTreeArrowDown"), EditorStringName(EditorIcons)));
609
p_theme->set_icon("arrow_collapsed", "Tree", p_theme->get_icon(SNAME("GuiTreeArrowRight"), EditorStringName(EditorIcons)));
610
p_theme->set_icon("arrow_collapsed_mirrored", "Tree", p_theme->get_icon(SNAME("GuiTreeArrowLeft"), EditorStringName(EditorIcons)));
611
p_theme->set_icon("updown", "Tree", p_theme->get_icon(SNAME("GuiTreeUpdown"), EditorStringName(EditorIcons)));
612
p_theme->set_icon("select_arrow", "Tree", p_theme->get_icon(SNAME("GuiDropdown"), EditorStringName(EditorIcons)));
613
614
p_theme->set_stylebox(SceneStringName(panel), "Tree", p_config.tree_panel_style);
615
p_theme->set_stylebox("focus", "Tree", p_config.button_style_focus);
616
p_theme->set_stylebox("custom_button", "Tree", EditorThemeManager::make_empty_stylebox());
617
p_theme->set_stylebox("custom_button_pressed", "Tree", EditorThemeManager::make_empty_stylebox());
618
p_theme->set_stylebox("custom_button_hover", "Tree", p_config.button_style);
619
620
p_theme->set_color("custom_button_font_highlight", "Tree", p_config.font_hover_color);
621
p_theme->set_color(SceneStringName(font_color), "Tree", p_config.font_color);
622
p_theme->set_color("font_hovered_color", "Tree", p_config.mono_color_font);
623
p_theme->set_color("font_hovered_dimmed_color", "Tree", p_config.font_color);
624
p_theme->set_color("font_hovered_selected_color", "Tree", p_config.mono_color_font);
625
p_theme->set_color("font_selected_color", "Tree", p_config.mono_color_font);
626
p_theme->set_color("font_disabled_color", "Tree", p_config.font_disabled_color);
627
p_theme->set_color("font_outline_color", "Tree", p_config.font_outline_color);
628
p_theme->set_color("title_button_color", "Tree", p_config.font_color);
629
p_theme->set_color("drop_position_color", "Tree", p_config.accent_color);
630
631
p_theme->set_constant("v_separation", "Tree", p_config.separation_margin);
632
p_theme->set_constant("h_separation", "Tree", (p_config.increased_margin + 2) * EDSCALE);
633
p_theme->set_constant("guide_width", "Tree", p_config.border_width);
634
p_theme->set_constant("item_margin", "Tree", MAX(3 * p_config.increased_margin * EDSCALE, 12 * EDSCALE));
635
p_theme->set_constant("inner_item_margin_top", "Tree", p_config.separation_margin);
636
p_theme->set_constant("inner_item_margin_bottom", "Tree", p_config.separation_margin);
637
p_theme->set_constant("inner_item_margin_left", "Tree", p_config.increased_margin * EDSCALE);
638
p_theme->set_constant("inner_item_margin_right", "Tree", p_config.increased_margin * EDSCALE);
639
p_theme->set_constant("button_margin", "Tree", p_config.base_margin * EDSCALE);
640
p_theme->set_constant("dragging_unfold_wait_msec", "Tree", p_config.dragging_hover_wait_msec);
641
p_theme->set_constant("scroll_border", "Tree", 40 * EDSCALE);
642
p_theme->set_constant("scroll_speed", "Tree", 12);
643
p_theme->set_constant("outline_size", "Tree", 0);
644
p_theme->set_constant("scrollbar_margin_left", "Tree", 0);
645
p_theme->set_constant("scrollbar_margin_top", "Tree", 0);
646
p_theme->set_constant("scrollbar_margin_right", "Tree", 0);
647
p_theme->set_constant("scrollbar_margin_bottom", "Tree", 0);
648
p_theme->set_constant("scrollbar_h_separation", "Tree", 1 * EDSCALE);
649
p_theme->set_constant("scrollbar_v_separation", "Tree", 1 * EDSCALE);
650
651
Color relationship_line_color = p_config.mono_color * Color(1, 1, 1, p_config.relationship_line_opacity);
652
653
int draw_relationship_lines = 0;
654
int relationship_line_width = 0;
655
int highlighted_line_width = 2;
656
if (p_config.draw_relationship_lines == EditorThemeManager::RELATIONSHIP_ALL) {
657
draw_relationship_lines = 1;
658
relationship_line_width = highlighted_line_width;
659
} else if (p_config.draw_relationship_lines == EditorThemeManager::RELATIONSHIP_SELECTED_ONLY) {
660
draw_relationship_lines = 1;
661
}
662
663
p_theme->set_constant("draw_guides", "Tree", !draw_relationship_lines || p_config.relationship_line_opacity < 0.01);
664
p_theme->set_color("guide_color", "Tree", guide_color);
665
666
Color parent_line_color = p_config.mono_color * Color(1, 1, 1, CLAMP(p_config.relationship_line_opacity + 0.45, 0.0, 1.0));
667
Color children_line_color = p_config.mono_color * Color(1, 1, 1, CLAMP(p_config.relationship_line_opacity + 0.25, 0.0, 1.0));
668
669
p_theme->set_constant("draw_relationship_lines", "Tree", draw_relationship_lines && p_config.relationship_line_opacity >= 0.01);
670
p_theme->set_constant("relationship_line_width", "Tree", relationship_line_width);
671
p_theme->set_constant("parent_hl_line_width", "Tree", highlighted_line_width);
672
p_theme->set_constant("children_hl_line_width", "Tree", highlighted_line_width / 2);
673
p_theme->set_constant("parent_hl_line_margin", "Tree", 3);
674
p_theme->set_color("relationship_line_color", "Tree", relationship_line_color);
675
p_theme->set_color("parent_hl_line_color", "Tree", parent_line_color);
676
p_theme->set_color("children_hl_line_color", "Tree", children_line_color);
677
p_theme->set_color("drop_position_color", "Tree", p_config.accent_color);
678
679
Ref<StyleBoxFlat> style_tree_btn = p_config.base_style->duplicate();
680
style_tree_btn->set_bg_color(p_config.highlight_color);
681
style_tree_btn->set_border_width_all(0);
682
p_theme->set_stylebox("button_pressed", "Tree", style_tree_btn);
683
684
Ref<StyleBoxFlat> style_tree_hover = p_config.base_style->duplicate();
685
style_tree_hover->set_bg_color(p_config.highlight_color * Color(1, 1, 1, 0.4));
686
style_tree_hover->set_border_width_all(0);
687
p_theme->set_stylebox("hovered", "Tree", style_tree_hover);
688
p_theme->set_stylebox("button_hover", "Tree", style_tree_hover);
689
690
Ref<StyleBoxFlat> style_tree_hover_dimmed = p_config.base_style->duplicate();
691
style_tree_hover_dimmed->set_bg_color(p_config.highlight_color * Color(1, 1, 1, 0.2));
692
style_tree_hover_dimmed->set_border_width_all(0);
693
p_theme->set_stylebox("hovered_dimmed", "Tree", style_tree_hover_dimmed);
694
695
Ref<StyleBoxFlat> style_tree_hover_selected = style_tree_selected->duplicate();
696
style_tree_hover_selected->set_bg_color(p_config.highlight_color * Color(1, 1, 1, 1.2));
697
style_tree_hover_selected->set_border_width_all(0);
698
699
p_theme->set_stylebox("hovered_selected", "Tree", style_tree_hover_selected);
700
p_theme->set_stylebox("hovered_selected_focus", "Tree", style_tree_hover_selected);
701
702
p_theme->set_stylebox("selected_focus", "Tree", style_tree_focus);
703
p_theme->set_stylebox("selected", "Tree", style_tree_selected);
704
705
Ref<StyleBoxFlat> style_tree_cursor = p_config.base_style->duplicate();
706
style_tree_cursor->set_draw_center(false);
707
style_tree_cursor->set_border_width_all(MAX(1, p_config.border_width));
708
style_tree_cursor->set_border_color(p_config.contrast_color_1);
709
710
Ref<StyleBoxFlat> style_tree_title = p_config.base_style->duplicate();
711
style_tree_title->set_bg_color(p_config.dark_color_3);
712
style_tree_title->set_border_width_all(0);
713
p_theme->set_stylebox("cursor", "Tree", style_tree_cursor);
714
p_theme->set_stylebox("cursor_unfocused", "Tree", style_tree_cursor);
715
p_theme->set_stylebox("title_button_normal", "Tree", style_tree_title);
716
p_theme->set_stylebox("title_button_hover", "Tree", style_tree_title);
717
p_theme->set_stylebox("title_button_pressed", "Tree", style_tree_title);
718
}
719
720
// ItemList.
721
{
722
Ref<StyleBoxFlat> style_itemlist_bg = p_config.base_style->duplicate();
723
style_itemlist_bg->set_content_margin_all(p_config.separation_margin);
724
style_itemlist_bg->set_bg_color(p_config.dark_color_1);
725
726
if (p_config.draw_extra_borders) {
727
style_itemlist_bg->set_border_width_all(Math::round(EDSCALE));
728
style_itemlist_bg->set_border_color(p_config.extra_border_color_2);
729
} else {
730
style_itemlist_bg->set_border_width_all(p_config.border_width);
731
style_itemlist_bg->set_border_color(p_config.dark_color_3);
732
}
733
734
Ref<StyleBoxFlat> style_itemlist_cursor = p_config.base_style->duplicate();
735
style_itemlist_cursor->set_draw_center(false);
736
style_itemlist_cursor->set_border_width_all(MAX(1 * EDSCALE, p_config.border_width));
737
style_itemlist_cursor->set_border_color(p_config.highlight_color);
738
739
Ref<StyleBoxFlat> style_itemlist_hover = style_tree_selected->duplicate();
740
style_itemlist_hover->set_bg_color(p_config.highlight_color * Color(1, 1, 1, 0.3));
741
style_itemlist_hover->set_border_width_all(0);
742
743
Ref<StyleBoxFlat> style_itemlist_hover_selected = style_tree_selected->duplicate();
744
style_itemlist_hover_selected->set_bg_color(p_config.highlight_color * Color(1, 1, 1, 1.2));
745
style_itemlist_hover_selected->set_border_width_all(0);
746
747
p_theme->set_stylebox(SceneStringName(panel), "ItemList", style_itemlist_bg);
748
p_theme->set_stylebox("focus", "ItemList", p_config.button_style_focus);
749
p_theme->set_stylebox("cursor", "ItemList", style_itemlist_cursor);
750
p_theme->set_stylebox("cursor_unfocused", "ItemList", style_itemlist_cursor);
751
p_theme->set_stylebox("selected_focus", "ItemList", style_tree_focus);
752
p_theme->set_stylebox("selected", "ItemList", style_tree_selected);
753
p_theme->set_stylebox("hovered", "ItemList", style_itemlist_hover);
754
p_theme->set_stylebox("hovered_selected", "ItemList", style_itemlist_hover_selected);
755
p_theme->set_stylebox("hovered_selected_focus", "ItemList", style_itemlist_hover_selected);
756
p_theme->set_color(SceneStringName(font_color), "ItemList", p_config.font_color);
757
p_theme->set_color("font_hovered_color", "ItemList", p_config.mono_color_font);
758
p_theme->set_color("font_hovered_selected_color", "ItemList", p_config.mono_color_font);
759
p_theme->set_color("font_selected_color", "ItemList", p_config.mono_color_font);
760
p_theme->set_color("font_outline_color", "ItemList", p_config.font_outline_color);
761
p_theme->set_color("guide_color", "ItemList", Color(1, 1, 1, 0));
762
p_theme->set_constant("v_separation", "ItemList", p_config.forced_even_separation * EDSCALE);
763
p_theme->set_constant("h_separation", "ItemList", (p_config.increased_margin + 2) * EDSCALE);
764
p_theme->set_constant("icon_margin", "ItemList", (p_config.increased_margin + 2) * EDSCALE);
765
p_theme->set_constant(SceneStringName(line_separation), "ItemList", p_config.separation_margin);
766
p_theme->set_constant("outline_size", "ItemList", 0);
767
}
768
}
769
770
// TabBar & TabContainer.
771
{
772
Ref<StyleBoxFlat> style_tab_base = p_config.button_style->duplicate();
773
774
style_tab_base->set_border_width_all(0);
775
// Don't round the top corners to avoid creating a small blank space between the tabs and the main panel.
776
// This also makes the top highlight look better.
777
style_tab_base->set_corner_radius(CORNER_BOTTOM_LEFT, 0);
778
style_tab_base->set_corner_radius(CORNER_BOTTOM_RIGHT, 0);
779
780
// When using a border width greater than 0, visually line up the left of the selected tab with the underlying panel.
781
style_tab_base->set_expand_margin(SIDE_LEFT, -p_config.border_width);
782
783
style_tab_base->set_content_margin(SIDE_LEFT, p_config.widget_margin.x + 5 * EDSCALE);
784
style_tab_base->set_content_margin(SIDE_RIGHT, p_config.widget_margin.x + 5 * EDSCALE);
785
style_tab_base->set_content_margin(SIDE_BOTTOM, p_config.widget_margin.y);
786
style_tab_base->set_content_margin(SIDE_TOP, p_config.widget_margin.y);
787
788
Ref<StyleBoxFlat> style_tab_selected = style_tab_base->duplicate();
789
790
style_tab_selected->set_bg_color(p_config.base_color);
791
// Add a highlight line at the top of the selected tab.
792
style_tab_selected->set_border_width(SIDE_TOP, Math::round(2 * EDSCALE));
793
// Make the highlight line prominent, but not too prominent as to not be distracting.
794
Color tab_highlight = p_config.dark_color_2.lerp(p_config.accent_color, 0.75);
795
style_tab_selected->set_border_color(tab_highlight);
796
style_tab_selected->set_corner_radius_all(0);
797
798
Ref<StyleBoxFlat> style_tab_hovered = style_tab_base->duplicate();
799
800
style_tab_hovered->set_bg_color(p_config.dark_color_1.lerp(p_config.base_color, 0.4));
801
// Hovered tab has a subtle highlight between normal and selected states.
802
style_tab_hovered->set_corner_radius_all(0);
803
804
Ref<StyleBoxFlat> style_tab_unselected = style_tab_base->duplicate();
805
style_tab_unselected->set_expand_margin(SIDE_BOTTOM, 0);
806
style_tab_unselected->set_bg_color(p_config.dark_color_1);
807
// Add some spacing between unselected tabs to make them easier to distinguish from each other
808
style_tab_unselected->set_border_color(Color(0, 0, 0, 0));
809
810
Ref<StyleBoxFlat> style_tab_disabled = style_tab_base->duplicate();
811
style_tab_disabled->set_expand_margin(SIDE_BOTTOM, 0);
812
style_tab_disabled->set_bg_color(p_config.disabled_bg_color);
813
style_tab_disabled->set_border_color(p_config.disabled_bg_color);
814
815
Ref<StyleBoxFlat> style_tab_focus = p_config.button_style_focus->duplicate();
816
817
Ref<StyleBoxFlat> style_tabbar_background = EditorThemeManager::make_flat_stylebox(p_config.dark_color_1, 0, 0, 0, 0, p_config.corner_radius);
818
style_tabbar_background->set_corner_radius(CORNER_BOTTOM_LEFT, 0);
819
style_tabbar_background->set_corner_radius(CORNER_BOTTOM_RIGHT, 0);
820
p_theme->set_stylebox("tabbar_background", "TabContainer", style_tabbar_background);
821
p_theme->set_stylebox(SceneStringName(panel), "TabContainer", p_config.tab_container_style);
822
823
p_theme->set_stylebox("tab_selected", "TabContainer", style_tab_selected);
824
p_theme->set_stylebox("tab_hovered", "TabContainer", style_tab_hovered);
825
p_theme->set_stylebox("tab_unselected", "TabContainer", style_tab_unselected);
826
p_theme->set_stylebox("tab_disabled", "TabContainer", style_tab_disabled);
827
p_theme->set_stylebox("tab_focus", "TabContainer", style_tab_focus);
828
p_theme->set_stylebox("tab_selected", "TabBar", style_tab_selected);
829
p_theme->set_stylebox("tab_hovered", "TabBar", style_tab_hovered);
830
p_theme->set_stylebox("tab_unselected", "TabBar", style_tab_unselected);
831
p_theme->set_stylebox("tab_disabled", "TabBar", style_tab_disabled);
832
p_theme->set_stylebox("tab_focus", "TabBar", style_tab_focus);
833
p_theme->set_stylebox("button_pressed", "TabBar", p_config.panel_container_style);
834
p_theme->set_stylebox("button_highlight", "TabBar", p_config.panel_container_style);
835
836
p_theme->set_color("font_selected_color", "TabContainer", p_config.font_color);
837
p_theme->set_color("font_hovered_color", "TabContainer", p_config.font_color);
838
p_theme->set_color("font_unselected_color", "TabContainer", p_config.font_disabled_color);
839
p_theme->set_color("font_outline_color", "TabContainer", p_config.font_outline_color);
840
p_theme->set_color("font_selected_color", "TabBar", p_config.font_color);
841
p_theme->set_color("font_hovered_color", "TabBar", p_config.font_color);
842
p_theme->set_color("font_unselected_color", "TabBar", p_config.font_disabled_color);
843
p_theme->set_color("font_outline_color", "TabBar", p_config.font_outline_color);
844
p_theme->set_color("drop_mark_color", "TabContainer", tab_highlight);
845
p_theme->set_color("drop_mark_color", "TabBar", tab_highlight);
846
847
Color icon_color = Color(1, 1, 1);
848
p_theme->set_color("icon_selected_color", "TabContainer", icon_color);
849
p_theme->set_color("icon_hovered_color", "TabContainer", icon_color);
850
p_theme->set_color("icon_unselected_color", "TabContainer", icon_color);
851
p_theme->set_color("icon_selected_color", "TabBar", icon_color);
852
p_theme->set_color("icon_hovered_color", "TabBar", icon_color);
853
p_theme->set_color("icon_unselected_color", "TabBar", icon_color);
854
855
p_theme->set_icon("menu", "TabContainer", p_theme->get_icon(SNAME("GuiTabMenu"), EditorStringName(EditorIcons)));
856
p_theme->set_icon("menu_highlight", "TabContainer", p_theme->get_icon(SNAME("GuiTabMenuHl"), EditorStringName(EditorIcons)));
857
p_theme->set_icon("close", "TabBar", p_theme->get_icon(SNAME("GuiClose"), EditorStringName(EditorIcons)));
858
p_theme->set_icon("increment", "TabContainer", p_theme->get_icon(SNAME("GuiScrollArrowRight"), EditorStringName(EditorIcons)));
859
p_theme->set_icon("decrement", "TabContainer", p_theme->get_icon(SNAME("GuiScrollArrowLeft"), EditorStringName(EditorIcons)));
860
p_theme->set_icon("increment", "TabBar", p_theme->get_icon(SNAME("GuiScrollArrowRight"), EditorStringName(EditorIcons)));
861
p_theme->set_icon("decrement", "TabBar", p_theme->get_icon(SNAME("GuiScrollArrowLeft"), EditorStringName(EditorIcons)));
862
p_theme->set_icon("increment_highlight", "TabBar", p_theme->get_icon(SNAME("GuiScrollArrowRightHl"), EditorStringName(EditorIcons)));
863
p_theme->set_icon("decrement_highlight", "TabBar", p_theme->get_icon(SNAME("GuiScrollArrowLeftHl"), EditorStringName(EditorIcons)));
864
p_theme->set_icon("increment_highlight", "TabContainer", p_theme->get_icon(SNAME("GuiScrollArrowRightHl"), EditorStringName(EditorIcons)));
865
p_theme->set_icon("decrement_highlight", "TabContainer", p_theme->get_icon(SNAME("GuiScrollArrowLeftHl"), EditorStringName(EditorIcons)));
866
p_theme->set_icon("drop_mark", "TabContainer", p_theme->get_icon(SNAME("GuiTabDropMark"), EditorStringName(EditorIcons)));
867
p_theme->set_icon("drop_mark", "TabBar", p_theme->get_icon(SNAME("GuiTabDropMark"), EditorStringName(EditorIcons)));
868
869
p_theme->set_constant("side_margin", "TabContainer", 0);
870
p_theme->set_constant("outline_size", "TabContainer", 0);
871
p_theme->set_constant("h_separation", "TabBar", 4 * EDSCALE);
872
p_theme->set_constant("outline_size", "TabBar", 0);
873
p_theme->set_constant("hover_switch_wait_msec", "TabBar", p_config.dragging_hover_wait_msec);
874
}
875
876
// Separators.
877
p_theme->set_stylebox("separator", "HSeparator", EditorThemeManager::make_line_stylebox(p_config.separator_color, MAX(Math::round(EDSCALE), p_config.border_width)));
878
p_theme->set_stylebox("separator", "VSeparator", EditorThemeManager::make_line_stylebox(p_config.separator_color, MAX(Math::round(EDSCALE), p_config.border_width), 0, 0, true));
879
880
// LineEdit & TextEdit.
881
{
882
Ref<StyleBoxFlat> text_editor_style = p_config.button_style->duplicate();
883
884
// Don't round the bottom corners to make the line look sharper.
885
text_editor_style->set_corner_radius(CORNER_BOTTOM_LEFT, 0);
886
text_editor_style->set_corner_radius(CORNER_BOTTOM_RIGHT, 0);
887
888
if (p_config.draw_extra_borders) {
889
text_editor_style->set_border_width_all(Math::round(EDSCALE));
890
text_editor_style->set_border_color(p_config.extra_border_color_1);
891
} else {
892
// Add a bottom line to make LineEdits more visible, especially in sectioned inspectors
893
// such as the Project Settings.
894
text_editor_style->set_border_width(SIDE_BOTTOM, Math::round(2 * EDSCALE));
895
text_editor_style->set_border_color(p_config.dark_color_2);
896
}
897
898
Ref<StyleBoxFlat> text_editor_disabled_style = text_editor_style->duplicate();
899
text_editor_disabled_style->set_border_color(p_config.disabled_border_color);
900
text_editor_disabled_style->set_bg_color(p_config.disabled_bg_color);
901
902
// LineEdit.
903
904
p_theme->set_stylebox(CoreStringName(normal), "LineEdit", text_editor_style);
905
p_theme->set_stylebox("focus", "LineEdit", p_config.button_style_focus);
906
p_theme->set_stylebox("read_only", "LineEdit", text_editor_disabled_style);
907
908
p_theme->set_icon("clear", "LineEdit", p_theme->get_icon(SNAME("GuiClose"), EditorStringName(EditorIcons)));
909
910
p_theme->set_color(SceneStringName(font_color), "LineEdit", p_config.font_color);
911
p_theme->set_color("font_selected_color", "LineEdit", p_config.mono_color_font);
912
p_theme->set_color("font_uneditable_color", "LineEdit", p_config.font_readonly_color);
913
p_theme->set_color("font_placeholder_color", "LineEdit", p_config.font_placeholder_color);
914
p_theme->set_color("font_outline_color", "LineEdit", p_config.font_outline_color);
915
p_theme->set_color("caret_color", "LineEdit", p_config.font_color);
916
p_theme->set_color("selection_color", "LineEdit", p_config.selection_color);
917
p_theme->set_color("clear_button_color", "LineEdit", p_config.font_color);
918
p_theme->set_color("clear_button_color_pressed", "LineEdit", p_config.accent_color);
919
920
p_theme->set_constant("minimum_character_width", "LineEdit", 4);
921
p_theme->set_constant("outline_size", "LineEdit", 0);
922
p_theme->set_constant("caret_width", "LineEdit", 1);
923
924
// TextEdit.
925
926
p_theme->set_stylebox(CoreStringName(normal), "TextEdit", text_editor_style);
927
p_theme->set_stylebox("focus", "TextEdit", p_config.button_style_focus);
928
p_theme->set_stylebox("read_only", "TextEdit", text_editor_disabled_style);
929
930
p_theme->set_icon("tab", "TextEdit", p_theme->get_icon(SNAME("GuiTab"), EditorStringName(EditorIcons)));
931
p_theme->set_icon("space", "TextEdit", p_theme->get_icon(SNAME("GuiSpace"), EditorStringName(EditorIcons)));
932
933
p_theme->set_color(SceneStringName(font_color), "TextEdit", p_config.font_color);
934
p_theme->set_color("font_readonly_color", "TextEdit", p_config.font_readonly_color);
935
p_theme->set_color("font_placeholder_color", "TextEdit", p_config.font_placeholder_color);
936
p_theme->set_color("font_outline_color", "TextEdit", p_config.font_outline_color);
937
p_theme->set_color("caret_color", "TextEdit", p_config.font_color);
938
p_theme->set_color("selection_color", "TextEdit", p_config.selection_color);
939
940
p_theme->set_constant("line_spacing", "TextEdit", 4 * EDSCALE);
941
p_theme->set_constant("outline_size", "TextEdit", 0);
942
p_theme->set_constant("caret_width", "TextEdit", 1);
943
}
944
945
// Containers.
946
{
947
p_theme->set_constant("separation", "BoxContainer", p_config.separation_margin);
948
p_theme->set_constant("separation", "HBoxContainer", p_config.separation_margin);
949
p_theme->set_constant("separation", "VBoxContainer", p_config.separation_margin);
950
p_theme->set_constant("margin_left", "MarginContainer", 0);
951
p_theme->set_constant("margin_top", "MarginContainer", 0);
952
p_theme->set_constant("margin_right", "MarginContainer", 0);
953
p_theme->set_constant("margin_bottom", "MarginContainer", 0);
954
p_theme->set_constant("h_separation", "GridContainer", p_config.separation_margin);
955
p_theme->set_constant("v_separation", "GridContainer", p_config.separation_margin);
956
p_theme->set_constant("h_separation", "FlowContainer", p_config.separation_margin);
957
p_theme->set_constant("v_separation", "FlowContainer", p_config.separation_margin);
958
p_theme->set_constant("h_separation", "HFlowContainer", p_config.separation_margin);
959
p_theme->set_constant("v_separation", "HFlowContainer", p_config.separation_margin);
960
p_theme->set_constant("h_separation", "VFlowContainer", p_config.separation_margin);
961
p_theme->set_constant("v_separation", "VFlowContainer", p_config.separation_margin);
962
963
// SplitContainer.
964
965
p_theme->set_icon("h_grabber", "SplitContainer", p_theme->get_icon(SNAME("GuiHsplitter"), EditorStringName(EditorIcons)));
966
p_theme->set_icon("v_grabber", "SplitContainer", p_theme->get_icon(SNAME("GuiVsplitter"), EditorStringName(EditorIcons)));
967
p_theme->set_icon("grabber", "VSplitContainer", p_theme->get_icon(SNAME("GuiVsplitter"), EditorStringName(EditorIcons)));
968
p_theme->set_icon("grabber", "HSplitContainer", p_theme->get_icon(SNAME("GuiHsplitter"), EditorStringName(EditorIcons)));
969
970
p_theme->set_constant("separation", "SplitContainer", p_config.separation_margin);
971
p_theme->set_constant("separation", "HSplitContainer", p_config.separation_margin);
972
p_theme->set_constant("separation", "VSplitContainer", p_config.separation_margin);
973
974
p_theme->set_constant("minimum_grab_thickness", "SplitContainer", p_config.increased_margin * EDSCALE);
975
p_theme->set_constant("minimum_grab_thickness", "HSplitContainer", p_config.increased_margin * EDSCALE);
976
p_theme->set_constant("minimum_grab_thickness", "VSplitContainer", p_config.increased_margin * EDSCALE);
977
978
// GridContainer.
979
p_theme->set_constant("v_separation", "GridContainer", Math::round(p_config.widget_margin.y - 2 * EDSCALE));
980
981
// FoldableContainer
982
983
Ref<StyleBoxFlat> foldable_container_title = EditorThemeManager::make_flat_stylebox(p_config.dark_color_1.darkened(0.125), p_config.base_margin, p_config.base_margin, p_config.base_margin, p_config.base_margin);
984
foldable_container_title->set_corner_radius(CORNER_BOTTOM_LEFT, 0);
985
foldable_container_title->set_corner_radius(CORNER_BOTTOM_RIGHT, 0);
986
p_theme->set_stylebox("title_panel", "FoldableContainer", foldable_container_title);
987
Ref<StyleBoxFlat> foldable_container_hover = EditorThemeManager::make_flat_stylebox(p_config.dark_color_1.lerp(p_config.base_color, 0.4), p_config.base_margin, p_config.base_margin, p_config.base_margin, p_config.base_margin);
988
foldable_container_hover->set_corner_radius(CORNER_BOTTOM_LEFT, 0);
989
foldable_container_hover->set_corner_radius(CORNER_BOTTOM_RIGHT, 0);
990
p_theme->set_stylebox("title_hover_panel", "FoldableContainer", foldable_container_hover);
991
p_theme->set_stylebox("title_collapsed_panel", "FoldableContainer", EditorThemeManager::make_flat_stylebox(p_config.dark_color_1.darkened(0.125), p_config.base_margin, p_config.base_margin, p_config.base_margin, p_config.base_margin));
992
p_theme->set_stylebox("title_collapsed_hover_panel", "FoldableContainer", EditorThemeManager::make_flat_stylebox(p_config.dark_color_1.lerp(p_config.base_color, 0.4), p_config.base_margin, p_config.base_margin, p_config.base_margin, p_config.base_margin));
993
Ref<StyleBoxFlat> foldable_container_panel = EditorThemeManager::make_flat_stylebox(p_config.dark_color_1, p_config.base_margin, p_config.base_margin, p_config.base_margin, p_config.base_margin);
994
foldable_container_panel->set_corner_radius(CORNER_TOP_LEFT, 0);
995
foldable_container_panel->set_corner_radius(CORNER_TOP_RIGHT, 0);
996
p_theme->set_stylebox(SceneStringName(panel), "FoldableContainer", foldable_container_panel);
997
p_theme->set_stylebox("focus", "FoldableContainer", p_config.button_style_focus);
998
999
p_theme->set_font(SceneStringName(font), "FoldableContainer", p_theme->get_font(SceneStringName(font), SNAME("HeaderSmall")));
1000
p_theme->set_font_size(SceneStringName(font_size), "FoldableContainer", p_theme->get_font_size(SceneStringName(font_size), SNAME("HeaderSmall")));
1001
1002
p_theme->set_color(SceneStringName(font_color), "FoldableContainer", p_config.font_color);
1003
p_theme->set_color("hover_font_color", "FoldableContainer", p_config.font_hover_color);
1004
p_theme->set_color("collapsed_font_color", "FoldableContainer", p_config.font_pressed_color);
1005
p_theme->set_color("font_outline_color", "FoldableContainer", p_config.font_outline_color);
1006
1007
p_theme->set_icon("expanded_arrow", "FoldableContainer", p_theme->get_icon(SNAME("GuiTreeArrowDown"), EditorStringName(EditorIcons)));
1008
p_theme->set_icon("expanded_arrow_mirrored", "FoldableContainer", p_theme->get_icon(SNAME("GuiArrowUp"), EditorStringName(EditorIcons)));
1009
p_theme->set_icon("folded_arrow", "FoldableContainer", p_theme->get_icon(SNAME("GuiTreeArrowRight"), EditorStringName(EditorIcons)));
1010
p_theme->set_icon("folded_arrow_mirrored", "FoldableContainer", p_theme->get_icon(SNAME("GuiTreeArrowLeft"), EditorStringName(EditorIcons)));
1011
1012
p_theme->set_constant("outline_size", "FoldableContainer", 0);
1013
p_theme->set_constant("h_separation", "FoldableContainer", p_config.separation_margin);
1014
}
1015
1016
// Window and dialogs.
1017
{
1018
// Window.
1019
1020
p_theme->set_stylebox("embedded_border", "Window", p_config.window_style);
1021
p_theme->set_stylebox("embedded_unfocused_border", "Window", p_config.window_style);
1022
1023
p_theme->set_color("title_color", "Window", p_config.font_color);
1024
p_theme->set_icon("close", "Window", p_theme->get_icon(SNAME("GuiClose"), EditorStringName(EditorIcons)));
1025
p_theme->set_icon("close_pressed", "Window", p_theme->get_icon(SNAME("GuiClose"), EditorStringName(EditorIcons)));
1026
p_theme->set_constant("close_h_offset", "Window", 22 * EDSCALE);
1027
p_theme->set_constant("close_v_offset", "Window", 20 * EDSCALE);
1028
p_theme->set_constant("title_height", "Window", 24 * EDSCALE);
1029
p_theme->set_constant("resize_margin", "Window", 4 * EDSCALE);
1030
p_theme->set_font("title_font", "Window", p_theme->get_font(SNAME("title"), EditorStringName(EditorFonts)));
1031
p_theme->set_font_size("title_font_size", "Window", p_theme->get_font_size(SNAME("title_size"), EditorStringName(EditorFonts)));
1032
1033
// AcceptDialog.
1034
p_theme->set_stylebox(SceneStringName(panel), "AcceptDialog", p_config.dialog_style);
1035
p_theme->set_constant("buttons_separation", "AcceptDialog", 8 * EDSCALE);
1036
// Make buttons with short texts such as "OK" easier to click/tap.
1037
p_theme->set_constant("buttons_min_width", "AcceptDialog", p_config.dialogs_buttons_min_size.x * EDSCALE);
1038
p_theme->set_constant("buttons_min_height", "AcceptDialog", p_config.dialogs_buttons_min_size.y * EDSCALE);
1039
1040
// FileDialog.
1041
p_theme->set_icon("folder", "FileDialog", p_theme->get_icon(SNAME("Folder"), EditorStringName(EditorIcons)));
1042
p_theme->set_icon("parent_folder", "FileDialog", p_theme->get_icon(SNAME("ArrowUp"), EditorStringName(EditorIcons)));
1043
p_theme->set_icon("back_folder", "FileDialog", p_theme->get_icon(SNAME("Back"), EditorStringName(EditorIcons)));
1044
p_theme->set_icon("forward_folder", "FileDialog", p_theme->get_icon(SNAME("Forward"), EditorStringName(EditorIcons)));
1045
p_theme->set_icon("reload", "FileDialog", p_theme->get_icon(SNAME("Reload"), EditorStringName(EditorIcons)));
1046
p_theme->set_icon("toggle_hidden", "FileDialog", p_theme->get_icon(SNAME("GuiVisibilityVisible"), EditorStringName(EditorIcons)));
1047
p_theme->set_icon("create_folder", "FileDialog", p_theme->get_icon(SNAME("FolderCreate"), EditorStringName(EditorIcons)));
1048
// Use a different color for folder icons to make them easier to distinguish from files.
1049
// On a light theme, the icon will be dark, so we need to lighten it before blending it with the accent color.
1050
p_theme->set_color("folder_icon_color", "FileDialog", (p_config.dark_icon_and_font ? Color(1, 1, 1) : Color(4.25, 4.25, 4.25)).lerp(p_config.accent_color, 0.7));
1051
p_theme->set_color("file_disabled_color", "FileDialog", p_config.font_disabled_color);
1052
1053
p_theme->set_constant("thumbnail_size", "EditorFileDialog", p_config.thumb_size);
1054
1055
// PopupDialog.
1056
p_theme->set_stylebox(SceneStringName(panel), "PopupDialog", p_config.popup_style);
1057
1058
// PopupMenu.
1059
{
1060
Ref<StyleBoxFlat> style_popup_menu = p_config.popup_border_style->duplicate();
1061
// Use 1 pixel for the sides, since if 0 is used, the highlight of hovered items is drawn
1062
// on top of the popup border. This causes a 'gap' in the panel border when an item is highlighted,
1063
// and it looks weird. 1px solves this.
1064
style_popup_menu->set_content_margin_individual(Math::round(EDSCALE), 2 * EDSCALE, Math::round(EDSCALE), 2 * EDSCALE);
1065
p_theme->set_stylebox(SceneStringName(panel), "PopupMenu", style_popup_menu);
1066
1067
Ref<StyleBoxFlat> style_menu_hover = p_config.button_style_hover->duplicate();
1068
// Don't use rounded corners for hover highlights since the StyleBox touches the PopupMenu's edges.
1069
style_menu_hover->set_corner_radius_all(0);
1070
p_theme->set_stylebox(SceneStringName(hover), "PopupMenu", style_menu_hover);
1071
1072
Ref<StyleBoxLine> style_popup_separator(memnew(StyleBoxLine));
1073
style_popup_separator->set_color(p_config.separator_color);
1074
style_popup_separator->set_grow_begin(Math::round(EDSCALE) - MAX(Math::round(EDSCALE), p_config.border_width));
1075
style_popup_separator->set_grow_end(Math::round(EDSCALE) - MAX(Math::round(EDSCALE), p_config.border_width));
1076
style_popup_separator->set_thickness(MAX(Math::round(EDSCALE), p_config.border_width));
1077
1078
Ref<StyleBoxLine> style_popup_labeled_separator_left(memnew(StyleBoxLine));
1079
style_popup_labeled_separator_left->set_grow_begin(Math::round(EDSCALE) - MAX(Math::round(EDSCALE), p_config.border_width));
1080
style_popup_labeled_separator_left->set_color(p_config.separator_color);
1081
style_popup_labeled_separator_left->set_thickness(MAX(Math::round(EDSCALE), p_config.border_width));
1082
1083
Ref<StyleBoxLine> style_popup_labeled_separator_right(memnew(StyleBoxLine));
1084
style_popup_labeled_separator_right->set_grow_end(Math::round(EDSCALE) - MAX(Math::round(EDSCALE), p_config.border_width));
1085
style_popup_labeled_separator_right->set_color(p_config.separator_color);
1086
style_popup_labeled_separator_right->set_thickness(MAX(Math::round(EDSCALE), p_config.border_width));
1087
1088
p_theme->set_stylebox("separator", "PopupMenu", style_popup_separator);
1089
p_theme->set_stylebox("labeled_separator_left", "PopupMenu", style_popup_labeled_separator_left);
1090
p_theme->set_stylebox("labeled_separator_right", "PopupMenu", style_popup_labeled_separator_right);
1091
1092
p_theme->set_color(SceneStringName(font_color), "PopupMenu", p_config.font_color);
1093
p_theme->set_color("font_hover_color", "PopupMenu", p_config.font_hover_color);
1094
p_theme->set_color("font_accelerator_color", "PopupMenu", p_config.font_disabled_color);
1095
p_theme->set_color("font_disabled_color", "PopupMenu", p_config.font_disabled_color);
1096
p_theme->set_color("font_separator_color", "PopupMenu", p_config.font_disabled_color);
1097
p_theme->set_color("font_outline_color", "PopupMenu", p_config.font_outline_color);
1098
1099
p_theme->set_icon("checked", "PopupMenu", p_theme->get_icon(SNAME("GuiChecked"), EditorStringName(EditorIcons)));
1100
p_theme->set_icon("unchecked", "PopupMenu", p_theme->get_icon(SNAME("GuiUnchecked"), EditorStringName(EditorIcons)));
1101
p_theme->set_icon("radio_checked", "PopupMenu", p_theme->get_icon(SNAME("GuiRadioChecked"), EditorStringName(EditorIcons)));
1102
p_theme->set_icon("radio_unchecked", "PopupMenu", p_theme->get_icon(SNAME("GuiRadioUnchecked"), EditorStringName(EditorIcons)));
1103
p_theme->set_icon("checked_disabled", "PopupMenu", p_theme->get_icon(SNAME("GuiCheckedDisabled"), EditorStringName(EditorIcons)));
1104
p_theme->set_icon("unchecked_disabled", "PopupMenu", p_theme->get_icon(SNAME("GuiUncheckedDisabled"), EditorStringName(EditorIcons)));
1105
p_theme->set_icon("radio_checked_disabled", "PopupMenu", p_theme->get_icon(SNAME("GuiRadioCheckedDisabled"), EditorStringName(EditorIcons)));
1106
p_theme->set_icon("radio_unchecked_disabled", "PopupMenu", p_theme->get_icon(SNAME("GuiRadioUncheckedDisabled"), EditorStringName(EditorIcons)));
1107
p_theme->set_icon("submenu", "PopupMenu", p_theme->get_icon(SNAME("ArrowRight"), EditorStringName(EditorIcons)));
1108
p_theme->set_icon("submenu_mirrored", "PopupMenu", p_theme->get_icon(SNAME("ArrowLeft"), EditorStringName(EditorIcons)));
1109
1110
int v_sep = (p_config.enable_touch_optimizations ? 12 : p_config.forced_even_separation) * EDSCALE;
1111
p_theme->set_constant("v_separation", "PopupMenu", v_sep);
1112
p_theme->set_constant("outline_size", "PopupMenu", 0);
1113
p_theme->set_constant("item_start_padding", "PopupMenu", p_config.separation_margin);
1114
p_theme->set_constant("item_end_padding", "PopupMenu", p_config.separation_margin);
1115
}
1116
}
1117
1118
// Sliders and scrollbars.
1119
{
1120
Ref<Texture2D> empty_icon = memnew(ImageTexture);
1121
1122
// HScrollBar.
1123
1124
if (p_config.enable_touch_optimizations) {
1125
p_theme->set_stylebox("scroll", "HScrollBar", EditorThemeManager::make_line_stylebox(p_config.separator_color, 50));
1126
} else {
1127
p_theme->set_stylebox("scroll", "HScrollBar", EditorThemeManager::make_stylebox(p_theme->get_icon(SNAME("GuiScrollBg"), EditorStringName(EditorIcons)), 5, 5, 5, 5, -5, 1, -5, 1));
1128
}
1129
p_theme->set_stylebox("scroll_focus", "HScrollBar", EditorThemeManager::make_stylebox(p_theme->get_icon(SNAME("GuiScrollBg"), EditorStringName(EditorIcons)), 5, 5, 5, 5, 1, 1, 1, 1));
1130
p_theme->set_stylebox("grabber", "HScrollBar", EditorThemeManager::make_stylebox(p_theme->get_icon(SNAME("GuiScrollGrabber"), EditorStringName(EditorIcons)), 6, 6, 6, 6, 1, 1, 1, 1));
1131
p_theme->set_stylebox("grabber_highlight", "HScrollBar", EditorThemeManager::make_stylebox(p_theme->get_icon(SNAME("GuiScrollGrabberHl"), EditorStringName(EditorIcons)), 5, 5, 5, 5, 1, 1, 1, 1));
1132
p_theme->set_stylebox("grabber_pressed", "HScrollBar", EditorThemeManager::make_stylebox(p_theme->get_icon(SNAME("GuiScrollGrabberPressed"), EditorStringName(EditorIcons)), 6, 6, 6, 6, 1, 1, 1, 1));
1133
1134
p_theme->set_icon("increment", "HScrollBar", empty_icon);
1135
p_theme->set_icon("increment_highlight", "HScrollBar", empty_icon);
1136
p_theme->set_icon("increment_pressed", "HScrollBar", empty_icon);
1137
p_theme->set_icon("decrement", "HScrollBar", empty_icon);
1138
p_theme->set_icon("decrement_highlight", "HScrollBar", empty_icon);
1139
p_theme->set_icon("decrement_pressed", "HScrollBar", empty_icon);
1140
1141
// VScrollBar.
1142
1143
if (p_config.enable_touch_optimizations) {
1144
p_theme->set_stylebox("scroll", "VScrollBar", EditorThemeManager::make_line_stylebox(p_config.separator_color, 50, 1, 1, true));
1145
} else {
1146
p_theme->set_stylebox("scroll", "VScrollBar", EditorThemeManager::make_stylebox(p_theme->get_icon(SNAME("GuiScrollBg"), EditorStringName(EditorIcons)), 5, 5, 5, 5, 1, -5, 1, -5));
1147
}
1148
p_theme->set_stylebox("scroll_focus", "VScrollBar", EditorThemeManager::make_stylebox(p_theme->get_icon(SNAME("GuiScrollBg"), EditorStringName(EditorIcons)), 5, 5, 5, 5, 1, 1, 1, 1));
1149
p_theme->set_stylebox("grabber", "VScrollBar", EditorThemeManager::make_stylebox(p_theme->get_icon(SNAME("GuiScrollGrabber"), EditorStringName(EditorIcons)), 6, 6, 6, 6, 1, 1, 1, 1));
1150
p_theme->set_stylebox("grabber_highlight", "VScrollBar", EditorThemeManager::make_stylebox(p_theme->get_icon(SNAME("GuiScrollGrabberHl"), EditorStringName(EditorIcons)), 5, 5, 5, 5, 1, 1, 1, 1));
1151
p_theme->set_stylebox("grabber_pressed", "VScrollBar", EditorThemeManager::make_stylebox(p_theme->get_icon(SNAME("GuiScrollGrabberPressed"), EditorStringName(EditorIcons)), 6, 6, 6, 6, 1, 1, 1, 1));
1152
1153
p_theme->set_icon("increment", "VScrollBar", empty_icon);
1154
p_theme->set_icon("increment_highlight", "VScrollBar", empty_icon);
1155
p_theme->set_icon("increment_pressed", "VScrollBar", empty_icon);
1156
p_theme->set_icon("decrement", "VScrollBar", empty_icon);
1157
p_theme->set_icon("decrement_highlight", "VScrollBar", empty_icon);
1158
p_theme->set_icon("decrement_pressed", "VScrollBar", empty_icon);
1159
1160
// Slider
1161
const int background_margin = MAX(2, p_config.base_margin / 2);
1162
1163
// HSlider.
1164
p_theme->set_icon("grabber_highlight", "HSlider", p_theme->get_icon(SNAME("GuiSliderGrabberHl"), EditorStringName(EditorIcons)));
1165
p_theme->set_icon("grabber", "HSlider", p_theme->get_icon(SNAME("GuiSliderGrabber"), EditorStringName(EditorIcons)));
1166
p_theme->set_stylebox("slider", "HSlider", EditorThemeManager::make_flat_stylebox(p_config.dark_color_3, 0, background_margin, 0, background_margin, p_config.corner_radius));
1167
p_theme->set_stylebox("grabber_area", "HSlider", EditorThemeManager::make_flat_stylebox(p_config.contrast_color_1, 0, background_margin, 0, background_margin, p_config.corner_radius));
1168
p_theme->set_stylebox("grabber_area_highlight", "HSlider", EditorThemeManager::make_flat_stylebox(p_config.contrast_color_1, 0, background_margin, 0, background_margin));
1169
p_theme->set_constant("center_grabber", "HSlider", 0);
1170
p_theme->set_constant("grabber_offset", "HSlider", 0);
1171
1172
// VSlider.
1173
p_theme->set_icon("grabber", "VSlider", p_theme->get_icon(SNAME("GuiSliderGrabber"), EditorStringName(EditorIcons)));
1174
p_theme->set_icon("grabber_highlight", "VSlider", p_theme->get_icon(SNAME("GuiSliderGrabberHl"), EditorStringName(EditorIcons)));
1175
p_theme->set_stylebox("slider", "VSlider", EditorThemeManager::make_flat_stylebox(p_config.dark_color_3, background_margin, 0, background_margin, 0, p_config.corner_radius));
1176
p_theme->set_stylebox("grabber_area", "VSlider", EditorThemeManager::make_flat_stylebox(p_config.contrast_color_1, background_margin, 0, background_margin, 0, p_config.corner_radius));
1177
p_theme->set_stylebox("grabber_area_highlight", "VSlider", EditorThemeManager::make_flat_stylebox(p_config.contrast_color_1, background_margin, 0, background_margin, 0));
1178
p_theme->set_constant("center_grabber", "VSlider", 0);
1179
p_theme->set_constant("grabber_offset", "VSlider", 0);
1180
}
1181
1182
// Labels.
1183
{
1184
// RichTextLabel.
1185
1186
p_theme->set_stylebox(CoreStringName(normal), "RichTextLabel", p_config.tree_panel_style);
1187
p_theme->set_stylebox("focus", "RichTextLabel", EditorThemeManager::make_empty_stylebox());
1188
1189
p_theme->set_color("default_color", "RichTextLabel", p_config.font_color);
1190
p_theme->set_color("font_shadow_color", "RichTextLabel", Color(0, 0, 0, 0));
1191
p_theme->set_color("font_outline_color", "RichTextLabel", p_config.font_outline_color);
1192
p_theme->set_color("selection_color", "RichTextLabel", p_config.selection_color);
1193
1194
p_theme->set_constant("shadow_offset_x", "RichTextLabel", 1 * EDSCALE);
1195
p_theme->set_constant("shadow_offset_y", "RichTextLabel", 1 * EDSCALE);
1196
p_theme->set_constant("shadow_outline_size", "RichTextLabel", 1 * EDSCALE);
1197
p_theme->set_constant("outline_size", "RichTextLabel", 0);
1198
1199
// Label.
1200
1201
p_theme->set_stylebox(CoreStringName(normal), "Label", p_config.base_empty_style);
1202
p_theme->set_stylebox("focus", "Label", p_config.button_style_focus);
1203
1204
p_theme->set_color(SceneStringName(font_color), "Label", p_config.font_color);
1205
p_theme->set_color("font_shadow_color", "Label", Color(0, 0, 0, 0));
1206
p_theme->set_color("font_outline_color", "Label", p_config.font_outline_color);
1207
1208
p_theme->set_constant("shadow_offset_x", "Label", 1 * EDSCALE);
1209
p_theme->set_constant("shadow_offset_y", "Label", 1 * EDSCALE);
1210
p_theme->set_constant("shadow_outline_size", "Label", 1 * EDSCALE);
1211
p_theme->set_constant("line_spacing", "Label", 3 * EDSCALE);
1212
p_theme->set_constant("outline_size", "Label", 0);
1213
}
1214
1215
// SpinBox.
1216
{
1217
Ref<Texture2D> empty_icon = memnew(ImageTexture);
1218
p_theme->set_icon("updown", "SpinBox", empty_icon);
1219
p_theme->set_icon("up", "SpinBox", p_theme->get_icon(SNAME("GuiSpinboxUp"), EditorStringName(EditorIcons)));
1220
p_theme->set_icon("up_hover", "SpinBox", p_theme->get_icon(SNAME("GuiSpinboxUp"), EditorStringName(EditorIcons)));
1221
p_theme->set_icon("up_pressed", "SpinBox", p_theme->get_icon(SNAME("GuiSpinboxUp"), EditorStringName(EditorIcons)));
1222
p_theme->set_icon("up_disabled", "SpinBox", p_theme->get_icon(SNAME("GuiSpinboxUp"), EditorStringName(EditorIcons)));
1223
p_theme->set_icon("down", "SpinBox", p_theme->get_icon(SNAME("GuiSpinboxDown"), EditorStringName(EditorIcons)));
1224
p_theme->set_icon("down_hover", "SpinBox", p_theme->get_icon(SNAME("GuiSpinboxDown"), EditorStringName(EditorIcons)));
1225
p_theme->set_icon("down_pressed", "SpinBox", p_theme->get_icon(SNAME("GuiSpinboxDown"), EditorStringName(EditorIcons)));
1226
p_theme->set_icon("down_disabled", "SpinBox", p_theme->get_icon(SNAME("GuiSpinboxDown"), EditorStringName(EditorIcons)));
1227
1228
p_theme->set_stylebox("up_background", "SpinBox", EditorThemeManager::make_empty_stylebox());
1229
p_theme->set_stylebox("up_background_hovered", "SpinBox", p_config.button_style_hover);
1230
p_theme->set_stylebox("up_background_pressed", "SpinBox", p_config.button_style_pressed);
1231
p_theme->set_stylebox("up_background_disabled", "SpinBox", EditorThemeManager::make_empty_stylebox());
1232
p_theme->set_stylebox("down_background", "SpinBox", EditorThemeManager::make_empty_stylebox());
1233
p_theme->set_stylebox("down_background_hovered", "SpinBox", p_config.button_style_hover);
1234
p_theme->set_stylebox("down_background_pressed", "SpinBox", p_config.button_style_pressed);
1235
p_theme->set_stylebox("down_background_disabled", "SpinBox", EditorThemeManager::make_empty_stylebox());
1236
1237
p_theme->set_color("up_icon_modulate", "SpinBox", p_config.font_color);
1238
p_theme->set_color("up_hover_icon_modulate", "SpinBox", p_config.font_hover_color);
1239
p_theme->set_color("up_pressed_icon_modulate", "SpinBox", p_config.font_pressed_color);
1240
p_theme->set_color("up_disabled_icon_modulate", "SpinBox", p_config.font_disabled_color);
1241
p_theme->set_color("down_icon_modulate", "SpinBox", p_config.font_color);
1242
p_theme->set_color("down_hover_icon_modulate", "SpinBox", p_config.font_hover_color);
1243
p_theme->set_color("down_pressed_icon_modulate", "SpinBox", p_config.font_pressed_color);
1244
p_theme->set_color("down_disabled_icon_modulate", "SpinBox", p_config.font_disabled_color);
1245
1246
p_theme->set_stylebox("field_and_buttons_separator", "SpinBox", EditorThemeManager::make_empty_stylebox());
1247
p_theme->set_stylebox("up_down_buttons_separator", "SpinBox", EditorThemeManager::make_empty_stylebox());
1248
1249
p_theme->set_constant("buttons_vertical_separation", "SpinBox", 0);
1250
p_theme->set_constant("field_and_buttons_separation", "SpinBox", 2);
1251
p_theme->set_constant("buttons_width", "SpinBox", 16);
1252
#ifndef DISABLE_DEPRECATED
1253
p_theme->set_constant("set_min_buttons_width_from_icons", "SpinBox", 1);
1254
#endif
1255
}
1256
1257
// ProgressBar.
1258
p_theme->set_stylebox("background", "ProgressBar", EditorThemeManager::make_stylebox(p_theme->get_icon(SNAME("GuiProgressBar"), EditorStringName(EditorIcons)), 4, 4, 4, 4, 0, 0, 0, 0));
1259
p_theme->set_stylebox("fill", "ProgressBar", EditorThemeManager::make_stylebox(p_theme->get_icon(SNAME("GuiProgressFill"), EditorStringName(EditorIcons)), 6, 6, 6, 6, 2, 1, 2, 1));
1260
p_theme->set_color(SceneStringName(font_color), "ProgressBar", p_config.font_color);
1261
p_theme->set_color("font_outline_color", "ProgressBar", p_config.font_outline_color);
1262
p_theme->set_constant("outline_size", "ProgressBar", 0);
1263
1264
// GraphEdit and related nodes.
1265
{
1266
// GraphEdit.
1267
1268
p_theme->set_stylebox(SceneStringName(panel), "GraphEdit", p_config.tree_panel_style);
1269
p_theme->set_stylebox("panel_focus", "GraphEdit", p_config.button_style_focus);
1270
p_theme->set_stylebox("menu_panel", "GraphEdit", EditorThemeManager::make_flat_stylebox(p_config.dark_color_1 * Color(1, 1, 1, 0.6), 4, 2, 4, 2, 3));
1271
1272
float grid_base_brightness = p_config.dark_theme ? 1.0 : 0.0;
1273
GraphEdit::GridPattern grid_pattern = (GraphEdit::GridPattern) int(EDITOR_GET("editors/visual_editors/grid_pattern"));
1274
switch (grid_pattern) {
1275
case GraphEdit::GRID_PATTERN_LINES:
1276
p_theme->set_color("grid_major", "GraphEdit", Color(grid_base_brightness, grid_base_brightness, grid_base_brightness, 0.10));
1277
p_theme->set_color("grid_minor", "GraphEdit", Color(grid_base_brightness, grid_base_brightness, grid_base_brightness, 0.05));
1278
break;
1279
case GraphEdit::GRID_PATTERN_DOTS:
1280
p_theme->set_color("grid_major", "GraphEdit", Color(grid_base_brightness, grid_base_brightness, grid_base_brightness, 0.07));
1281
p_theme->set_color("grid_minor", "GraphEdit", Color(grid_base_brightness, grid_base_brightness, grid_base_brightness, 0.07));
1282
break;
1283
default:
1284
WARN_PRINT("Unknown grid pattern.");
1285
break;
1286
}
1287
1288
p_theme->set_color("selection_fill", "GraphEdit", p_theme->get_color(SNAME("box_selection_fill_color"), EditorStringName(Editor)));
1289
p_theme->set_color("selection_stroke", "GraphEdit", p_theme->get_color(SNAME("box_selection_stroke_color"), EditorStringName(Editor)));
1290
p_theme->set_color("activity", "GraphEdit", p_config.dark_theme ? Color(1, 1, 1) : Color(0, 0, 0));
1291
1292
p_theme->set_color("connection_hover_tint_color", "GraphEdit", p_config.dark_theme ? Color(0, 0, 0, 0.3) : Color(1, 1, 1, 0.3));
1293
p_theme->set_constant("connection_hover_thickness", "GraphEdit", 0);
1294
p_theme->set_color("connection_valid_target_tint_color", "GraphEdit", p_config.dark_theme ? Color(1, 1, 1, 0.4) : Color(0, 0, 0, 0.4));
1295
p_theme->set_color("connection_rim_color", "GraphEdit", p_config.tree_panel_style->get_bg_color());
1296
1297
p_theme->set_icon("zoom_out", "GraphEdit", p_theme->get_icon(SNAME("ZoomLess"), EditorStringName(EditorIcons)));
1298
p_theme->set_icon("zoom_in", "GraphEdit", p_theme->get_icon(SNAME("ZoomMore"), EditorStringName(EditorIcons)));
1299
p_theme->set_icon("zoom_reset", "GraphEdit", p_theme->get_icon(SNAME("ZoomReset"), EditorStringName(EditorIcons)));
1300
p_theme->set_icon("grid_toggle", "GraphEdit", p_theme->get_icon(SNAME("GridToggle"), EditorStringName(EditorIcons)));
1301
p_theme->set_icon("minimap_toggle", "GraphEdit", p_theme->get_icon(SNAME("GridMinimap"), EditorStringName(EditorIcons)));
1302
p_theme->set_icon("snapping_toggle", "GraphEdit", p_theme->get_icon(SNAME("SnapGrid"), EditorStringName(EditorIcons)));
1303
p_theme->set_icon("layout", "GraphEdit", p_theme->get_icon(SNAME("GridLayout"), EditorStringName(EditorIcons)));
1304
1305
// GraphEditMinimap.
1306
{
1307
Ref<StyleBoxFlat> style_minimap_bg = EditorThemeManager::make_flat_stylebox(p_config.dark_color_1, 0, 0, 0, 0);
1308
style_minimap_bg->set_border_color(p_config.dark_color_3);
1309
style_minimap_bg->set_border_width_all(1);
1310
p_theme->set_stylebox(SceneStringName(panel), "GraphEditMinimap", style_minimap_bg);
1311
1312
Ref<StyleBoxFlat> style_minimap_camera;
1313
Ref<StyleBoxFlat> style_minimap_node;
1314
if (p_config.dark_theme) {
1315
style_minimap_camera = EditorThemeManager::make_flat_stylebox(Color(0.65, 0.65, 0.65, 0.2), 0, 0, 0, 0);
1316
style_minimap_camera->set_border_color(Color(0.65, 0.65, 0.65, 0.45));
1317
style_minimap_node = EditorThemeManager::make_flat_stylebox(Color(1, 1, 1), 0, 0, 0, 0);
1318
} else {
1319
style_minimap_camera = EditorThemeManager::make_flat_stylebox(Color(0.38, 0.38, 0.38, 0.2), 0, 0, 0, 0);
1320
style_minimap_camera->set_border_color(Color(0.38, 0.38, 0.38, 0.45));
1321
style_minimap_node = EditorThemeManager::make_flat_stylebox(Color(0, 0, 0), 0, 0, 0, 0);
1322
}
1323
style_minimap_camera->set_border_width_all(1);
1324
style_minimap_node->set_anti_aliased(false);
1325
p_theme->set_stylebox("camera", "GraphEditMinimap", style_minimap_camera);
1326
p_theme->set_stylebox("node", "GraphEditMinimap", style_minimap_node);
1327
1328
const Color minimap_resizer_color = p_config.dark_theme ? Color(1, 1, 1, 0.65) : Color(0, 0, 0, 0.65);
1329
p_theme->set_icon("resizer", "GraphEditMinimap", p_theme->get_icon(SNAME("GuiResizerTopLeft"), EditorStringName(EditorIcons)));
1330
p_theme->set_color("resizer_color", "GraphEditMinimap", minimap_resizer_color);
1331
}
1332
1333
// GraphElement, GraphNode & GraphFrame.
1334
{
1335
const int gn_margin_top = 2;
1336
const int gn_margin_side = 2;
1337
const int gn_margin_bottom = 2;
1338
1339
const int gn_corner_radius = 3;
1340
1341
const Color gn_bg_color = p_config.dark_theme ? p_config.dark_color_3 : p_config.dark_color_1.lerp(p_config.mono_color, 0.09);
1342
const Color gn_selected_border_color = p_config.dark_theme ? Color(1, 1, 1) : Color(0, 0, 0);
1343
const Color gn_frame_bg = gn_bg_color.lerp(p_config.tree_panel_style->get_bg_color(), 0.3);
1344
1345
const bool high_contrast_borders = p_config.draw_extra_borders && p_config.dark_theme;
1346
1347
Ref<StyleBoxFlat> gn_panel_style = EditorThemeManager::make_flat_stylebox(gn_frame_bg, gn_margin_side, gn_margin_top, gn_margin_side, gn_margin_bottom, p_config.corner_radius);
1348
gn_panel_style->set_border_width(SIDE_BOTTOM, 2 * EDSCALE);
1349
gn_panel_style->set_border_width(SIDE_LEFT, 2 * EDSCALE);
1350
gn_panel_style->set_border_width(SIDE_RIGHT, 2 * EDSCALE);
1351
gn_panel_style->set_border_color(high_contrast_borders ? gn_bg_color.lightened(0.2) : gn_bg_color.darkened(0.3));
1352
gn_panel_style->set_corner_radius_individual(0, 0, gn_corner_radius * EDSCALE, gn_corner_radius * EDSCALE);
1353
gn_panel_style->set_anti_aliased(true);
1354
1355
Ref<StyleBoxFlat> gn_panel_selected_style = gn_panel_style->duplicate();
1356
gn_panel_selected_style->set_bg_color(p_config.dark_theme ? gn_bg_color.lightened(0.15) : gn_bg_color.darkened(0.15));
1357
gn_panel_selected_style->set_border_width(SIDE_TOP, 0);
1358
gn_panel_selected_style->set_border_width(SIDE_BOTTOM, 2 * EDSCALE);
1359
gn_panel_selected_style->set_border_width(SIDE_LEFT, 2 * EDSCALE);
1360
gn_panel_selected_style->set_border_width(SIDE_RIGHT, 2 * EDSCALE);
1361
gn_panel_selected_style->set_border_color(gn_selected_border_color);
1362
1363
const int gn_titlebar_margin_top = 8;
1364
const int gn_titlebar_margin_side = 12;
1365
const int gn_titlebar_margin_bottom = 8;
1366
1367
Ref<StyleBoxFlat> gn_titlebar_style = EditorThemeManager::make_flat_stylebox(gn_bg_color, gn_titlebar_margin_side, gn_titlebar_margin_top, gn_titlebar_margin_side, gn_titlebar_margin_bottom, p_config.corner_radius);
1368
gn_titlebar_style->set_border_width(SIDE_TOP, 2 * EDSCALE);
1369
gn_titlebar_style->set_border_width(SIDE_LEFT, 2 * EDSCALE);
1370
gn_titlebar_style->set_border_width(SIDE_RIGHT, 2 * EDSCALE);
1371
gn_titlebar_style->set_border_color(high_contrast_borders ? gn_bg_color.lightened(0.2) : gn_bg_color.darkened(0.3));
1372
gn_titlebar_style->set_expand_margin(SIDE_TOP, 2 * EDSCALE);
1373
gn_titlebar_style->set_corner_radius_individual(gn_corner_radius * EDSCALE, gn_corner_radius * EDSCALE, 0, 0);
1374
gn_titlebar_style->set_anti_aliased(true);
1375
1376
Ref<StyleBoxFlat> gn_titlebar_selected_style = gn_titlebar_style->duplicate();
1377
gn_titlebar_selected_style->set_border_color(gn_selected_border_color);
1378
gn_titlebar_selected_style->set_border_width(SIDE_TOP, 2 * EDSCALE);
1379
gn_titlebar_selected_style->set_border_width(SIDE_LEFT, 2 * EDSCALE);
1380
gn_titlebar_selected_style->set_border_width(SIDE_RIGHT, 2 * EDSCALE);
1381
gn_titlebar_selected_style->set_expand_margin(SIDE_TOP, 2 * EDSCALE);
1382
1383
Color gn_decoration_color = p_config.dark_color_1.inverted();
1384
1385
// GraphElement.
1386
1387
p_theme->set_stylebox(SceneStringName(panel), "GraphElement", gn_panel_style);
1388
p_theme->set_stylebox("panel_selected", "GraphElement", gn_panel_selected_style);
1389
p_theme->set_stylebox("titlebar", "GraphElement", gn_titlebar_style);
1390
p_theme->set_stylebox("titlebar_selected", "GraphElement", gn_titlebar_selected_style);
1391
1392
p_theme->set_color("resizer_color", "GraphElement", gn_decoration_color);
1393
p_theme->set_icon("resizer", "GraphElement", p_theme->get_icon(SNAME("GuiResizer"), EditorStringName(EditorIcons)));
1394
1395
// GraphNode.
1396
1397
Ref<StyleBoxEmpty> gn_slot_style = EditorThemeManager::make_empty_stylebox(12, 0, 12, 0);
1398
1399
p_theme->set_stylebox(SceneStringName(panel), "GraphNode", gn_panel_style);
1400
p_theme->set_stylebox("panel_selected", "GraphNode", gn_panel_selected_style);
1401
p_theme->set_stylebox("panel_focus", "GraphNode", p_config.button_style_focus);
1402
p_theme->set_stylebox("titlebar", "GraphNode", gn_titlebar_style);
1403
p_theme->set_stylebox("titlebar_selected", "GraphNode", gn_titlebar_selected_style);
1404
p_theme->set_stylebox("slot", "GraphNode", gn_slot_style);
1405
p_theme->set_stylebox("slot_selected", "GraphNode", p_config.button_style_focus);
1406
1407
p_theme->set_color("resizer_color", "GraphNode", gn_decoration_color);
1408
1409
p_theme->set_constant("port_h_offset", "GraphNode", 1);
1410
p_theme->set_constant("separation", "GraphNode", 1 * EDSCALE);
1411
1412
Ref<DPITexture> port_icon = p_theme->get_icon(SNAME("GuiGraphNodePort"), EditorStringName(EditorIcons));
1413
// The true size is 24x24 This is necessary for sharp port icons at high zoom levels in GraphEdit (up to ~200%).
1414
port_icon->set_size_override(Size2(12, 12));
1415
p_theme->set_icon("port", "GraphNode", port_icon);
1416
1417
// GraphNode's title Label.
1418
p_theme->set_type_variation("GraphNodeTitleLabel", "Label");
1419
p_theme->set_stylebox(CoreStringName(normal), "GraphNodeTitleLabel", EditorThemeManager::make_empty_stylebox(0, 0, 0, 0));
1420
p_theme->set_color("font_shadow_color", "GraphNodeTitleLabel", p_config.shadow_color);
1421
p_theme->set_constant("shadow_outline_size", "GraphNodeTitleLabel", 4);
1422
p_theme->set_constant("shadow_offset_x", "GraphNodeTitleLabel", 0);
1423
p_theme->set_constant("shadow_offset_y", "GraphNodeTitleLabel", 1);
1424
p_theme->set_constant("line_spacing", "GraphNodeTitleLabel", 3 * EDSCALE);
1425
1426
// GraphFrame.
1427
1428
const int gf_corner_width = 7 * EDSCALE;
1429
const int gf_border_width = 2 * MAX(1, EDSCALE);
1430
1431
Ref<StyleBoxFlat> graphframe_sb = EditorThemeManager::make_flat_stylebox(Color(0.0, 0.0, 0.0, 0.2), gn_margin_side, gn_margin_side, gn_margin_side, gn_margin_bottom, gf_corner_width);
1432
graphframe_sb->set_expand_margin(SIDE_TOP, 38 * EDSCALE);
1433
graphframe_sb->set_border_width_all(gf_border_width);
1434
graphframe_sb->set_border_color(high_contrast_borders ? gn_bg_color.lightened(0.2) : gn_bg_color.darkened(0.3));
1435
graphframe_sb->set_shadow_size(8 * EDSCALE);
1436
graphframe_sb->set_shadow_color(Color(p_config.shadow_color, p_config.shadow_color.a * 0.25));
1437
graphframe_sb->set_anti_aliased(true);
1438
1439
Ref<StyleBoxFlat> graphframe_sb_selected = graphframe_sb->duplicate();
1440
graphframe_sb_selected->set_border_color(gn_selected_border_color);
1441
1442
p_theme->set_stylebox(SceneStringName(panel), "GraphFrame", graphframe_sb);
1443
p_theme->set_stylebox("panel_selected", "GraphFrame", graphframe_sb_selected);
1444
p_theme->set_stylebox("titlebar", "GraphFrame", EditorThemeManager::make_empty_stylebox(4, 4, 4, 4));
1445
p_theme->set_stylebox("titlebar_selected", "GraphFrame", EditorThemeManager::make_empty_stylebox(4, 4, 4, 4));
1446
p_theme->set_color("resizer_color", "GraphFrame", gn_decoration_color);
1447
1448
// GraphFrame's title Label.
1449
p_theme->set_type_variation("GraphFrameTitleLabel", "Label");
1450
p_theme->set_stylebox(CoreStringName(normal), "GraphFrameTitleLabel", memnew(StyleBoxEmpty));
1451
p_theme->set_font_size(SceneStringName(font_size), "GraphFrameTitleLabel", 22 * EDSCALE);
1452
p_theme->set_color(SceneStringName(font_color), "GraphFrameTitleLabel", Color(1, 1, 1));
1453
p_theme->set_color("font_shadow_color", "GraphFrameTitleLabel", Color(0, 0, 0, 0));
1454
p_theme->set_color("font_outline_color", "GraphFrameTitleLabel", Color(1, 1, 1));
1455
p_theme->set_constant("shadow_offset_x", "GraphFrameTitleLabel", 1 * EDSCALE);
1456
p_theme->set_constant("shadow_offset_y", "GraphFrameTitleLabel", 1 * EDSCALE);
1457
p_theme->set_constant("outline_size", "GraphFrameTitleLabel", 0);
1458
p_theme->set_constant("shadow_outline_size", "GraphFrameTitleLabel", 1 * EDSCALE);
1459
p_theme->set_constant("line_spacing", "GraphFrameTitleLabel", 3 * EDSCALE);
1460
}
1461
1462
// VisualShader reroute node.
1463
{
1464
Ref<StyleBox> vs_reroute_panel_style = EditorThemeManager::make_empty_stylebox();
1465
Ref<StyleBox> vs_reroute_titlebar_style = vs_reroute_panel_style->duplicate();
1466
vs_reroute_titlebar_style->set_content_margin_all(16 * EDSCALE);
1467
p_theme->set_stylebox(SceneStringName(panel), "VSRerouteNode", vs_reroute_panel_style);
1468
p_theme->set_stylebox("panel_selected", "VSRerouteNode", vs_reroute_panel_style);
1469
p_theme->set_stylebox("titlebar", "VSRerouteNode", vs_reroute_titlebar_style);
1470
p_theme->set_stylebox("titlebar_selected", "VSRerouteNode", vs_reroute_titlebar_style);
1471
p_theme->set_stylebox("slot", "VSRerouteNode", EditorThemeManager::make_empty_stylebox());
1472
1473
p_theme->set_color("drag_background", "VSRerouteNode", p_config.dark_theme ? Color(0.19, 0.21, 0.24) : Color(0.8, 0.8, 0.8));
1474
p_theme->set_color("selected_rim_color", "VSRerouteNode", p_config.dark_theme ? Color(1, 1, 1) : Color(0, 0, 0));
1475
}
1476
}
1477
1478
// ColorPicker and related nodes.
1479
{
1480
// ColorPicker.
1481
Ref<StyleBoxFlat> circle_style_focus = p_config.button_style_focus->duplicate();
1482
circle_style_focus->set_corner_radius_all(256 * EDSCALE);
1483
circle_style_focus->set_corner_detail(32 * EDSCALE);
1484
1485
p_theme->set_constant("margin", "ColorPicker", p_config.base_margin);
1486
p_theme->set_constant("sv_width", "ColorPicker", 256 * EDSCALE);
1487
p_theme->set_constant("sv_height", "ColorPicker", 256 * EDSCALE);
1488
p_theme->set_constant("h_width", "ColorPicker", 30 * EDSCALE);
1489
p_theme->set_constant("label_width", "ColorPicker", 10 * EDSCALE);
1490
p_theme->set_constant("center_slider_grabbers", "ColorPicker", 1);
1491
1492
p_theme->set_stylebox("sample_focus", "ColorPicker", p_config.button_style_focus);
1493
p_theme->set_stylebox("picker_focus_rectangle", "ColorPicker", p_config.button_style_focus);
1494
p_theme->set_stylebox("picker_focus_circle", "ColorPicker", circle_style_focus);
1495
p_theme->set_color("focused_not_editing_cursor_color", "ColorPicker", p_config.highlight_color);
1496
1497
p_theme->set_icon("screen_picker", "ColorPicker", p_theme->get_icon(SNAME("ColorPick"), EditorStringName(EditorIcons)));
1498
p_theme->set_icon("shape_circle", "ColorPicker", p_theme->get_icon(SNAME("PickerShapeCircle"), EditorStringName(EditorIcons)));
1499
p_theme->set_icon("shape_rect", "ColorPicker", p_theme->get_icon(SNAME("PickerShapeRectangle"), EditorStringName(EditorIcons)));
1500
p_theme->set_icon("shape_rect_wheel", "ColorPicker", p_theme->get_icon(SNAME("PickerShapeRectangleWheel"), EditorStringName(EditorIcons)));
1501
p_theme->set_icon("add_preset", "ColorPicker", p_theme->get_icon(SNAME("Add"), EditorStringName(EditorIcons)));
1502
p_theme->set_icon("sample_bg", "ColorPicker", p_theme->get_icon(SNAME("GuiMiniCheckerboard"), EditorStringName(EditorIcons)));
1503
p_theme->set_icon("sample_revert", "ColorPicker", p_theme->get_icon(SNAME("Reload"), EditorStringName(EditorIcons)));
1504
p_theme->set_icon("overbright_indicator", "ColorPicker", p_theme->get_icon(SNAME("OverbrightIndicator"), EditorStringName(EditorIcons)));
1505
p_theme->set_icon("bar_arrow", "ColorPicker", p_theme->get_icon(SNAME("ColorPickerBarArrow"), EditorStringName(EditorIcons)));
1506
p_theme->set_icon("picker_cursor", "ColorPicker", p_theme->get_icon(SNAME("PickerCursor"), EditorStringName(EditorIcons)));
1507
p_theme->set_icon("picker_cursor_bg", "ColorPicker", p_theme->get_icon(SNAME("PickerCursorBg"), EditorStringName(EditorIcons)));
1508
p_theme->set_icon("color_script", "ColorPicker", p_theme->get_icon(SNAME("Script"), EditorStringName(EditorIcons)));
1509
1510
// ColorPickerButton.
1511
p_theme->set_icon("bg", "ColorPickerButton", p_theme->get_icon(SNAME("GuiMiniCheckerboard"), EditorStringName(EditorIcons)));
1512
1513
// ColorPresetButton.
1514
p_theme->set_stylebox("preset_fg", "ColorPresetButton", EditorThemeManager::make_flat_stylebox(Color(1, 1, 1), 2, 2, 2, 2, 2));
1515
p_theme->set_icon("preset_bg", "ColorPresetButton", p_theme->get_icon(SNAME("GuiMiniCheckerboard"), EditorStringName(EditorIcons)));
1516
p_theme->set_icon("overbright_indicator", "ColorPresetButton", p_theme->get_icon(SNAME("OverbrightIndicator"), EditorStringName(EditorIcons)));
1517
}
1518
}
1519
1520
void ThemeClassic::populate_editor_styles(const Ref<EditorTheme> &p_theme, EditorThemeManager::ThemeConfiguration &p_config) {
1521
// Project manager.
1522
{
1523
Ref<StyleBoxFlat> style_panel_container = p_theme->get_stylebox(SceneStringName(panel), SNAME("TabContainer"))->duplicate();
1524
style_panel_container->set_corner_radius(CORNER_TOP_LEFT, style_panel_container->get_corner_radius(CORNER_BOTTOM_LEFT));
1525
style_panel_container->set_corner_radius(CORNER_TOP_RIGHT, style_panel_container->get_corner_radius(CORNER_BOTTOM_RIGHT));
1526
1527
p_theme->set_stylebox("panel_container", "ProjectManager", style_panel_container);
1528
p_theme->set_stylebox("project_list", "ProjectManager", p_config.tree_panel_style);
1529
p_theme->set_stylebox("quick_settings_panel", "ProjectManager", p_config.tree_panel_style);
1530
p_theme->set_constant("sidebar_button_icon_separation", "ProjectManager", int(6 * EDSCALE));
1531
p_theme->set_icon("browse_folder", "ProjectManager", p_theme->get_icon(SNAME("FolderBrowse"), EditorStringName(EditorIcons)));
1532
p_theme->set_icon("browse_file", "ProjectManager", p_theme->get_icon(SNAME("FileBrowse"), EditorStringName(EditorIcons)));
1533
1534
// ProjectTag.
1535
{
1536
p_theme->set_type_variation("ProjectTagButton", "Button");
1537
1538
Ref<StyleBoxFlat> tag = p_config.button_style->duplicate();
1539
tag->set_bg_color(p_config.dark_theme ? tag->get_bg_color().lightened(0.2) : tag->get_bg_color().darkened(0.2));
1540
tag->set_corner_radius(CORNER_TOP_LEFT, 0);
1541
tag->set_corner_radius(CORNER_BOTTOM_LEFT, 0);
1542
tag->set_corner_radius(CORNER_TOP_RIGHT, 4);
1543
tag->set_corner_radius(CORNER_BOTTOM_RIGHT, 4);
1544
p_theme->set_stylebox(CoreStringName(normal), "ProjectTagButton", tag);
1545
1546
tag = p_config.button_style_hover->duplicate();
1547
tag->set_corner_radius(CORNER_TOP_LEFT, 0);
1548
tag->set_corner_radius(CORNER_BOTTOM_LEFT, 0);
1549
tag->set_corner_radius(CORNER_TOP_RIGHT, 4);
1550
tag->set_corner_radius(CORNER_BOTTOM_RIGHT, 4);
1551
p_theme->set_stylebox(SceneStringName(hover), "ProjectTagButton", tag);
1552
1553
tag = p_config.button_style_pressed->duplicate();
1554
tag->set_corner_radius(CORNER_TOP_LEFT, 0);
1555
tag->set_corner_radius(CORNER_BOTTOM_LEFT, 0);
1556
tag->set_corner_radius(CORNER_TOP_RIGHT, 4);
1557
tag->set_corner_radius(CORNER_BOTTOM_RIGHT, 4);
1558
p_theme->set_stylebox(SceneStringName(pressed), "ProjectTagButton", tag);
1559
}
1560
}
1561
1562
// Editor and main screen.
1563
{
1564
// Editor background.
1565
Color background_color_opaque = p_config.dark_color_2;
1566
background_color_opaque.a = 1.0;
1567
p_theme->set_color("background", EditorStringName(Editor), background_color_opaque);
1568
p_theme->set_stylebox("Background", EditorStringName(EditorStyles), EditorThemeManager::make_flat_stylebox(background_color_opaque, p_config.base_margin, p_config.base_margin, p_config.base_margin, p_config.base_margin));
1569
1570
Ref<StyleBoxFlat> editor_panel_foreground = p_config.base_style->duplicate();
1571
editor_panel_foreground->set_corner_radius_all(0);
1572
p_theme->set_stylebox("PanelForeground", EditorStringName(EditorStyles), editor_panel_foreground);
1573
1574
// Editor focus.
1575
p_theme->set_stylebox("Focus", EditorStringName(EditorStyles), p_config.button_style_focus);
1576
1577
Ref<StyleBoxFlat> style_widget_focus_viewport = p_config.button_style_focus->duplicate();
1578
// Use a less opaque color to be less distracting for the 2D and 3D editor viewports.
1579
style_widget_focus_viewport->set_border_color(p_config.accent_color * Color(1, 1, 1, 0.5));
1580
p_theme->set_stylebox("FocusViewport", EditorStringName(EditorStyles), style_widget_focus_viewport);
1581
1582
Ref<StyleBoxFlat> style_widget_scroll_container = p_config.button_style_focus->duplicate();
1583
p_theme->set_stylebox("focus", "ScrollContainer", style_widget_scroll_container);
1584
1585
// Hide scroll hints.
1586
Ref<CompressedTexture2D> empty_texture;
1587
empty_texture.instantiate();
1588
p_theme->set_icon("scroll_hint_vertical", "ScrollContainer", empty_texture);
1589
p_theme->set_icon("scroll_hint_horizontal", "ScrollContainer", empty_texture);
1590
p_theme->set_icon("scroll_hint", "Tree", empty_texture);
1591
p_theme->set_icon("scroll_hint", "ItemList", empty_texture);
1592
1593
// This stylebox is used in 3d and 2d viewports (no borders).
1594
Ref<StyleBoxFlat> style_content_panel_vp = p_config.content_panel_style->duplicate();
1595
style_content_panel_vp->set_content_margin_individual(p_config.border_width * 2, p_config.base_margin * EDSCALE, p_config.border_width * 2, p_config.border_width * 2);
1596
p_theme->set_stylebox("Content", EditorStringName(EditorStyles), style_content_panel_vp);
1597
1598
// 3D/Spatial editor.
1599
Ref<StyleBoxFlat> style_info_3d_viewport = p_config.base_style->duplicate();
1600
Color bg_color = style_info_3d_viewport->get_bg_color() * Color(1, 1, 1, 0.5);
1601
if (!p_config.dark_theme) {
1602
// Always use a dark background for the 3D viewport, even in light themes.
1603
// This is displayed as an overlay of the 3D scene, whose appearance doesn't change with the editor theme.
1604
// On top of that, dark overlays are more readable than light overlays.
1605
bg_color.invert();
1606
}
1607
style_info_3d_viewport->set_bg_color(bg_color);
1608
style_info_3d_viewport->set_border_width_all(0);
1609
p_theme->set_stylebox("Information3dViewport", EditorStringName(EditorStyles), style_info_3d_viewport);
1610
1611
// 2D, 3D, and Game toolbar.
1612
p_theme->set_type_variation("MainToolBarMargin", "MarginContainer");
1613
p_theme->set_constant("margin_left", "MainToolBarMargin", 4 * EDSCALE);
1614
p_theme->set_constant("margin_right", "MainToolBarMargin", 4 * EDSCALE);
1615
1616
// 2D and 3D contextual toolbar.
1617
// Use a custom stylebox to make contextual menu items stand out from the rest.
1618
// This helps with editor usability as contextual menu items change when selecting nodes,
1619
// even though it may not be immediately obvious at first.
1620
Ref<StyleBoxFlat> toolbar_stylebox = memnew(StyleBoxFlat);
1621
toolbar_stylebox->set_bg_color(p_config.accent_color * Color(1, 1, 1, 0.1));
1622
toolbar_stylebox->set_anti_aliased(false);
1623
// Add an underline to the StyleBox, but prevent its minimum vertical size from changing.
1624
toolbar_stylebox->set_border_color(p_config.accent_color);
1625
toolbar_stylebox->set_border_width(SIDE_BOTTOM, Math::round(2 * EDSCALE));
1626
toolbar_stylebox->set_content_margin(SIDE_BOTTOM, 0);
1627
toolbar_stylebox->set_expand_margin_individual(4 * EDSCALE, 2 * EDSCALE, 4 * EDSCALE, 4 * EDSCALE);
1628
p_theme->set_stylebox("ContextualToolbar", EditorStringName(EditorStyles), toolbar_stylebox);
1629
1630
// Script editor.
1631
p_theme->set_stylebox("ScriptEditorPanel", EditorStringName(EditorStyles), EditorThemeManager::make_empty_stylebox(p_config.base_margin, 0, p_config.base_margin, p_config.base_margin));
1632
p_theme->set_stylebox("ScriptEditorPanelFloating", EditorStringName(EditorStyles), EditorThemeManager::make_empty_stylebox(0, 0, 0, 0));
1633
p_theme->set_stylebox("ScriptEditor", EditorStringName(EditorStyles), EditorThemeManager::make_empty_stylebox(0, 0, 0, 0));
1634
1635
// Game view.
1636
p_theme->set_type_variation("GamePanel", "PanelContainer");
1637
Ref<StyleBoxFlat> game_panel = p_theme->get_stylebox(SceneStringName(panel), SNAME("Panel"))->duplicate();
1638
game_panel->set_corner_radius_all(0);
1639
game_panel->set_content_margin_all(0);
1640
game_panel->set_draw_center(true);
1641
p_theme->set_stylebox(SceneStringName(panel), "GamePanel", game_panel);
1642
1643
// Main menu.
1644
Ref<StyleBoxFlat> menu_transparent_style = p_config.button_style->duplicate();
1645
menu_transparent_style->set_bg_color(Color(1, 1, 1, 0));
1646
menu_transparent_style->set_border_width_all(0);
1647
Ref<StyleBoxFlat> main_screen_button_hover = p_config.button_style_hover->duplicate();
1648
for (int i = 0; i < 4; i++) {
1649
menu_transparent_style->set_content_margin((Side)i, p_config.button_style->get_content_margin((Side)i));
1650
main_screen_button_hover->set_content_margin((Side)i, p_config.button_style_hover->get_content_margin((Side)i));
1651
}
1652
p_theme->set_stylebox(CoreStringName(normal), "MainScreenButton", menu_transparent_style);
1653
p_theme->set_stylebox("normal_mirrored", "MainScreenButton", menu_transparent_style);
1654
p_theme->set_stylebox(SceneStringName(pressed), "MainScreenButton", menu_transparent_style);
1655
p_theme->set_stylebox("pressed_mirrored", "MainScreenButton", menu_transparent_style);
1656
p_theme->set_stylebox(SceneStringName(hover), "MainScreenButton", main_screen_button_hover);
1657
p_theme->set_stylebox("hover_mirrored", "MainScreenButton", main_screen_button_hover);
1658
p_theme->set_stylebox("hover_pressed", "MainScreenButton", main_screen_button_hover);
1659
p_theme->set_stylebox("hover_pressed_mirrored", "MainScreenButton", main_screen_button_hover);
1660
1661
p_theme->set_type_variation("MainMenuBar", "FlatMenuButton");
1662
p_theme->set_stylebox(CoreStringName(normal), "MainMenuBar", menu_transparent_style);
1663
p_theme->set_stylebox(SceneStringName(pressed), "MainMenuBar", main_screen_button_hover);
1664
p_theme->set_stylebox(SceneStringName(hover), "MainMenuBar", main_screen_button_hover);
1665
p_theme->set_stylebox("hover_pressed", "MainMenuBar", main_screen_button_hover);
1666
1667
// Run bar.
1668
p_theme->set_type_variation("RunBarButton", "FlatMenuButton");
1669
p_theme->set_stylebox("disabled", "RunBarButton", menu_transparent_style);
1670
p_theme->set_stylebox(SceneStringName(pressed), "RunBarButton", menu_transparent_style);
1671
1672
p_theme->set_type_variation("RunBarButtonMovieMakerDisabled", "RunBarButton");
1673
p_theme->set_color("icon_normal_color", "RunBarButtonMovieMakerDisabled", Color(1, 1, 1, 0.7));
1674
p_theme->set_color("icon_pressed_color", "RunBarButtonMovieMakerDisabled", Color(1, 1, 1, 0.84));
1675
p_theme->set_color("icon_hover_color", "RunBarButtonMovieMakerDisabled", Color(1, 1, 1, 0.9));
1676
p_theme->set_color("icon_hover_pressed_color", "RunBarButtonMovieMakerDisabled", Color(1, 1, 1, 0.84));
1677
1678
Ref<StyleBoxFlat> movie_maker_button_enabled_hover = menu_transparent_style->duplicate();
1679
movie_maker_button_enabled_hover->set_bg_color(p_config.accent_color.lightened(0.2));
1680
1681
p_theme->set_type_variation("RunBarButtonMovieMakerEnabled", "RunBarButton");
1682
p_theme->set_stylebox("hover_pressed", "RunBarButtonMovieMakerEnabled", movie_maker_button_enabled_hover);
1683
p_theme->set_color("icon_normal_color", "RunBarButtonMovieMakerEnabled", Color(0, 0, 0, 0.7));
1684
p_theme->set_color("icon_pressed_color", "RunBarButtonMovieMakerEnabled", Color(0, 0, 0, 0.84));
1685
p_theme->set_color("icon_hover_color", "RunBarButtonMovieMakerEnabled", Color(0, 0, 0, 0.9));
1686
p_theme->set_color("icon_hover_pressed_color", "RunBarButtonMovieMakerEnabled", Color(0, 0, 0, 0.84));
1687
1688
// Bottom panel.
1689
Ref<StyleBoxFlat> style_bottom_panel = p_config.content_panel_style->duplicate();
1690
style_bottom_panel->set_border_width(SIDE_BOTTOM, 0);
1691
style_bottom_panel->set_corner_radius_all(p_config.corner_radius * EDSCALE);
1692
style_bottom_panel->set_corner_radius(CORNER_BOTTOM_LEFT, 0);
1693
style_bottom_panel->set_corner_radius(CORNER_BOTTOM_RIGHT, 0);
1694
1695
Ref<StyleBoxFlat> style_bottom_panel_hidden = style_bottom_panel->duplicate();
1696
style_bottom_panel_hidden->set_content_margin(SIDE_TOP, 0);
1697
1698
Ref<StyleBoxFlat> style_bottom_panel_tabbar = p_config.content_panel_style->duplicate();
1699
style_bottom_panel_tabbar->set_content_margin(SIDE_TOP, 0);
1700
Ref<StyleBoxFlat> style_bottom_tab = menu_transparent_style->duplicate();
1701
style_bottom_tab->set_content_margin(SIDE_TOP, (p_config.increased_margin + 2) * EDSCALE);
1702
style_bottom_tab->set_content_margin(SIDE_BOTTOM, (p_config.increased_margin + 2) * EDSCALE);
1703
1704
Ref<StyleBoxFlat> style_bottom_tab_selected = style_bottom_tab->duplicate();
1705
style_bottom_tab_selected->set_bg_color(p_config.dark_color_1);
1706
1707
Ref<StyleBoxFlat> style_bottom_tab_hover = style_bottom_tab->duplicate();
1708
style_bottom_tab_hover->set_bg_color(p_config.button_style_hover->get_bg_color());
1709
1710
p_theme->set_stylebox("BottomPanel", EditorStringName(EditorStyles), style_bottom_panel);
1711
p_theme->set_type_variation("BottomPanel", "TabContainer");
1712
p_theme->set_stylebox(SceneStringName(panel), "BottomPanel", style_bottom_panel_hidden);
1713
p_theme->set_stylebox("tabbar_background", "BottomPanel", style_bottom_panel_tabbar);
1714
p_theme->set_stylebox("tab_selected", "BottomPanel", style_bottom_tab_selected);
1715
p_theme->set_stylebox("tab_hovered", "BottomPanel", style_bottom_tab_hover);
1716
p_theme->set_stylebox("tab_focus", "BottomPanel", menu_transparent_style);
1717
p_theme->set_stylebox("tab_unselected", "BottomPanel", style_bottom_tab);
1718
p_theme->set_color("font_unselected_color", "BottomPanel", p_config.font_color);
1719
p_theme->set_color("font_hovered_color", "BottomPanel", p_config.font_hover_color);
1720
p_theme->set_color("font_selected_color", "BottomPanel", p_config.accent_color);
1721
p_theme->set_constant("tab_separation", "BottomPanel", p_config.separation_margin);
1722
p_theme->set_type_variation("BottomPanelButton", "FlatMenuButton");
1723
p_theme->set_stylebox(CoreStringName(normal), "BottomPanelButton", menu_transparent_style);
1724
p_theme->set_stylebox(SceneStringName(pressed), "BottomPanelButton", style_bottom_tab_selected);
1725
p_theme->set_stylebox("hover_pressed", "BottomPanelButton", style_bottom_tab_hover);
1726
p_theme->set_stylebox(SceneStringName(hover), "BottomPanelButton", style_bottom_tab_hover);
1727
// Don't tint the icon even when in "pressed" state.
1728
p_theme->set_color("icon_pressed_color", "BottomPanelButton", Color(1, 1, 1, 1));
1729
Color icon_hover_color = p_config.icon_normal_color * (p_config.dark_icon_and_font ? 1.15 : 1.0);
1730
icon_hover_color.a = 1.0;
1731
p_theme->set_color("icon_hover_color", "BottomPanelButton", icon_hover_color);
1732
p_theme->set_color("icon_hover_pressed_color", "BottomPanelButton", icon_hover_color);
1733
1734
// Audio bus.
1735
p_theme->set_stylebox(CoreStringName(normal), "EditorAudioBus", style_bottom_panel);
1736
p_theme->set_stylebox("master", "EditorAudioBus", p_config.button_style_disabled);
1737
p_theme->set_stylebox("focus", "EditorAudioBus", p_config.button_style_focus);
1738
}
1739
1740
// Editor GUI widgets.
1741
{
1742
// EditorSpinSlider.
1743
p_theme->set_color("label_color", "EditorSpinSlider", p_config.font_color);
1744
p_theme->set_color("read_only_label_color", "EditorSpinSlider", p_config.font_readonly_color);
1745
1746
Ref<StyleBoxFlat> editor_spin_label_bg = p_config.base_style->duplicate();
1747
editor_spin_label_bg->set_bg_color(p_config.dark_color_3);
1748
editor_spin_label_bg->set_border_width_all(0);
1749
p_theme->set_stylebox("label_bg", "EditorSpinSlider", editor_spin_label_bg);
1750
1751
// TODO Use separate arrows instead like on SpinBox. Planned for a different PR.
1752
p_theme->set_icon("updown", "EditorSpinSlider", p_theme->get_icon(SNAME("GuiSpinboxUpdown"), EditorStringName(EditorIcons)));
1753
p_theme->set_icon("updown_disabled", "EditorSpinSlider", p_theme->get_icon(SNAME("GuiSpinboxUpdownDisabled"), EditorStringName(EditorIcons)));
1754
1755
// Launch Pad and Play buttons.
1756
Ref<StyleBoxFlat> style_launch_pad = EditorThemeManager::make_flat_stylebox(p_config.dark_color_1, 2 * EDSCALE, 0, 2 * EDSCALE, 0, p_config.corner_radius);
1757
style_launch_pad->set_corner_radius_all(p_config.corner_radius * EDSCALE);
1758
p_theme->set_stylebox("LaunchPadNormal", EditorStringName(EditorStyles), style_launch_pad);
1759
Ref<StyleBoxFlat> style_launch_pad_movie = style_launch_pad->duplicate();
1760
style_launch_pad_movie->set_bg_color(p_config.accent_color * Color(1, 1, 1, 0.1));
1761
style_launch_pad_movie->set_border_color(p_config.accent_color);
1762
style_launch_pad_movie->set_border_width_all(Math::round(2 * EDSCALE));
1763
p_theme->set_stylebox("LaunchPadMovieMode", EditorStringName(EditorStyles), style_launch_pad_movie);
1764
Ref<StyleBoxFlat> style_launch_pad_recovery_mode = style_launch_pad->duplicate();
1765
style_launch_pad_recovery_mode->set_bg_color(p_config.accent_color * Color(1, 1, 1, 0.1));
1766
style_launch_pad_recovery_mode->set_border_color(p_config.warning_color);
1767
style_launch_pad_recovery_mode->set_border_width_all(Math::round(2 * EDSCALE));
1768
p_theme->set_stylebox("LaunchPadRecoveryMode", EditorStringName(EditorStyles), style_launch_pad_recovery_mode);
1769
1770
p_theme->set_stylebox("MovieWriterButtonNormal", EditorStringName(EditorStyles), EditorThemeManager::make_empty_stylebox(0, 0, 0, 0));
1771
Ref<StyleBoxFlat> style_write_movie_button = p_config.button_style_pressed->duplicate();
1772
style_write_movie_button->set_bg_color(p_config.accent_color);
1773
style_write_movie_button->set_corner_radius_all(p_config.corner_radius * EDSCALE);
1774
style_write_movie_button->set_content_margin(SIDE_TOP, 0);
1775
style_write_movie_button->set_content_margin(SIDE_BOTTOM, 0);
1776
style_write_movie_button->set_content_margin(SIDE_LEFT, 0);
1777
style_write_movie_button->set_content_margin(SIDE_RIGHT, 0);
1778
style_write_movie_button->set_expand_margin(SIDE_RIGHT, 2 * EDSCALE);
1779
p_theme->set_stylebox("MovieWriterButtonPressed", EditorStringName(EditorStyles), style_write_movie_button);
1780
1781
// Profiler autostart indicator panel.
1782
Ref<StyleBoxFlat> style_profiler_autostart = style_launch_pad->duplicate();
1783
style_profiler_autostart->set_bg_color(Color(1, 0.867, 0.396));
1784
p_theme->set_type_variation("ProfilerAutostartIndicator", "Button");
1785
p_theme->set_stylebox(CoreStringName(normal), "ProfilerAutostartIndicator", style_profiler_autostart);
1786
p_theme->set_stylebox(SceneStringName(pressed), "ProfilerAutostartIndicator", style_profiler_autostart);
1787
p_theme->set_stylebox(SceneStringName(hover), "ProfilerAutostartIndicator", style_profiler_autostart);
1788
1789
// Recovery mode button style
1790
Ref<StyleBoxFlat> style_recovery_mode_button = p_config.button_style_pressed->duplicate();
1791
style_recovery_mode_button->set_bg_color(p_config.warning_color);
1792
style_recovery_mode_button->set_corner_radius_all(p_config.corner_radius * EDSCALE);
1793
style_recovery_mode_button->set_content_margin_all(0);
1794
// Recovery mode button is implicitly styled from the panel's background.
1795
// So, remove any existing borders. (e.g. from draw_extra_borders config)
1796
style_recovery_mode_button->set_border_width_all(0);
1797
style_recovery_mode_button->set_expand_margin(SIDE_RIGHT, 2 * EDSCALE);
1798
p_theme->set_stylebox("RecoveryModeButton", EditorStringName(EditorStyles), style_recovery_mode_button);
1799
}
1800
1801
// Standard GUI variations.
1802
{
1803
// Custom theme type for MarginContainer with 4px margins.
1804
p_theme->set_type_variation("MarginContainer4px", "MarginContainer");
1805
p_theme->set_constant("margin_left", "MarginContainer4px", 4 * EDSCALE);
1806
p_theme->set_constant("margin_top", "MarginContainer4px", 4 * EDSCALE);
1807
p_theme->set_constant("margin_right", "MarginContainer4px", 4 * EDSCALE);
1808
p_theme->set_constant("margin_bottom", "MarginContainer4px", 4 * EDSCALE);
1809
1810
// Header LinkButton variation.
1811
p_theme->set_type_variation("HeaderSmallLink", "LinkButton");
1812
p_theme->set_font(SceneStringName(font), "HeaderSmallLink", p_theme->get_font(SceneStringName(font), SNAME("HeaderSmall")));
1813
p_theme->set_font_size(SceneStringName(font_size), "HeaderSmallLink", p_theme->get_font_size(SceneStringName(font_size), SNAME("HeaderSmall")));
1814
1815
// Flat button variations.
1816
{
1817
Ref<StyleBoxEmpty> style_flat_button = EditorThemeManager::make_empty_stylebox();
1818
Ref<StyleBoxFlat> style_flat_button_hover = p_config.button_style_hover->duplicate();
1819
Ref<StyleBoxFlat> style_flat_button_pressed = p_config.button_style_pressed->duplicate();
1820
1821
for (int i = 0; i < 4; i++) {
1822
style_flat_button->set_content_margin((Side)i, p_config.button_style->get_content_margin((Side)i));
1823
style_flat_button_hover->set_content_margin((Side)i, p_config.button_style->get_content_margin((Side)i));
1824
style_flat_button_pressed->set_content_margin((Side)i, p_config.button_style->get_content_margin((Side)i));
1825
}
1826
Color flat_pressed_color = p_config.dark_color_1.lightened(0.24).lerp(p_config.accent_color, 0.2) * Color(0.8, 0.8, 0.8, 0.85);
1827
if (p_config.dark_theme) {
1828
flat_pressed_color = p_config.dark_color_1.lerp(p_config.accent_color, 0.12) * Color(0.6, 0.6, 0.6, 0.85);
1829
}
1830
style_flat_button_pressed->set_bg_color(flat_pressed_color);
1831
1832
p_theme->set_stylebox(CoreStringName(normal), SceneStringName(FlatButton), style_flat_button);
1833
p_theme->set_stylebox(SceneStringName(hover), SceneStringName(FlatButton), style_flat_button_hover);
1834
p_theme->set_stylebox(SceneStringName(pressed), SceneStringName(FlatButton), style_flat_button_pressed);
1835
p_theme->set_stylebox("disabled", SceneStringName(FlatButton), style_flat_button);
1836
1837
p_theme->set_stylebox(CoreStringName(normal), "FlatMenuButton", style_flat_button);
1838
p_theme->set_stylebox(SceneStringName(hover), "FlatMenuButton", style_flat_button_hover);
1839
p_theme->set_stylebox(SceneStringName(pressed), "FlatMenuButton", style_flat_button_pressed);
1840
p_theme->set_stylebox("disabled", "FlatMenuButton", style_flat_button);
1841
1842
// Variation for Editor Log filter buttons.
1843
1844
p_theme->set_type_variation("EditorLogFilterButton", "Button");
1845
// When pressed, don't tint the icons with the accent color, just leave them normal.
1846
p_theme->set_color("icon_pressed_color", "EditorLogFilterButton", p_config.icon_normal_color);
1847
// When unpressed, dim the icons.
1848
Color icon_normal_color = Color(p_config.icon_normal_color, (p_config.dark_icon_and_font ? 0.4 : 0.8));
1849
p_theme->set_color("icon_normal_color", "EditorLogFilterButton", icon_normal_color);
1850
Color icon_hover_color = p_config.icon_normal_color * (p_config.dark_icon_and_font ? 1.15 : 1.0);
1851
icon_hover_color.a = 1.0;
1852
p_theme->set_color("icon_hover_color", "EditorLogFilterButton", icon_hover_color);
1853
p_theme->set_color("icon_hover_pressed_color", "EditorLogFilterButton", icon_hover_color);
1854
1855
// When pressed, add a small bottom border to the buttons to better show their active state,
1856
// similar to active tabs.
1857
Ref<StyleBoxFlat> editor_log_button_pressed = style_flat_button_pressed->duplicate();
1858
editor_log_button_pressed->set_border_width(SIDE_BOTTOM, 2 * EDSCALE);
1859
editor_log_button_pressed->set_border_color(p_config.accent_color);
1860
if (!p_config.dark_theme) {
1861
editor_log_button_pressed->set_bg_color(flat_pressed_color.lightened(0.5));
1862
}
1863
p_theme->set_stylebox(CoreStringName(normal), "EditorLogFilterButton", style_flat_button);
1864
p_theme->set_stylebox(SceneStringName(hover), "EditorLogFilterButton", style_flat_button_hover);
1865
p_theme->set_stylebox(SceneStringName(pressed), "EditorLogFilterButton", editor_log_button_pressed);
1866
}
1867
1868
// Buttons styles that stand out against the panel background (e.g. AssetLib).
1869
{
1870
p_theme->set_type_variation("PanelBackgroundButton", "Button");
1871
1872
Ref<StyleBoxFlat> panel_button_style = p_config.button_style->duplicate();
1873
panel_button_style->set_bg_color(p_config.base_color.lerp(p_config.mono_color, 0.08));
1874
1875
Ref<StyleBoxFlat> panel_button_style_hover = p_config.button_style_hover->duplicate();
1876
panel_button_style_hover->set_bg_color(p_config.base_color.lerp(p_config.mono_color, 0.16));
1877
1878
Ref<StyleBoxFlat> panel_button_style_pressed = p_config.button_style_pressed->duplicate();
1879
panel_button_style_pressed->set_bg_color(p_config.base_color.lerp(p_config.mono_color, 0.20));
1880
1881
Ref<StyleBoxFlat> panel_button_style_disabled = p_config.button_style_disabled->duplicate();
1882
panel_button_style_disabled->set_bg_color(p_config.disabled_bg_color);
1883
1884
p_theme->set_stylebox(CoreStringName(normal), "PanelBackgroundButton", panel_button_style);
1885
p_theme->set_stylebox(SceneStringName(hover), "PanelBackgroundButton", panel_button_style_hover);
1886
p_theme->set_stylebox(SceneStringName(pressed), "PanelBackgroundButton", panel_button_style_pressed);
1887
p_theme->set_stylebox("disabled", "PanelBackgroundButton", panel_button_style_disabled);
1888
}
1889
1890
// Top bar selectors.
1891
{
1892
p_theme->set_type_variation("TopBarOptionButton", "OptionButton");
1893
p_theme->set_font(SceneStringName(font), "TopBarOptionButton", p_theme->get_font(SNAME("bold"), EditorStringName(EditorFonts)));
1894
p_theme->set_font_size(SceneStringName(font_size), "TopBarOptionButton", p_theme->get_font_size(SNAME("bold_size"), EditorStringName(EditorFonts)));
1895
}
1896
1897
// Complex editor windows.
1898
{
1899
Ref<StyleBoxFlat> style_complex_window = p_config.window_style->duplicate();
1900
style_complex_window->set_bg_color(p_config.dark_color_2);
1901
style_complex_window->set_border_color(p_config.dark_color_2);
1902
p_theme->set_stylebox(SceneStringName(panel), "EditorSettingsDialog", style_complex_window);
1903
p_theme->set_stylebox(SceneStringName(panel), "ProjectSettingsEditor", style_complex_window);
1904
p_theme->set_stylebox(SceneStringName(panel), "EditorAbout", style_complex_window);
1905
}
1906
1907
// InspectorActionButton.
1908
{
1909
p_theme->set_type_variation("InspectorActionButton", "Button");
1910
1911
const float action_extra_margin = 32 * EDSCALE;
1912
p_theme->set_constant("h_separation", "InspectorActionButton", action_extra_margin);
1913
1914
Color color_inspector_action = p_config.dark_color_1.lerp(p_config.mono_color, 0.12);
1915
color_inspector_action.a = 0.5;
1916
Ref<StyleBoxFlat> style_inspector_action = p_config.button_style->duplicate();
1917
style_inspector_action->set_bg_color(color_inspector_action);
1918
style_inspector_action->set_content_margin(SIDE_RIGHT, action_extra_margin);
1919
p_theme->set_stylebox(CoreStringName(normal), "InspectorActionButton", style_inspector_action);
1920
1921
style_inspector_action = p_config.button_style->duplicate();
1922
style_inspector_action->set_bg_color(color_inspector_action);
1923
style_inspector_action->set_content_margin(SIDE_LEFT, action_extra_margin);
1924
p_theme->set_stylebox("normal_mirrored", "InspectorActionButton", style_inspector_action);
1925
1926
style_inspector_action = p_config.button_style_hover->duplicate();
1927
style_inspector_action->set_content_margin(SIDE_RIGHT, action_extra_margin);
1928
p_theme->set_stylebox(SceneStringName(hover), "InspectorActionButton", style_inspector_action);
1929
1930
style_inspector_action = p_config.button_style_hover->duplicate();
1931
style_inspector_action->set_content_margin(SIDE_LEFT, action_extra_margin);
1932
p_theme->set_stylebox("hover_mirrored", "InspectorActionButton", style_inspector_action);
1933
1934
style_inspector_action = p_config.button_style_pressed->duplicate();
1935
style_inspector_action->set_content_margin(SIDE_RIGHT, action_extra_margin);
1936
p_theme->set_stylebox(SceneStringName(pressed), "InspectorActionButton", style_inspector_action);
1937
1938
style_inspector_action = p_config.button_style_pressed->duplicate();
1939
style_inspector_action->set_content_margin(SIDE_LEFT, action_extra_margin);
1940
p_theme->set_stylebox("pressed_mirrored", "InspectorActionButton", style_inspector_action);
1941
1942
style_inspector_action = p_config.button_style_disabled->duplicate();
1943
style_inspector_action->set_content_margin(SIDE_RIGHT, action_extra_margin);
1944
p_theme->set_stylebox("disabled", "InspectorActionButton", style_inspector_action);
1945
1946
style_inspector_action = p_config.button_style_disabled->duplicate();
1947
style_inspector_action->set_content_margin(SIDE_LEFT, action_extra_margin);
1948
p_theme->set_stylebox("disabled_mirrored", "InspectorActionButton", style_inspector_action);
1949
}
1950
1951
// Buttons in material previews.
1952
{
1953
const Color dim_light_color = p_config.icon_normal_color.darkened(0.24);
1954
const Color dim_light_highlighted_color = p_config.icon_normal_color.darkened(0.18);
1955
Ref<StyleBox> sb_empty_borderless = EditorThemeManager::make_empty_stylebox();
1956
1957
p_theme->set_type_variation("PreviewLightButton", "Button");
1958
// When pressed, don't use the accent color tint. When unpressed, dim the icon.
1959
p_theme->set_color("icon_normal_color", "PreviewLightButton", dim_light_color);
1960
p_theme->set_color("icon_focus_color", "PreviewLightButton", dim_light_color);
1961
p_theme->set_color("icon_pressed_color", "PreviewLightButton", p_config.icon_normal_color);
1962
p_theme->set_color("icon_hover_pressed_color", "PreviewLightButton", p_config.icon_normal_color);
1963
// Unpressed icon is dim, so use a dim highlight.
1964
p_theme->set_color("icon_hover_color", "PreviewLightButton", dim_light_highlighted_color);
1965
1966
p_theme->set_stylebox(CoreStringName(normal), "PreviewLightButton", sb_empty_borderless);
1967
p_theme->set_stylebox(SceneStringName(hover), "PreviewLightButton", sb_empty_borderless);
1968
p_theme->set_stylebox("focus", "PreviewLightButton", sb_empty_borderless);
1969
p_theme->set_stylebox(SceneStringName(pressed), "PreviewLightButton", sb_empty_borderless);
1970
}
1971
1972
// TabContainerOdd variation.
1973
{
1974
// Can be used on tabs against the base color background (e.g. nested tabs).
1975
p_theme->set_type_variation("TabContainerOdd", "TabContainer");
1976
1977
Ref<StyleBoxFlat> style_tab_selected_odd = p_theme->get_stylebox(SNAME("tab_selected"), SNAME("TabContainer"))->duplicate();
1978
style_tab_selected_odd->set_bg_color(p_config.disabled_bg_color);
1979
p_theme->set_stylebox("tab_selected", "TabContainerOdd", style_tab_selected_odd);
1980
1981
Ref<StyleBoxFlat> style_content_panel_odd = p_config.content_panel_style->duplicate();
1982
style_content_panel_odd->set_bg_color(p_config.disabled_bg_color);
1983
p_theme->set_stylebox(SceneStringName(panel), "TabContainerOdd", style_content_panel_odd);
1984
}
1985
1986
// EditorValidationPanel.
1987
p_theme->set_stylebox(SceneStringName(panel), "EditorValidationPanel", p_config.tree_panel_style);
1988
1989
// Secondary trees and item lists.
1990
p_theme->set_type_variation("TreeSecondary", "Tree");
1991
p_theme->set_type_variation("ItemListSecondary", "ItemList");
1992
1993
// ForegroundPanel.
1994
p_theme->set_type_variation("PanelForeground", "Panel");
1995
p_theme->set_stylebox(SceneStringName(panel), "PanelForeground", p_config.base_empty_style);
1996
}
1997
1998
// Editor inspector.
1999
{
2000
// Panel.
2001
Ref<StyleBoxFlat> editor_inspector_panel = p_config.tree_panel_style->duplicate();
2002
editor_inspector_panel->set_border_width_all(0);
2003
editor_inspector_panel->set_content_margin_all(0);
2004
p_theme->set_stylebox(SceneStringName(panel), "EditorInspector", editor_inspector_panel);
2005
2006
// Vertical separation between inspector areas.
2007
p_theme->set_type_variation("EditorInspectorContainer", "VBoxContainer");
2008
p_theme->set_constant("separation", "EditorInspectorContainer", 0);
2009
2010
// Vertical separation between inspector properties.
2011
p_theme->set_type_variation("EditorPropertyContainer", "VBoxContainer");
2012
p_theme->set_constant("separation", "EditorPropertyContainer", p_config.increased_margin * EDSCALE);
2013
2014
// EditorProperty.
2015
2016
Ref<StyleBoxFlat> style_property_bg = p_config.base_style->duplicate();
2017
style_property_bg->set_bg_color(p_config.highlight_color);
2018
style_property_bg->set_border_width_all(0);
2019
2020
Ref<StyleBoxFlat> style_property_child_bg = p_config.base_style->duplicate();
2021
style_property_child_bg->set_bg_color(p_config.dark_color_2);
2022
style_property_child_bg->set_border_width_all(0);
2023
2024
p_theme->set_stylebox("bg", "EditorProperty", memnew(StyleBoxEmpty));
2025
p_theme->set_stylebox("bg_selected", "EditorProperty", style_property_bg);
2026
p_theme->set_stylebox("child_bg", "EditorProperty", style_property_child_bg);
2027
p_theme->set_constant("font_offset", "EditorProperty", 8 * EDSCALE);
2028
2029
const Color property_color = p_config.font_color.lerp(Color(0.5, 0.5, 0.5), 0.5);
2030
const Color readonly_color = property_color.lerp(p_config.dark_icon_and_font ? Color(0, 0, 0) : Color(1, 1, 1), 0.25);
2031
const Color readonly_warning_color = p_config.error_color.lerp(p_config.dark_icon_and_font ? Color(0, 0, 0) : Color(1, 1, 1), 0.25);
2032
2033
p_theme->set_color("property_color", "EditorProperty", property_color);
2034
p_theme->set_color("readonly_color", "EditorProperty", readonly_color);
2035
p_theme->set_color("warning_color", "EditorProperty", p_config.warning_color);
2036
p_theme->set_color("readonly_warning_color", "EditorProperty", readonly_warning_color);
2037
2038
Ref<StyleBoxFlat> style_property_group_note = p_config.base_style->duplicate();
2039
Color property_group_note_color = p_config.accent_color;
2040
property_group_note_color.a = 0.1;
2041
style_property_group_note->set_bg_color(property_group_note_color);
2042
p_theme->set_stylebox("bg_group_note", "EditorProperty", style_property_group_note);
2043
2044
// Make the height for properties uniform.
2045
Ref<StyleBoxFlat> inspector_button_style = p_theme->get_stylebox(CoreStringName(normal), SNAME("Button"));
2046
Ref<Font> font = p_theme->get_font(SceneStringName(font), SNAME("LineEdit"));
2047
int font_size = p_theme->get_font_size(SceneStringName(font_size), SNAME("LineEdit"));
2048
p_config.inspector_property_height = inspector_button_style->get_minimum_size().height + font->get_height(font_size);
2049
p_theme->set_constant("inspector_property_height", EditorStringName(Editor), p_config.inspector_property_height);
2050
2051
// EditorInspectorSection.
2052
2053
Color inspector_section_color = p_config.font_color.lerp(Color(0.5, 0.5, 0.5), 0.35);
2054
p_theme->set_color(SceneStringName(font_color), "EditorInspectorSection", inspector_section_color);
2055
2056
Color inspector_indent_color = p_config.accent_color;
2057
inspector_indent_color.a = 0.2;
2058
Ref<StyleBoxFlat> inspector_indent_style = EditorThemeManager::make_flat_stylebox(inspector_indent_color, 2.0 * EDSCALE, 0, 2.0 * EDSCALE, 0);
2059
p_theme->set_stylebox("indent_box", "EditorInspectorSection", inspector_indent_style);
2060
p_theme->set_constant("indent_size", "EditorInspectorSection", 6.0 * EDSCALE);
2061
p_theme->set_constant("h_separation", "EditorInspectorSection", 2.0 * EDSCALE);
2062
2063
Color prop_subsection_stylebox_color = Color(1, 1, 1, 0);
2064
p_theme->set_color("prop_subsection_stylebox_color", EditorStringName(Editor), prop_subsection_stylebox_color);
2065
Ref<StyleBoxFlat> prop_subsection_stylebox = p_config.base_style->duplicate();
2066
prop_subsection_stylebox->set_bg_color(p_theme->get_color("prop_subsection_stylebox_color", EditorStringName(Editor)));
2067
p_theme->set_stylebox("prop_subsection_stylebox", EditorStringName(Editor), prop_subsection_stylebox);
2068
p_theme->set_stylebox("prop_subsection_stylebox_left", EditorStringName(Editor), prop_subsection_stylebox);
2069
p_theme->set_stylebox("prop_subsection_stylebox_right", EditorStringName(Editor), prop_subsection_stylebox);
2070
2071
Color prop_category_color = p_config.dark_color_1.lerp(p_config.mono_color, 0.12);
2072
Color prop_subsection_color = p_config.dark_color_1.lerp(p_config.mono_color, 0.06);
2073
2074
p_theme->set_color("prop_subsection", EditorStringName(Editor), prop_subsection_color);
2075
#ifndef DISABLE_DEPRECATED // Used before 4.3.
2076
p_theme->set_color("property_color", EditorStringName(Editor), prop_category_color);
2077
#endif
2078
2079
// EditorInspectorCategory.
2080
2081
Ref<StyleBoxFlat> category_bg = p_config.base_style->duplicate();
2082
category_bg->set_bg_color(prop_category_color);
2083
category_bg->set_border_color(prop_category_color);
2084
category_bg->set_content_margin_all(0);
2085
p_theme->set_stylebox("bg", "EditorInspectorCategory", category_bg);
2086
2087
p_theme->set_constant("inspector_margin", EditorStringName(Editor), 12 * EDSCALE);
2088
2089
// Colored EditorProperty.
2090
for (int i = 0; i < 16; i++) {
2091
Color si_base_color = p_config.accent_color;
2092
2093
float hue_rotate = (i * 2 % 16) / 16.0;
2094
si_base_color.set_hsv(Math::fmod(float(si_base_color.get_h() + hue_rotate), float(1.0)), si_base_color.get_s(), si_base_color.get_v());
2095
si_base_color = p_config.accent_color.lerp(si_base_color, p_config.subresource_hue_tint);
2096
2097
// Sub-inspector background.
2098
Ref<StyleBoxFlat> sub_inspector_bg = p_config.base_style->duplicate();
2099
sub_inspector_bg->set_bg_color(p_config.dark_color_1.lerp(si_base_color, 0.08));
2100
sub_inspector_bg->set_border_width_all(2 * EDSCALE);
2101
sub_inspector_bg->set_border_color(si_base_color * Color(0.7, 0.7, 0.7, 0.8));
2102
sub_inspector_bg->set_content_margin_all(4 * EDSCALE);
2103
sub_inspector_bg->set_corner_radius(CORNER_TOP_LEFT, 0);
2104
sub_inspector_bg->set_corner_radius(CORNER_TOP_RIGHT, 0);
2105
2106
p_theme->set_stylebox("sub_inspector_bg" + itos(i + 1), EditorStringName(EditorStyles), sub_inspector_bg);
2107
2108
// EditorProperty background while it has a sub-inspector open.
2109
Ref<StyleBoxFlat> bg_color = EditorThemeManager::make_flat_stylebox(si_base_color * Color(0.7, 0.7, 0.7, 0.8), 0, 0, 0, 0, p_config.corner_radius);
2110
bg_color->set_anti_aliased(false);
2111
bg_color->set_corner_radius(CORNER_BOTTOM_LEFT, 0);
2112
bg_color->set_corner_radius(CORNER_BOTTOM_RIGHT, 0);
2113
2114
p_theme->set_stylebox("sub_inspector_property_bg" + itos(i + 1), EditorStringName(EditorStyles), bg_color);
2115
2116
// Dictionary editor add item.
2117
// Expand to the left and right by 4px to compensate for the dictionary editor margins.
2118
Color style_dictionary_bg_color = p_config.dark_color_3.lerp(si_base_color, 0.08);
2119
Ref<StyleBoxFlat> style_dictionary_add_item = EditorThemeManager::make_flat_stylebox(style_dictionary_bg_color, 0, 4, 0, 4, p_config.corner_radius);
2120
style_dictionary_add_item->set_expand_margin(SIDE_LEFT, 2 * EDSCALE);
2121
style_dictionary_add_item->set_expand_margin(SIDE_RIGHT, 2 * EDSCALE);
2122
p_theme->set_stylebox("DictionaryAddItem" + itos(i + 1), EditorStringName(EditorStyles), style_dictionary_add_item);
2123
2124
// Object selector.
2125
p_theme->set_type_variation("ObjectSelectorMargin", "MarginContainer");
2126
p_theme->set_constant("margin_left", "ObjectSelectorMargin", 4 * EDSCALE);
2127
p_theme->set_constant("margin_right", "ObjectSelectorMargin", 6 * EDSCALE);
2128
}
2129
Color si_base_color = p_config.accent_color;
2130
2131
// Sub-inspector background.
2132
Ref<StyleBoxFlat> sub_inspector_bg = p_config.base_style->duplicate();
2133
sub_inspector_bg->set_bg_color(Color(1, 1, 1, 0));
2134
sub_inspector_bg->set_border_width_all(2 * EDSCALE);
2135
sub_inspector_bg->set_border_color(p_config.dark_color_1.lerp(si_base_color, 0.15));
2136
sub_inspector_bg->set_content_margin_all(4 * EDSCALE);
2137
sub_inspector_bg->set_corner_radius(CORNER_TOP_LEFT, 0);
2138
sub_inspector_bg->set_corner_radius(CORNER_TOP_RIGHT, 0);
2139
2140
p_theme->set_stylebox("sub_inspector_bg0", EditorStringName(EditorStyles), sub_inspector_bg);
2141
2142
// Sub-inspector background no border.
2143
2144
Ref<StyleBoxFlat> sub_inspector_bg_no_border = p_config.base_style->duplicate();
2145
sub_inspector_bg_no_border->set_content_margin_all(2 * EDSCALE);
2146
sub_inspector_bg_no_border->set_bg_color(p_config.dark_color_2.lerp(p_config.dark_color_3, 0.15));
2147
p_theme->set_stylebox("sub_inspector_bg_no_border", EditorStringName(EditorStyles), sub_inspector_bg_no_border);
2148
2149
// EditorProperty background while it has a sub-inspector open.
2150
Ref<StyleBoxFlat> bg_color = EditorThemeManager::make_flat_stylebox(p_config.dark_color_1.lerp(si_base_color, 0.15), 0, 0, 0, 0, p_config.corner_radius);
2151
bg_color->set_anti_aliased(false);
2152
bg_color->set_corner_radius(CORNER_BOTTOM_LEFT, 0);
2153
bg_color->set_corner_radius(CORNER_BOTTOM_RIGHT, 0);
2154
2155
p_theme->set_stylebox("sub_inspector_property_bg0", EditorStringName(EditorStyles), bg_color);
2156
2157
p_theme->set_color("sub_inspector_property_color", EditorStringName(EditorStyles), p_config.dark_icon_and_font ? Color(1, 1, 1, 1) : Color(0, 0, 0, 1));
2158
2159
// Dictionary editor.
2160
2161
// Expand to the left and right by 4px to compensate for the dictionary editor margins.
2162
Ref<StyleBoxFlat> style_dictionary_add_item = EditorThemeManager::make_flat_stylebox(prop_subsection_color, 0, 4, 0, 4, p_config.corner_radius);
2163
style_dictionary_add_item->set_expand_margin(SIDE_LEFT, 2 * EDSCALE);
2164
style_dictionary_add_item->set_expand_margin(SIDE_RIGHT, 2 * EDSCALE);
2165
p_theme->set_stylebox("DictionaryAddItem0", EditorStringName(EditorStyles), style_dictionary_add_item);
2166
}
2167
2168
// Animation Editor.
2169
{
2170
// Timeline general.
2171
p_theme->set_constant("timeline_v_separation", "AnimationTrackEditor", 0);
2172
p_theme->set_constant("track_v_separation", "AnimationTrackEditor", 0);
2173
2174
// AnimationTimelineEdit.
2175
// "primary" is used for integer timeline values, "secondary" for decimals.
2176
2177
Ref<StyleBoxFlat> style_time_unavailable = EditorThemeManager::make_flat_stylebox(p_config.dark_color_3, 0, 0, 0, 0, 0);
2178
Ref<StyleBoxFlat> style_time_available = EditorThemeManager::make_flat_stylebox(p_config.font_color * Color(1, 1, 1, 0.2), 0, 0, 0, 0, 0);
2179
if (!p_config.dark_theme) {
2180
style_time_unavailable = EditorThemeManager::make_flat_stylebox(p_config.font_color * Color(1, 1, 1, 0.2), 0, 0, 0, 0, 0);
2181
style_time_available = EditorThemeManager::make_flat_stylebox(p_config.dark_color_3 * Color(1, 1, 1, 0.5), 0, 0, 0, 0, 0);
2182
}
2183
2184
p_theme->set_stylebox("time_unavailable", "AnimationTimelineEdit", style_time_unavailable);
2185
p_theme->set_stylebox("time_available", "AnimationTimelineEdit", style_time_available);
2186
2187
p_theme->set_color("v_line_primary_color", "AnimationTimelineEdit", p_config.font_color * Color(1, 1, 1, 0.2));
2188
p_theme->set_color("v_line_secondary_color", "AnimationTimelineEdit", p_config.font_color * Color(1, 1, 1, 0.2));
2189
p_theme->set_color("h_line_color", "AnimationTimelineEdit", p_config.font_color * Color(1, 1, 1, 0.2));
2190
p_theme->set_color("font_primary_color", "AnimationTimelineEdit", p_config.font_color);
2191
p_theme->set_color("font_secondary_color", "AnimationTimelineEdit", p_config.font_color * Color(1, 1, 1, 0.5));
2192
2193
p_theme->set_constant("v_line_primary_margin", "AnimationTimelineEdit", 0);
2194
p_theme->set_constant("v_line_secondary_margin", "AnimationTimelineEdit", 0);
2195
p_theme->set_constant("v_line_primary_width", "AnimationTimelineEdit", 1 * EDSCALE);
2196
p_theme->set_constant("v_line_secondary_width", "AnimationTimelineEdit", 1 * EDSCALE);
2197
p_theme->set_constant("text_primary_margin", "AnimationTimelineEdit", 3 * EDSCALE);
2198
p_theme->set_constant("text_secondary_margin", "AnimationTimelineEdit", 3 * EDSCALE);
2199
2200
// AnimationTrackEdit.
2201
2202
Ref<StyleBoxFlat> style_animation_track_odd = EditorThemeManager::make_flat_stylebox(Color(0.5, 0.5, 0.5, 0.05), 0, 0, 0, 0, p_config.corner_radius);
2203
Ref<StyleBoxFlat> style_animation_track_hover = EditorThemeManager::make_flat_stylebox(Color(0.5, 0.5, 0.5, 0.1), 0, 0, 0, 0, p_config.corner_radius);
2204
2205
p_theme->set_stylebox("odd", "AnimationTrackEdit", style_animation_track_odd);
2206
p_theme->set_stylebox(SceneStringName(hover), "AnimationTrackEdit", style_animation_track_hover);
2207
p_theme->set_stylebox("focus", "AnimationTrackEdit", p_config.button_style_focus);
2208
2209
p_theme->set_color("h_line_color", "AnimationTrackEdit", p_config.font_color * Color(1, 1, 1, 0.2));
2210
2211
p_theme->set_constant("h_separation", "AnimationTrackEdit", (p_config.increased_margin + 2) * EDSCALE);
2212
p_theme->set_constant("outer_margin", "AnimationTrackEdit", p_config.increased_margin * 6 * EDSCALE);
2213
2214
// AnimationTrackEditGroup.
2215
2216
Ref<StyleBoxFlat> style_animation_track_header = EditorThemeManager::make_flat_stylebox(p_config.dark_color_2 * Color(1, 1, 1, 0.6), p_config.increased_margin * 3, 0, 0, 0, p_config.corner_radius);
2217
2218
p_theme->set_stylebox("header", "AnimationTrackEditGroup", style_animation_track_header);
2219
2220
Ref<StyleBoxFlat> style_animation_track_group_hover = p_config.base_style->duplicate();
2221
style_animation_track_group_hover->set_bg_color(p_config.highlight_color);
2222
p_theme->set_stylebox(SceneStringName(hover), "AnimationTrackEditGroup", style_animation_track_group_hover);
2223
2224
p_theme->set_color("h_line_color", "AnimationTrackEditGroup", p_config.font_color * Color(1, 1, 1, 0.2));
2225
p_theme->set_color("v_line_color", "AnimationTrackEditGroup", p_config.font_color * Color(1, 1, 1, 0.2));
2226
2227
p_theme->set_constant("h_separation", "AnimationTrackEditGroup", (p_config.increased_margin + 2) * EDSCALE);
2228
p_theme->set_constant("v_separation", "AnimationTrackEditGroup", 0);
2229
2230
// AnimationBezierTrackEdit.
2231
2232
p_theme->set_color("focus_color", "AnimationBezierTrackEdit", p_config.accent_color * Color(1, 1, 1, 0.7));
2233
p_theme->set_color("track_focus_color", "AnimationBezierTrackEdit", p_config.accent_color * Color(1, 1, 1, 0.5));
2234
p_theme->set_color("h_line_color", "AnimationBezierTrackEdit", p_config.font_color * Color(1, 1, 1, 0.2));
2235
p_theme->set_color("v_line_color", "AnimationBezierTrackEdit", p_config.font_color * Color(1, 1, 1, 0.2));
2236
2237
p_theme->set_constant("h_separation", "AnimationBezierTrackEdit", (p_config.increased_margin + 2) * EDSCALE);
2238
p_theme->set_constant("v_separation", "AnimationBezierTrackEdit", p_config.forced_even_separation * EDSCALE);
2239
}
2240
2241
// Editor help.
2242
{
2243
Ref<StyleBoxFlat> style_editor_help = p_config.base_style->duplicate();
2244
style_editor_help->set_bg_color(p_config.dark_color_2);
2245
style_editor_help->set_border_color(p_config.dark_color_3);
2246
p_theme->set_stylebox("background", "EditorHelp", style_editor_help);
2247
2248
const Color kbd_color = p_config.font_color.lerp(Color(0.5, 0.5, 0.5), 0.5);
2249
2250
p_theme->set_color("title_color", "EditorHelp", p_config.accent_color);
2251
p_theme->set_color("headline_color", "EditorHelp", p_config.mono_color_font);
2252
p_theme->set_color("text_color", "EditorHelp", p_config.font_color);
2253
p_theme->set_color("comment_color", "EditorHelp", p_config.font_color * Color(1, 1, 1, 0.6));
2254
p_theme->set_color("symbol_color", "EditorHelp", p_config.font_color * Color(1, 1, 1, 0.6));
2255
p_theme->set_color("value_color", "EditorHelp", p_config.font_color * Color(1, 1, 1, 0.6));
2256
p_theme->set_color("qualifier_color", "EditorHelp", p_config.font_color * Color(1, 1, 1, 0.8));
2257
p_theme->set_color("type_color", "EditorHelp", p_config.accent_color.lerp(p_config.font_color, 0.5));
2258
p_theme->set_color("override_color", "EditorHelp", p_config.warning_color);
2259
p_theme->set_color("selection_color", "EditorHelp", p_config.selection_color);
2260
p_theme->set_color("link_color", "EditorHelp", p_config.accent_color.lerp(p_config.mono_color_font, 0.8));
2261
p_theme->set_color("code_color", "EditorHelp", p_config.accent_color.lerp(p_config.mono_color_font, 0.6));
2262
p_theme->set_color("kbd_color", "EditorHelp", p_config.accent_color.lerp(kbd_color, 0.6));
2263
p_theme->set_color("code_bg_color", "EditorHelp", p_config.dark_color_3);
2264
p_theme->set_color("kbd_bg_color", "EditorHelp", p_config.dark_color_1);
2265
p_theme->set_color("param_bg_color", "EditorHelp", p_config.dark_color_1);
2266
p_theme->set_constant(SceneStringName(line_separation), "EditorHelp", Math::round(6 * EDSCALE));
2267
p_theme->set_constant("table_h_separation", "EditorHelp", 16 * EDSCALE);
2268
p_theme->set_constant("table_v_separation", "EditorHelp", 6 * EDSCALE);
2269
p_theme->set_constant("text_highlight_h_padding", "EditorHelp", 1 * EDSCALE);
2270
p_theme->set_constant("text_highlight_v_padding", "EditorHelp", 2 * EDSCALE);
2271
}
2272
2273
// EditorHelpBitTitle.
2274
{
2275
Ref<StyleBoxFlat> style = p_config.tree_panel_style->duplicate();
2276
style->set_bg_color(p_config.dark_theme ? style->get_bg_color().lightened(0.04) : style->get_bg_color().darkened(0.04));
2277
style->set_border_color(p_config.dark_theme ? style->get_border_color().lightened(0.04) : style->get_border_color().darkened(0.04));
2278
if (p_config.draw_extra_borders) {
2279
// A tooltip border is already drawn for all tooltips when Draw Extra Borders is enabled.
2280
// Hide borders that don't serve in drawing a line between the title and content to prevent the border from being doubled.
2281
style->set_border_width(SIDE_TOP, 0);
2282
style->set_border_width(SIDE_LEFT, 0);
2283
style->set_border_width(SIDE_RIGHT, 0);
2284
}
2285
style->set_corner_radius(CORNER_BOTTOM_LEFT, 0);
2286
style->set_corner_radius(CORNER_BOTTOM_RIGHT, 0);
2287
2288
p_theme->set_type_variation("EditorHelpBitTitle", "RichTextLabel");
2289
p_theme->set_stylebox(CoreStringName(normal), "EditorHelpBitTitle", style);
2290
}
2291
2292
// EditorHelpBitContent.
2293
{
2294
Ref<StyleBoxFlat> style = p_config.tree_panel_style->duplicate();
2295
if (p_config.draw_extra_borders) {
2296
// A tooltip border is already drawn for all tooltips when Draw Extra Borders is enabled.
2297
// Hide borders that don't serve in drawing a line between the title and content to prevent the border from being doubled.
2298
style->set_border_width(SIDE_BOTTOM, 0);
2299
style->set_border_width(SIDE_LEFT, 0);
2300
style->set_border_width(SIDE_RIGHT, 0);
2301
}
2302
style->set_corner_radius(CORNER_TOP_LEFT, 0);
2303
style->set_corner_radius(CORNER_TOP_RIGHT, 0);
2304
2305
p_theme->set_type_variation("EditorHelpBitContent", "RichTextLabel");
2306
p_theme->set_stylebox(CoreStringName(normal), "EditorHelpBitContent", style);
2307
}
2308
2309
// Asset Library.
2310
p_theme->set_stylebox("bg", "AssetLib", p_config.base_empty_style);
2311
p_theme->set_stylebox(SceneStringName(panel), "AssetLib", p_config.content_panel_style);
2312
p_theme->set_color("status_color", "AssetLib", Color(0.5, 0.5, 0.5)); // FIXME: Use a defined color instead.
2313
p_theme->set_icon("dismiss", "AssetLib", p_theme->get_icon(SNAME("Close"), EditorStringName(EditorIcons)));
2314
2315
// Debugger.
2316
Ref<StyleBoxFlat> debugger_panel_style = p_config.content_panel_style->duplicate();
2317
debugger_panel_style->set_border_width(SIDE_BOTTOM, 0);
2318
p_theme->set_stylebox("DebuggerPanel", EditorStringName(EditorStyles), debugger_panel_style);
2319
2320
// Resource and node editors.
2321
{
2322
// TextureRegion editor.
2323
Ref<StyleBoxFlat> style_texture_region_bg = p_config.tree_panel_style->duplicate();
2324
style_texture_region_bg->set_content_margin_all(0);
2325
p_theme->set_stylebox("TextureRegionPreviewBG", EditorStringName(EditorStyles), style_texture_region_bg);
2326
p_theme->set_stylebox("TextureRegionPreviewFG", EditorStringName(EditorStyles), EditorThemeManager::make_empty_stylebox(0, 0, 0, 0));
2327
2328
// Theme editor.
2329
{
2330
p_theme->set_color("preview_picker_overlay_color", "ThemeEditor", Color(0.1, 0.1, 0.1, 0.25));
2331
2332
Color theme_preview_picker_bg_color = p_config.accent_color;
2333
theme_preview_picker_bg_color.a = 0.2;
2334
Ref<StyleBoxFlat> theme_preview_picker_sb = EditorThemeManager::make_flat_stylebox(theme_preview_picker_bg_color, 0, 0, 0, 0);
2335
theme_preview_picker_sb->set_border_color(p_config.accent_color);
2336
theme_preview_picker_sb->set_border_width_all(1.0 * EDSCALE);
2337
p_theme->set_stylebox("preview_picker_overlay", "ThemeEditor", theme_preview_picker_sb);
2338
2339
Color theme_preview_picker_label_bg_color = p_config.accent_color;
2340
theme_preview_picker_label_bg_color.set_v(0.5);
2341
Ref<StyleBoxFlat> theme_preview_picker_label_sb = EditorThemeManager::make_flat_stylebox(theme_preview_picker_label_bg_color, 4.0, 1.0, 4.0, 3.0);
2342
p_theme->set_stylebox("preview_picker_label", "ThemeEditor", theme_preview_picker_label_sb);
2343
2344
Ref<StyleBoxFlat> style_theme_preview_tab = p_theme->get_stylebox(SNAME("tab_selected"), SNAME("TabContainerOdd"))->duplicate();
2345
style_theme_preview_tab->set_expand_margin(SIDE_BOTTOM, 5 * EDSCALE);
2346
p_theme->set_stylebox("ThemeEditorPreviewFG", EditorStringName(EditorStyles), style_theme_preview_tab);
2347
2348
Ref<StyleBoxFlat> style_theme_preview_bg_tab = p_theme->get_stylebox(SNAME("tab_unselected"), SNAME("TabContainer"))->duplicate();
2349
style_theme_preview_bg_tab->set_expand_margin(SIDE_BOTTOM, 2 * EDSCALE);
2350
p_theme->set_stylebox("ThemeEditorPreviewBG", EditorStringName(EditorStyles), style_theme_preview_bg_tab);
2351
}
2352
2353
// VisualShader editor.
2354
p_theme->set_stylebox("label_style", "VShaderEditor", EditorThemeManager::make_empty_stylebox(4, 6, 4, 6));
2355
2356
// StateMachine graph.
2357
{
2358
p_theme->set_stylebox(SceneStringName(panel), "GraphStateMachine", p_config.tree_panel_style);
2359
p_theme->set_stylebox("error_panel", "GraphStateMachine", p_config.tree_panel_style);
2360
p_theme->set_color("error_color", "GraphStateMachine", p_config.error_color);
2361
2362
const int sm_margin_side = 10 * EDSCALE;
2363
const int sm_margin_bottom = 2;
2364
const Color sm_bg_color = p_config.dark_theme ? p_config.dark_color_3 : p_config.dark_color_1.lerp(p_config.mono_color, 0.09);
2365
2366
Ref<StyleBoxFlat> sm_node_style = EditorThemeManager::make_flat_stylebox(p_config.dark_color_3 * Color(1, 1, 1, 0.7), sm_margin_side, 24 * EDSCALE, sm_margin_side, sm_margin_bottom, p_config.corner_radius);
2367
sm_node_style->set_border_width_all(p_config.border_width);
2368
sm_node_style->set_border_color(sm_bg_color);
2369
2370
Ref<StyleBoxFlat> sm_node_selected_style = EditorThemeManager::make_flat_stylebox(sm_bg_color * Color(1, 1, 1, 0.9), sm_margin_side, 24 * EDSCALE, sm_margin_side, sm_margin_bottom, p_config.corner_radius);
2371
sm_node_selected_style->set_border_width_all(2 * EDSCALE + p_config.border_width);
2372
sm_node_selected_style->set_border_color(p_config.accent_color * Color(1, 1, 1, 0.9));
2373
sm_node_selected_style->set_shadow_size(8 * EDSCALE);
2374
sm_node_selected_style->set_shadow_color(p_config.shadow_color);
2375
2376
Ref<StyleBoxFlat> sm_node_playing_style = sm_node_selected_style->duplicate();
2377
sm_node_playing_style->set_border_color(p_config.warning_color);
2378
sm_node_playing_style->set_shadow_color(p_config.warning_color * Color(1, 1, 1, 0.2));
2379
sm_node_playing_style->set_draw_center(false);
2380
2381
p_theme->set_stylebox("node_frame", "GraphStateMachine", sm_node_style);
2382
p_theme->set_stylebox("node_frame_selected", "GraphStateMachine", sm_node_selected_style);
2383
p_theme->set_stylebox("node_frame_playing", "GraphStateMachine", sm_node_playing_style);
2384
2385
Ref<StyleBoxFlat> sm_node_start_style = sm_node_style->duplicate();
2386
sm_node_start_style->set_border_width_all(1 * EDSCALE);
2387
sm_node_start_style->set_border_color(p_config.success_color.lightened(0.24));
2388
p_theme->set_stylebox("node_frame_start", "GraphStateMachine", sm_node_start_style);
2389
2390
Ref<StyleBoxFlat> sm_node_end_style = sm_node_style->duplicate();
2391
sm_node_end_style->set_border_width_all(1 * EDSCALE);
2392
sm_node_end_style->set_border_color(p_config.error_color);
2393
p_theme->set_stylebox("node_frame_end", "GraphStateMachine", sm_node_end_style);
2394
2395
p_theme->set_font("node_title_font", "GraphStateMachine", p_theme->get_font(SceneStringName(font), SNAME("Label")));
2396
p_theme->set_font_size("node_title_font_size", "GraphStateMachine", p_theme->get_font_size(SceneStringName(font_size), SNAME("Label")));
2397
p_theme->set_color("node_title_font_color", "GraphStateMachine", p_config.font_color);
2398
2399
p_theme->set_color("transition_color", "GraphStateMachine", p_config.font_color);
2400
p_theme->set_color("transition_disabled_color", "GraphStateMachine", p_config.font_color * Color(1, 1, 1, 0.2));
2401
p_theme->set_color("transition_icon_color", "GraphStateMachine", Color(1, 1, 1));
2402
p_theme->set_color("transition_icon_disabled_color", "GraphStateMachine", Color(1, 1, 1, 0.2));
2403
p_theme->set_color("highlight_color", "GraphStateMachine", p_config.accent_color);
2404
p_theme->set_color("highlight_disabled_color", "GraphStateMachine", p_config.accent_color * Color(1, 1, 1, 0.6));
2405
p_theme->set_color("focus_color", "GraphStateMachine", p_config.accent_color);
2406
p_theme->set_color("guideline_color", "GraphStateMachine", p_config.font_color * Color(1, 1, 1, 0.3));
2407
2408
p_theme->set_color("playback_color", "GraphStateMachine", p_config.font_color);
2409
p_theme->set_color("playback_background_color", "GraphStateMachine", p_config.font_color * Color(1, 1, 1, 0.3));
2410
}
2411
}
2412
2413
// TileSet editor.
2414
p_theme->set_stylebox("expand_panel", "TileSetEditor", p_config.tree_panel_style);
2415
}
2416
2417