default_theme.cpp 64 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240
  1. /**************************************************************************/
  2. /* default_theme.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. #include "default_theme.h"
  31. #include "core/os/os.h"
  32. #include "default_font.gen.h"
  33. #include "default_theme_icons.gen.h"
  34. #include "scene/resources/font.h"
  35. #include "scene/resources/gradient_texture.h"
  36. #include "scene/resources/image_texture.h"
  37. #include "scene/resources/style_box_flat.h"
  38. #include "scene/resources/style_box_line.h"
  39. #include "scene/resources/theme.h"
  40. #include "scene/theme/theme_db.h"
  41. #include "servers/text_server.h"
  42. #include "modules/modules_enabled.gen.h" // For svg.
  43. #ifdef MODULE_SVG_ENABLED
  44. #include "modules/svg/image_loader_svg.h"
  45. #endif
  46. static const int default_font_size = 16;
  47. static float scale = 1.0;
  48. static const int default_margin = 4;
  49. static const int default_corner_radius = 3;
  50. static Ref<StyleBoxFlat> make_flat_stylebox(Color p_color, float p_margin_left = default_margin, float p_margin_top = default_margin, float p_margin_right = default_margin, float p_margin_bottom = default_margin, int p_corner_radius = default_corner_radius, bool p_draw_center = true, int p_border_width = 0) {
  51. Ref<StyleBoxFlat> style(memnew(StyleBoxFlat));
  52. style->set_bg_color(p_color);
  53. style->set_content_margin_individual(Math::round(p_margin_left * scale), Math::round(p_margin_top * scale), Math::round(p_margin_right * scale), Math::round(p_margin_bottom * scale));
  54. style->set_corner_radius_all(Math::round(p_corner_radius * scale));
  55. style->set_anti_aliased(true);
  56. // Adjust level of detail based on the corners' effective sizes.
  57. style->set_corner_detail(MIN(Math::ceil(1.5 * p_corner_radius), 6) * scale);
  58. style->set_draw_center(p_draw_center);
  59. style->set_border_width_all(Math::round(p_border_width * scale));
  60. return style;
  61. }
  62. static Ref<StyleBoxFlat> sb_expand(Ref<StyleBoxFlat> p_sbox, float p_left, float p_top, float p_right, float p_bottom) {
  63. p_sbox->set_expand_margin(SIDE_LEFT, Math::round(p_left * scale));
  64. p_sbox->set_expand_margin(SIDE_TOP, Math::round(p_top * scale));
  65. p_sbox->set_expand_margin(SIDE_RIGHT, Math::round(p_right * scale));
  66. p_sbox->set_expand_margin(SIDE_BOTTOM, Math::round(p_bottom * scale));
  67. return p_sbox;
  68. }
  69. // See also `editor_generate_icon()` in `editor/editor_themes.cpp`.
  70. static Ref<ImageTexture> generate_icon(int p_index) {
  71. Ref<Image> img = memnew(Image);
  72. #ifdef MODULE_SVG_ENABLED
  73. // Upsample icon generation only if the scale isn't an integer multiplier.
  74. // Generating upsampled icons is slower, and the benefit is hardly visible
  75. // with integer scales.
  76. const bool upsample = !Math::is_equal_approx(Math::round(scale), scale);
  77. Error err = ImageLoaderSVG::create_image_from_string(img, default_theme_icons_sources[p_index], scale, upsample, HashMap<Color, Color>());
  78. ERR_FAIL_COND_V_MSG(err != OK, Ref<ImageTexture>(), "Failed generating icon, unsupported or invalid SVG data in default theme.");
  79. #else
  80. // If the SVG module is disabled, we can't really display the UI well, but at least we won't crash.
  81. // 16 pixels is used as it's the most common base size for Godot icons.
  82. img = Image::create_empty(Math::round(16 * scale), Math::round(16 * scale), false, Image::FORMAT_RGBA8);
  83. #endif
  84. return ImageTexture::create_from_image(img);
  85. }
  86. static Ref<StyleBox> make_empty_stylebox(float p_margin_left = -1, float p_margin_top = -1, float p_margin_right = -1, float p_margin_bottom = -1) {
  87. Ref<StyleBox> style(memnew(StyleBoxEmpty));
  88. style->set_content_margin_individual(Math::round(p_margin_left * scale), Math::round(p_margin_top * scale), Math::round(p_margin_right * scale), Math::round(p_margin_bottom * scale));
  89. return style;
  90. }
  91. void fill_default_theme(Ref<Theme> &theme, const Ref<Font> &default_font, const Ref<Font> &bold_font, const Ref<Font> &bold_italics_font, const Ref<Font> &italics_font, Ref<Texture2D> &default_icon, Ref<StyleBox> &default_style, float p_scale) {
  92. scale = p_scale;
  93. // Default theme properties.
  94. theme->set_default_font(default_font);
  95. theme->set_default_font_size(Math::round(default_font_size * scale));
  96. theme->set_default_base_scale(scale);
  97. // Font colors
  98. const Color control_font_color = Color(0.875, 0.875, 0.875);
  99. const Color control_font_low_color = Color(0.7, 0.7, 0.7);
  100. const Color control_font_lower_color = Color(0.65, 0.65, 0.65);
  101. const Color control_font_hover_color = Color(0.95, 0.95, 0.95);
  102. const Color control_font_focus_color = Color(0.95, 0.95, 0.95);
  103. const Color control_font_disabled_color = control_font_color * Color(1, 1, 1, 0.5);
  104. const Color control_font_placeholder_color = Color(control_font_color.r, control_font_color.g, control_font_color.b, 0.6f);
  105. const Color control_font_pressed_color = Color(1, 1, 1);
  106. const Color control_selection_color = Color(0.5, 0.5, 0.5);
  107. // StyleBox colors
  108. const Color style_normal_color = Color(0.1, 0.1, 0.1, 0.6);
  109. const Color style_hover_color = Color(0.225, 0.225, 0.225, 0.6);
  110. const Color style_pressed_color = Color(0, 0, 0, 0.6);
  111. const Color style_disabled_color = Color(0.1, 0.1, 0.1, 0.3);
  112. const Color style_focus_color = Color(1, 1, 1, 0.75);
  113. const Color style_popup_color = Color(0.25, 0.25, 0.25, 1);
  114. const Color style_popup_border_color = Color(0.175, 0.175, 0.175, 1);
  115. const Color style_popup_hover_color = Color(0.4, 0.4, 0.4, 1);
  116. const Color style_selected_color = Color(1, 1, 1, 0.3);
  117. // Don't use a color too bright to keep the percentage readable.
  118. const Color style_progress_color = Color(1, 1, 1, 0.4);
  119. const Color style_separator_color = Color(0.5, 0.5, 0.5);
  120. // Convert the generated icon sources to a dictionary for easier access.
  121. // Unlike the editor icons, there is no central repository of icons in the Theme resource itself to keep it tidy.
  122. Dictionary icons;
  123. for (int i = 0; i < default_theme_icons_count; i++) {
  124. icons[default_theme_icons_names[i]] = generate_icon(i);
  125. }
  126. // Panel
  127. theme->set_stylebox("panel", "Panel", make_flat_stylebox(style_normal_color, 0, 0, 0, 0));
  128. // Button
  129. const Ref<StyleBoxFlat> button_normal = make_flat_stylebox(style_normal_color);
  130. const Ref<StyleBoxFlat> button_hover = make_flat_stylebox(style_hover_color);
  131. const Ref<StyleBoxFlat> button_pressed = make_flat_stylebox(style_pressed_color);
  132. const Ref<StyleBoxFlat> button_disabled = make_flat_stylebox(style_disabled_color);
  133. Ref<StyleBoxFlat> focus = make_flat_stylebox(style_focus_color, default_margin, default_margin, default_margin, default_margin, default_corner_radius, false, 2);
  134. // Make the focus outline appear to be flush with the buttons it's focusing.
  135. focus->set_expand_margin_all(Math::round(2 * scale));
  136. theme->set_stylebox("normal", "Button", button_normal);
  137. theme->set_stylebox("hover", "Button", button_hover);
  138. theme->set_stylebox("pressed", "Button", button_pressed);
  139. theme->set_stylebox("disabled", "Button", button_disabled);
  140. theme->set_stylebox("focus", "Button", focus);
  141. theme->set_font("font", "Button", Ref<Font>());
  142. theme->set_font_size("font_size", "Button", -1);
  143. theme->set_constant("outline_size", "Button", 0);
  144. theme->set_color("font_color", "Button", control_font_color);
  145. theme->set_color("font_pressed_color", "Button", control_font_pressed_color);
  146. theme->set_color("font_hover_color", "Button", control_font_hover_color);
  147. theme->set_color("font_focus_color", "Button", control_font_focus_color);
  148. theme->set_color("font_hover_pressed_color", "Button", control_font_pressed_color);
  149. theme->set_color("font_disabled_color", "Button", control_font_disabled_color);
  150. theme->set_color("font_outline_color", "Button", Color(1, 1, 1));
  151. theme->set_color("icon_normal_color", "Button", Color(1, 1, 1, 1));
  152. theme->set_color("icon_pressed_color", "Button", Color(1, 1, 1, 1));
  153. theme->set_color("icon_hover_color", "Button", Color(1, 1, 1, 1));
  154. theme->set_color("icon_hover_pressed_color", "Button", Color(1, 1, 1, 1));
  155. theme->set_color("icon_focus_color", "Button", Color(1, 1, 1, 1));
  156. theme->set_color("icon_disabled_color", "Button", Color(1, 1, 1, 0.4));
  157. theme->set_constant("h_separation", "Button", Math::round(4 * scale));
  158. theme->set_constant("icon_max_width", "Button", 0);
  159. // MenuBar
  160. theme->set_stylebox("normal", "MenuBar", button_normal);
  161. theme->set_stylebox("hover", "MenuBar", button_hover);
  162. theme->set_stylebox("pressed", "MenuBar", button_pressed);
  163. theme->set_stylebox("disabled", "MenuBar", button_disabled);
  164. theme->set_stylebox("focus", "MenuBar", focus);
  165. theme->set_font("font", "MenuBar", Ref<Font>());
  166. theme->set_font_size("font_size", "MenuBar", -1);
  167. theme->set_constant("outline_size", "MenuBar", 0);
  168. theme->set_color("font_color", "MenuBar", control_font_color);
  169. theme->set_color("font_pressed_color", "MenuBar", control_font_pressed_color);
  170. theme->set_color("font_hover_color", "MenuBar", control_font_hover_color);
  171. theme->set_color("font_focus_color", "MenuBar", control_font_focus_color);
  172. theme->set_color("font_hover_pressed_color", "MenuBar", control_font_pressed_color);
  173. theme->set_color("font_disabled_color", "MenuBar", control_font_disabled_color);
  174. theme->set_color("font_outline_color", "MenuBar", Color(1, 1, 1));
  175. theme->set_constant("h_separation", "MenuBar", Math::round(4 * scale));
  176. // LinkButton
  177. theme->set_stylebox("focus", "LinkButton", focus);
  178. theme->set_font("font", "LinkButton", Ref<Font>());
  179. theme->set_font_size("font_size", "LinkButton", -1);
  180. theme->set_color("font_color", "LinkButton", control_font_color);
  181. theme->set_color("font_pressed_color", "LinkButton", control_font_pressed_color);
  182. theme->set_color("font_hover_color", "LinkButton", control_font_hover_color);
  183. theme->set_color("font_focus_color", "LinkButton", control_font_focus_color);
  184. theme->set_color("font_outline_color", "LinkButton", Color(1, 1, 1));
  185. theme->set_constant("outline_size", "LinkButton", 0);
  186. theme->set_constant("underline_spacing", "LinkButton", Math::round(2 * scale));
  187. // OptionButton
  188. theme->set_stylebox("focus", "OptionButton", focus);
  189. Ref<StyleBox> sb_optbutton_normal = make_flat_stylebox(style_normal_color, 2 * default_margin, default_margin, 21, default_margin);
  190. Ref<StyleBox> sb_optbutton_hover = make_flat_stylebox(style_hover_color, 2 * default_margin, default_margin, 21, default_margin);
  191. Ref<StyleBox> sb_optbutton_pressed = make_flat_stylebox(style_pressed_color, 2 * default_margin, default_margin, 21, default_margin);
  192. Ref<StyleBox> sb_optbutton_disabled = make_flat_stylebox(style_disabled_color, 2 * default_margin, default_margin, 21, default_margin);
  193. theme->set_stylebox("normal", "OptionButton", sb_optbutton_normal);
  194. theme->set_stylebox("hover", "OptionButton", sb_optbutton_hover);
  195. theme->set_stylebox("pressed", "OptionButton", sb_optbutton_pressed);
  196. theme->set_stylebox("disabled", "OptionButton", sb_optbutton_disabled);
  197. Ref<StyleBox> sb_optbutton_normal_mirrored = make_flat_stylebox(style_normal_color, 21, default_margin, 2 * default_margin, default_margin);
  198. Ref<StyleBox> sb_optbutton_hover_mirrored = make_flat_stylebox(style_hover_color, 21, default_margin, 2 * default_margin, default_margin);
  199. Ref<StyleBox> sb_optbutton_pressed_mirrored = make_flat_stylebox(style_pressed_color, 21, default_margin, 2 * default_margin, default_margin);
  200. Ref<StyleBox> sb_optbutton_disabled_mirrored = make_flat_stylebox(style_disabled_color, 21, default_margin, 2 * default_margin, default_margin);
  201. theme->set_stylebox("normal_mirrored", "OptionButton", sb_optbutton_normal_mirrored);
  202. theme->set_stylebox("hover_mirrored", "OptionButton", sb_optbutton_hover_mirrored);
  203. theme->set_stylebox("pressed_mirrored", "OptionButton", sb_optbutton_pressed_mirrored);
  204. theme->set_stylebox("disabled_mirrored", "OptionButton", sb_optbutton_disabled_mirrored);
  205. theme->set_icon("arrow", "OptionButton", icons["option_button_arrow"]);
  206. theme->set_font("font", "OptionButton", Ref<Font>());
  207. theme->set_font_size("font_size", "OptionButton", -1);
  208. theme->set_color("font_color", "OptionButton", control_font_color);
  209. theme->set_color("font_pressed_color", "OptionButton", control_font_pressed_color);
  210. theme->set_color("font_hover_color", "OptionButton", control_font_hover_color);
  211. theme->set_color("font_hover_pressed_color", "OptionButton", control_font_pressed_color);
  212. theme->set_color("font_focus_color", "OptionButton", control_font_focus_color);
  213. theme->set_color("font_disabled_color", "OptionButton", control_font_disabled_color);
  214. theme->set_color("font_outline_color", "OptionButton", Color(1, 1, 1));
  215. theme->set_constant("h_separation", "OptionButton", Math::round(4 * scale));
  216. theme->set_constant("arrow_margin", "OptionButton", Math::round(4 * scale));
  217. theme->set_constant("outline_size", "OptionButton", 0);
  218. theme->set_constant("modulate_arrow", "OptionButton", false);
  219. // MenuButton
  220. theme->set_stylebox("normal", "MenuButton", button_normal);
  221. theme->set_stylebox("pressed", "MenuButton", button_pressed);
  222. theme->set_stylebox("hover", "MenuButton", button_hover);
  223. theme->set_stylebox("disabled", "MenuButton", button_disabled);
  224. theme->set_stylebox("focus", "MenuButton", focus);
  225. theme->set_font("font", "MenuButton", Ref<Font>());
  226. theme->set_font_size("font_size", "MenuButton", -1);
  227. theme->set_color("font_color", "MenuButton", control_font_color);
  228. theme->set_color("font_pressed_color", "MenuButton", control_font_pressed_color);
  229. theme->set_color("font_hover_color", "MenuButton", control_font_hover_color);
  230. theme->set_color("font_focus_color", "MenuButton", control_font_focus_color);
  231. theme->set_color("font_disabled_color", "MenuButton", Color(1, 1, 1, 0.3));
  232. theme->set_color("font_outline_color", "MenuButton", Color(1, 1, 1));
  233. theme->set_constant("h_separation", "MenuButton", Math::round(4 * scale));
  234. theme->set_constant("outline_size", "MenuButton", 0);
  235. // CheckBox
  236. Ref<StyleBox> cbx_empty = memnew(StyleBoxEmpty);
  237. cbx_empty->set_content_margin_all(Math::round(4 * scale));
  238. Ref<StyleBox> cbx_focus = focus;
  239. cbx_focus->set_content_margin_all(Math::round(4 * scale));
  240. theme->set_stylebox("normal", "CheckBox", cbx_empty);
  241. theme->set_stylebox("pressed", "CheckBox", cbx_empty);
  242. theme->set_stylebox("disabled", "CheckBox", cbx_empty);
  243. theme->set_stylebox("hover", "CheckBox", cbx_empty);
  244. theme->set_stylebox("hover_pressed", "CheckBox", cbx_empty);
  245. theme->set_stylebox("focus", "CheckBox", cbx_focus);
  246. theme->set_icon("checked", "CheckBox", icons["checked"]);
  247. theme->set_icon("checked_disabled", "CheckBox", icons["checked"]);
  248. theme->set_icon("unchecked", "CheckBox", icons["unchecked"]);
  249. theme->set_icon("unchecked_disabled", "CheckBox", icons["unchecked"]);
  250. theme->set_icon("radio_checked", "CheckBox", icons["radio_checked"]);
  251. theme->set_icon("radio_checked_disabled", "CheckBox", icons["radio_checked"]);
  252. theme->set_icon("radio_unchecked", "CheckBox", icons["radio_unchecked"]);
  253. theme->set_icon("radio_unchecked_disabled", "CheckBox", icons["radio_unchecked"]);
  254. theme->set_font("font", "CheckBox", Ref<Font>());
  255. theme->set_font_size("font_size", "CheckBox", -1);
  256. theme->set_color("font_color", "CheckBox", control_font_color);
  257. theme->set_color("font_pressed_color", "CheckBox", control_font_pressed_color);
  258. theme->set_color("font_hover_color", "CheckBox", control_font_hover_color);
  259. theme->set_color("font_hover_pressed_color", "CheckBox", control_font_pressed_color);
  260. theme->set_color("font_focus_color", "CheckBox", control_font_focus_color);
  261. theme->set_color("font_disabled_color", "CheckBox", control_font_disabled_color);
  262. theme->set_color("font_outline_color", "CheckBox", Color(1, 1, 1));
  263. theme->set_constant("h_separation", "CheckBox", Math::round(4 * scale));
  264. theme->set_constant("check_v_offset", "CheckBox", 0);
  265. theme->set_constant("outline_size", "CheckBox", 0);
  266. // CheckButton
  267. Ref<StyleBox> cb_empty = memnew(StyleBoxEmpty);
  268. cb_empty->set_content_margin_individual(Math::round(6 * scale), Math::round(4 * scale), Math::round(6 * scale), Math::round(4 * scale));
  269. theme->set_stylebox("normal", "CheckButton", cb_empty);
  270. theme->set_stylebox("pressed", "CheckButton", cb_empty);
  271. theme->set_stylebox("disabled", "CheckButton", cb_empty);
  272. theme->set_stylebox("hover", "CheckButton", cb_empty);
  273. theme->set_stylebox("hover_pressed", "CheckButton", cb_empty);
  274. theme->set_stylebox("focus", "CheckButton", focus);
  275. theme->set_icon("checked", "CheckButton", icons["toggle_on"]);
  276. theme->set_icon("checked_disabled", "CheckButton", icons["toggle_on_disabled"]);
  277. theme->set_icon("unchecked", "CheckButton", icons["toggle_off"]);
  278. theme->set_icon("unchecked_disabled", "CheckButton", icons["toggle_off_disabled"]);
  279. theme->set_icon("checked_mirrored", "CheckButton", icons["toggle_on_mirrored"]);
  280. theme->set_icon("checked_disabled_mirrored", "CheckButton", icons["toggle_on_disabled_mirrored"]);
  281. theme->set_icon("unchecked_mirrored", "CheckButton", icons["toggle_off_mirrored"]);
  282. theme->set_icon("unchecked_disabled_mirrored", "CheckButton", icons["toggle_off_disabled_mirrored"]);
  283. theme->set_font("font", "CheckButton", Ref<Font>());
  284. theme->set_font_size("font_size", "CheckButton", -1);
  285. theme->set_color("font_color", "CheckButton", control_font_color);
  286. theme->set_color("font_pressed_color", "CheckButton", control_font_pressed_color);
  287. theme->set_color("font_hover_color", "CheckButton", control_font_hover_color);
  288. theme->set_color("font_hover_pressed_color", "CheckButton", control_font_pressed_color);
  289. theme->set_color("font_focus_color", "CheckButton", control_font_focus_color);
  290. theme->set_color("font_disabled_color", "CheckButton", control_font_disabled_color);
  291. theme->set_color("font_outline_color", "CheckButton", Color(1, 1, 1));
  292. theme->set_constant("h_separation", "CheckButton", Math::round(4 * scale));
  293. theme->set_constant("check_v_offset", "CheckButton", 0);
  294. theme->set_constant("outline_size", "CheckButton", 0);
  295. // Button variations
  296. theme->set_type_variation("FlatButton", "Button");
  297. theme->set_type_variation("FlatMenuButton", "MenuButton");
  298. Ref<StyleBoxEmpty> flat_button_normal = make_empty_stylebox();
  299. for (int i = 0; i < 4; i++) {
  300. flat_button_normal->set_content_margin((Side)i, button_normal->get_margin((Side)i) + button_normal->get_border_width((Side)i));
  301. }
  302. Ref<StyleBoxFlat> flat_button_pressed = button_pressed->duplicate();
  303. flat_button_pressed->set_bg_color(style_pressed_color * Color(1, 1, 1, 0.85));
  304. theme->set_stylebox("normal", "FlatButton", flat_button_normal);
  305. theme->set_stylebox("hover", "FlatButton", flat_button_normal);
  306. theme->set_stylebox("pressed", "FlatButton", flat_button_pressed);
  307. theme->set_stylebox("disabled", "FlatButton", flat_button_normal);
  308. theme->set_stylebox("normal", "FlatMenuButton", flat_button_normal);
  309. theme->set_stylebox("hover", "FlatMenuButton", flat_button_normal);
  310. theme->set_stylebox("pressed", "FlatMenuButton", flat_button_pressed);
  311. theme->set_stylebox("disabled", "FlatMenuButton", flat_button_normal);
  312. // Label
  313. theme->set_stylebox("normal", "Label", memnew(StyleBoxEmpty));
  314. theme->set_font("font", "Label", Ref<Font>());
  315. theme->set_font_size("font_size", "Label", -1);
  316. theme->set_color("font_color", "Label", Color(1, 1, 1));
  317. theme->set_color("font_shadow_color", "Label", Color(0, 0, 0, 0));
  318. theme->set_color("font_outline_color", "Label", Color(1, 1, 1));
  319. theme->set_constant("shadow_offset_x", "Label", Math::round(1 * scale));
  320. theme->set_constant("shadow_offset_y", "Label", Math::round(1 * scale));
  321. theme->set_constant("outline_size", "Label", 0);
  322. theme->set_constant("shadow_outline_size", "Label", Math::round(1 * scale));
  323. theme->set_constant("line_spacing", "Label", Math::round(3 * scale));
  324. theme->set_type_variation("HeaderSmall", "Label");
  325. theme->set_font_size("font_size", "HeaderSmall", default_font_size + 4);
  326. theme->set_type_variation("HeaderMedium", "Label");
  327. theme->set_font_size("font_size", "HeaderMedium", default_font_size + 8);
  328. theme->set_type_variation("HeaderLarge", "Label");
  329. theme->set_font_size("font_size", "HeaderLarge", default_font_size + 12);
  330. // LineEdit
  331. Ref<StyleBoxFlat> style_line_edit = make_flat_stylebox(style_normal_color);
  332. // Add a line at the bottom to make LineEdits distinguishable from Buttons.
  333. style_line_edit->set_border_width(SIDE_BOTTOM, 2);
  334. style_line_edit->set_border_color(style_pressed_color);
  335. theme->set_stylebox("normal", "LineEdit", style_line_edit);
  336. theme->set_stylebox("focus", "LineEdit", focus);
  337. Ref<StyleBoxFlat> style_line_edit_read_only = make_flat_stylebox(style_disabled_color);
  338. // Add a line at the bottom to make LineEdits distinguishable from Buttons.
  339. style_line_edit_read_only->set_border_width(SIDE_BOTTOM, 2);
  340. style_line_edit_read_only->set_border_color(style_pressed_color * Color(1, 1, 1, 0.5));
  341. theme->set_stylebox("read_only", "LineEdit", style_line_edit_read_only);
  342. theme->set_font("font", "LineEdit", Ref<Font>());
  343. theme->set_font_size("font_size", "LineEdit", -1);
  344. theme->set_color("font_color", "LineEdit", control_font_color);
  345. theme->set_color("font_selected_color", "LineEdit", control_font_pressed_color);
  346. theme->set_color("font_uneditable_color", "LineEdit", control_font_disabled_color);
  347. theme->set_color("font_placeholder_color", "LineEdit", control_font_placeholder_color);
  348. theme->set_color("font_outline_color", "LineEdit", Color(1, 1, 1));
  349. theme->set_color("caret_color", "LineEdit", control_font_hover_color);
  350. theme->set_color("selection_color", "LineEdit", control_selection_color);
  351. theme->set_color("clear_button_color", "LineEdit", control_font_color);
  352. theme->set_color("clear_button_color_pressed", "LineEdit", control_font_pressed_color);
  353. theme->set_constant("minimum_character_width", "LineEdit", 4);
  354. theme->set_constant("outline_size", "LineEdit", 0);
  355. theme->set_constant("caret_width", "LineEdit", 1);
  356. theme->set_icon("clear", "LineEdit", icons["line_edit_clear"]);
  357. // ProgressBar
  358. theme->set_stylebox("background", "ProgressBar", make_flat_stylebox(style_disabled_color, 2, 2, 2, 2, 6));
  359. theme->set_stylebox("fill", "ProgressBar", make_flat_stylebox(style_progress_color, 2, 2, 2, 2, 6));
  360. theme->set_font("font", "ProgressBar", Ref<Font>());
  361. theme->set_font_size("font_size", "ProgressBar", -1);
  362. theme->set_color("font_color", "ProgressBar", control_font_hover_color);
  363. theme->set_color("font_shadow_color", "ProgressBar", Color(0, 0, 0));
  364. theme->set_color("font_outline_color", "ProgressBar", Color(1, 1, 1));
  365. theme->set_constant("outline_size", "ProgressBar", 0);
  366. // TextEdit
  367. theme->set_stylebox("normal", "TextEdit", style_line_edit);
  368. theme->set_stylebox("focus", "TextEdit", focus);
  369. theme->set_stylebox("read_only", "TextEdit", style_line_edit_read_only);
  370. theme->set_icon("tab", "TextEdit", icons["text_edit_tab"]);
  371. theme->set_icon("space", "TextEdit", icons["text_edit_space"]);
  372. theme->set_font("font", "TextEdit", Ref<Font>());
  373. theme->set_font_size("font_size", "TextEdit", -1);
  374. theme->set_color("background_color", "TextEdit", Color(0, 0, 0, 0));
  375. theme->set_color("font_color", "TextEdit", control_font_color);
  376. theme->set_color("font_selected_color", "TextEdit", Color(0, 0, 0, 0));
  377. theme->set_color("font_readonly_color", "TextEdit", control_font_disabled_color);
  378. theme->set_color("font_placeholder_color", "TextEdit", control_font_placeholder_color);
  379. theme->set_color("font_outline_color", "TextEdit", Color(1, 1, 1));
  380. theme->set_color("selection_color", "TextEdit", control_selection_color);
  381. theme->set_color("current_line_color", "TextEdit", Color(0.25, 0.25, 0.26, 0.8));
  382. theme->set_color("caret_color", "TextEdit", control_font_color);
  383. theme->set_color("caret_background_color", "TextEdit", Color(0, 0, 0));
  384. theme->set_color("word_highlighted_color", "TextEdit", Color(0.5, 0.5, 0.5, 0.25));
  385. theme->set_color("search_result_color", "TextEdit", Color(0.3, 0.3, 0.3));
  386. theme->set_color("search_result_border_color", "TextEdit", Color(0.3, 0.3, 0.3, 0.4));
  387. theme->set_constant("line_spacing", "TextEdit", Math::round(4 * scale));
  388. theme->set_constant("outline_size", "TextEdit", 0);
  389. theme->set_constant("caret_width", "TextEdit", 1);
  390. // CodeEdit
  391. theme->set_stylebox("normal", "CodeEdit", style_line_edit);
  392. theme->set_stylebox("focus", "CodeEdit", focus);
  393. theme->set_stylebox("read_only", "CodeEdit", style_line_edit_read_only);
  394. theme->set_stylebox("completion", "CodeEdit", make_flat_stylebox(style_normal_color, 0, 0, 0, 0));
  395. theme->set_icon("tab", "CodeEdit", icons["text_edit_tab"]);
  396. theme->set_icon("space", "CodeEdit", icons["text_edit_space"]);
  397. theme->set_icon("breakpoint", "CodeEdit", icons["breakpoint"]);
  398. theme->set_icon("bookmark", "CodeEdit", icons["bookmark"]);
  399. theme->set_icon("executing_line", "CodeEdit", icons["arrow_right"]);
  400. theme->set_icon("can_fold", "CodeEdit", icons["arrow_down"]);
  401. theme->set_icon("folded", "CodeEdit", icons["arrow_right"]);
  402. theme->set_icon("can_fold_code_region", "CodeEdit", icons["folder_down_arrow"]);
  403. theme->set_icon("folded_code_region", "CodeEdit", icons["folder_right_arrow"]);
  404. theme->set_icon("folded_eol_icon", "CodeEdit", icons["text_edit_ellipsis"]);
  405. theme->set_font("font", "CodeEdit", Ref<Font>());
  406. theme->set_font_size("font_size", "CodeEdit", -1);
  407. theme->set_color("background_color", "CodeEdit", Color(0, 0, 0, 0));
  408. theme->set_color("completion_background_color", "CodeEdit", Color(0.17, 0.16, 0.2));
  409. theme->set_color("completion_selected_color", "CodeEdit", Color(0.26, 0.26, 0.27));
  410. theme->set_color("completion_existing_color", "CodeEdit", Color(0.87, 0.87, 0.87, 0.13));
  411. theme->set_color("completion_scroll_color", "CodeEdit", control_font_pressed_color * Color(1, 1, 1, 0.29));
  412. theme->set_color("completion_scroll_hovered_color", "CodeEdit", control_font_pressed_color * Color(1, 1, 1, 0.4));
  413. theme->set_color("completion_font_color", "CodeEdit", Color(0.67, 0.67, 0.67));
  414. theme->set_color("font_color", "CodeEdit", control_font_color);
  415. theme->set_color("font_selected_color", "CodeEdit", Color(0, 0, 0, 0));
  416. theme->set_color("font_readonly_color", "CodeEdit", Color(control_font_color.r, control_font_color.g, control_font_color.b, 0.5f));
  417. theme->set_color("font_placeholder_color", "CodeEdit", control_font_placeholder_color);
  418. theme->set_color("font_outline_color", "CodeEdit", Color(1, 1, 1));
  419. theme->set_color("selection_color", "CodeEdit", control_selection_color);
  420. theme->set_color("bookmark_color", "CodeEdit", Color(0.5, 0.64, 1, 0.8));
  421. theme->set_color("breakpoint_color", "CodeEdit", Color(0.9, 0.29, 0.3));
  422. theme->set_color("executing_line_color", "CodeEdit", Color(0.98, 0.89, 0.27));
  423. theme->set_color("current_line_color", "CodeEdit", Color(0.25, 0.25, 0.26, 0.8));
  424. theme->set_color("code_folding_color", "CodeEdit", Color(0.8, 0.8, 0.8, 0.8));
  425. theme->set_color("folded_code_region_color", "CodeEdit", Color(0.68, 0.46, 0.77, 0.2));
  426. theme->set_color("caret_color", "CodeEdit", control_font_color);
  427. theme->set_color("caret_background_color", "CodeEdit", Color(0, 0, 0));
  428. theme->set_color("brace_mismatch_color", "CodeEdit", Color(1, 0.2, 0.2));
  429. theme->set_color("line_number_color", "CodeEdit", Color(0.67, 0.67, 0.67, 0.4));
  430. theme->set_color("word_highlighted_color", "CodeEdit", Color(0.8, 0.9, 0.9, 0.15));
  431. theme->set_color("line_length_guideline_color", "CodeEdit", Color(0.3, 0.5, 0.8, 0.1));
  432. theme->set_color("search_result_color", "CodeEdit", Color(0.3, 0.3, 0.3));
  433. theme->set_color("search_result_border_color", "CodeEdit", Color(0.3, 0.3, 0.3, 0.4));
  434. theme->set_constant("completion_lines", "CodeEdit", 7);
  435. theme->set_constant("completion_max_width", "CodeEdit", 50);
  436. theme->set_constant("completion_scroll_width", "CodeEdit", 6);
  437. theme->set_constant("line_spacing", "CodeEdit", Math::round(4 * scale));
  438. theme->set_constant("outline_size", "CodeEdit", 0);
  439. Ref<Texture2D> empty_icon = memnew(ImageTexture);
  440. const Ref<StyleBoxFlat> style_h_scrollbar = make_flat_stylebox(style_normal_color, 0, 4, 0, 4, 10);
  441. const Ref<StyleBoxFlat> style_v_scrollbar = make_flat_stylebox(style_normal_color, 4, 0, 4, 0, 10);
  442. Ref<StyleBoxFlat> style_scrollbar_grabber = make_flat_stylebox(style_progress_color, 4, 4, 4, 4, 10);
  443. Ref<StyleBoxFlat> style_scrollbar_grabber_highlight = make_flat_stylebox(style_focus_color, 4, 4, 4, 4, 10);
  444. Ref<StyleBoxFlat> style_scrollbar_grabber_pressed = make_flat_stylebox(style_focus_color * Color(0.75, 0.75, 0.75), 4, 4, 4, 4, 10);
  445. // HScrollBar
  446. theme->set_stylebox("scroll", "HScrollBar", style_h_scrollbar);
  447. theme->set_stylebox("scroll_focus", "HScrollBar", focus);
  448. theme->set_stylebox("grabber", "HScrollBar", style_scrollbar_grabber);
  449. theme->set_stylebox("grabber_highlight", "HScrollBar", style_scrollbar_grabber_highlight);
  450. theme->set_stylebox("grabber_pressed", "HScrollBar", style_scrollbar_grabber_pressed);
  451. theme->set_icon("increment", "HScrollBar", empty_icon);
  452. theme->set_icon("increment_highlight", "HScrollBar", empty_icon);
  453. theme->set_icon("increment_pressed", "HScrollBar", empty_icon);
  454. theme->set_icon("decrement", "HScrollBar", empty_icon);
  455. theme->set_icon("decrement_highlight", "HScrollBar", empty_icon);
  456. theme->set_icon("decrement_pressed", "HScrollBar", empty_icon);
  457. // VScrollBar
  458. theme->set_stylebox("scroll", "VScrollBar", style_v_scrollbar);
  459. theme->set_stylebox("scroll_focus", "VScrollBar", focus);
  460. theme->set_stylebox("grabber", "VScrollBar", style_scrollbar_grabber);
  461. theme->set_stylebox("grabber_highlight", "VScrollBar", style_scrollbar_grabber_highlight);
  462. theme->set_stylebox("grabber_pressed", "VScrollBar", style_scrollbar_grabber_pressed);
  463. theme->set_icon("increment", "VScrollBar", empty_icon);
  464. theme->set_icon("increment_highlight", "VScrollBar", empty_icon);
  465. theme->set_icon("increment_pressed", "VScrollBar", empty_icon);
  466. theme->set_icon("decrement", "VScrollBar", empty_icon);
  467. theme->set_icon("decrement_highlight", "VScrollBar", empty_icon);
  468. theme->set_icon("decrement_pressed", "VScrollBar", empty_icon);
  469. const Ref<StyleBoxFlat> style_slider = make_flat_stylebox(style_normal_color, 4, 4, 4, 4, 4);
  470. const Ref<StyleBoxFlat> style_slider_grabber = make_flat_stylebox(style_progress_color, 4, 4, 4, 4, 4);
  471. const Ref<StyleBoxFlat> style_slider_grabber_highlight = make_flat_stylebox(style_focus_color, 4, 4, 4, 4, 4);
  472. // HSlider
  473. theme->set_stylebox("slider", "HSlider", style_slider);
  474. theme->set_stylebox("grabber_area", "HSlider", style_slider_grabber);
  475. theme->set_stylebox("grabber_area_highlight", "HSlider", style_slider_grabber_highlight);
  476. theme->set_icon("grabber", "HSlider", icons["slider_grabber"]);
  477. theme->set_icon("grabber_highlight", "HSlider", icons["slider_grabber_hl"]);
  478. theme->set_icon("grabber_disabled", "HSlider", icons["slider_grabber_disabled"]);
  479. theme->set_icon("tick", "HSlider", icons["hslider_tick"]);
  480. theme->set_constant("center_grabber", "HSlider", 0);
  481. theme->set_constant("grabber_offset", "HSlider", 0);
  482. // VSlider
  483. theme->set_stylebox("slider", "VSlider", style_slider);
  484. theme->set_stylebox("grabber_area", "VSlider", style_slider_grabber);
  485. theme->set_stylebox("grabber_area_highlight", "VSlider", style_slider_grabber_highlight);
  486. theme->set_icon("grabber", "VSlider", icons["slider_grabber"]);
  487. theme->set_icon("grabber_highlight", "VSlider", icons["slider_grabber_hl"]);
  488. theme->set_icon("grabber_disabled", "VSlider", icons["slider_grabber_disabled"]);
  489. theme->set_icon("tick", "VSlider", icons["vslider_tick"]);
  490. theme->set_constant("center_grabber", "VSlider", 0);
  491. theme->set_constant("grabber_offset", "VSlider", 0);
  492. // SpinBox
  493. theme->set_icon("updown", "SpinBox", icons["updown"]);
  494. // ScrollContainer
  495. Ref<StyleBoxEmpty> empty;
  496. empty.instantiate();
  497. theme->set_stylebox("panel", "ScrollContainer", empty);
  498. // Window
  499. theme->set_stylebox("embedded_border", "Window", sb_expand(make_flat_stylebox(style_popup_color, 10, 28, 10, 8), 8, 32, 8, 6));
  500. theme->set_stylebox("embedded_unfocused_border", "Window", sb_expand(make_flat_stylebox(style_popup_hover_color, 10, 28, 10, 8), 8, 32, 8, 6));
  501. theme->set_font("title_font", "Window", Ref<Font>());
  502. theme->set_font_size("title_font_size", "Window", -1);
  503. theme->set_color("title_color", "Window", control_font_color);
  504. theme->set_color("title_outline_modulate", "Window", Color(1, 1, 1));
  505. theme->set_constant("title_outline_size", "Window", 0);
  506. theme->set_constant("title_height", "Window", 36 * scale);
  507. theme->set_constant("resize_margin", "Window", Math::round(4 * scale));
  508. theme->set_icon("close", "Window", icons["close"]);
  509. theme->set_icon("close_pressed", "Window", icons["close_hl"]);
  510. theme->set_constant("close_h_offset", "Window", 18 * scale);
  511. theme->set_constant("close_v_offset", "Window", 24 * scale);
  512. // Dialogs
  513. // AcceptDialog is currently the base dialog, so this defines styles for all extending nodes.
  514. theme->set_stylebox("panel", "AcceptDialog", make_flat_stylebox(style_popup_color, Math::round(8 * scale), Math::round(8 * scale), Math::round(8 * scale), Math::round(8 * scale)));
  515. theme->set_constant("buttons_separation", "AcceptDialog", Math::round(10 * scale));
  516. // File Dialog
  517. theme->set_icon("parent_folder", "FileDialog", icons["folder_up"]);
  518. theme->set_icon("back_folder", "FileDialog", icons["arrow_left"]);
  519. theme->set_icon("forward_folder", "FileDialog", icons["arrow_right"]);
  520. theme->set_icon("reload", "FileDialog", icons["reload"]);
  521. theme->set_icon("toggle_hidden", "FileDialog", icons["visibility_visible"]);
  522. theme->set_icon("folder", "FileDialog", icons["folder"]);
  523. theme->set_icon("file", "FileDialog", icons["file"]);
  524. theme->set_color("folder_icon_color", "FileDialog", Color(1, 1, 1));
  525. theme->set_color("file_icon_color", "FileDialog", Color(1, 1, 1));
  526. theme->set_color("file_disabled_color", "FileDialog", Color(1, 1, 1, 0.25));
  527. // Popup
  528. theme->set_stylebox("panel", "PopupPanel", make_flat_stylebox(style_normal_color));
  529. // PopupDialog
  530. theme->set_stylebox("panel", "PopupDialog", make_flat_stylebox(style_normal_color));
  531. // PopupMenu
  532. Ref<StyleBoxLine> separator_horizontal = memnew(StyleBoxLine);
  533. separator_horizontal->set_thickness(Math::round(scale));
  534. separator_horizontal->set_color(style_separator_color);
  535. separator_horizontal->set_content_margin_individual(default_margin, 0, default_margin, 0);
  536. Ref<StyleBoxLine> separator_vertical = separator_horizontal->duplicate();
  537. separator_vertical->set_vertical(true);
  538. separator_vertical->set_content_margin_individual(0, default_margin, 0, default_margin);
  539. // Always display a border for PopupMenus so they can be distinguished from their background.
  540. Ref<StyleBoxFlat> style_popup_panel = make_flat_stylebox(style_popup_color);
  541. style_popup_panel->set_border_width_all(2);
  542. style_popup_panel->set_border_color(style_popup_border_color);
  543. Ref<StyleBoxFlat> style_popup_panel_disabled = style_popup_panel->duplicate();
  544. style_popup_panel_disabled->set_bg_color(style_disabled_color);
  545. theme->set_stylebox("panel", "PopupMenu", style_popup_panel);
  546. theme->set_stylebox("panel_disabled", "PopupMenu", style_popup_panel_disabled);
  547. theme->set_stylebox("hover", "PopupMenu", make_flat_stylebox(style_popup_hover_color));
  548. theme->set_stylebox("separator", "PopupMenu", separator_horizontal);
  549. theme->set_stylebox("labeled_separator_left", "PopupMenu", separator_horizontal);
  550. theme->set_stylebox("labeled_separator_right", "PopupMenu", separator_horizontal);
  551. theme->set_icon("checked", "PopupMenu", icons["checked"]);
  552. theme->set_icon("checked_disabled", "PopupMenu", icons["checked"]);
  553. theme->set_icon("unchecked", "PopupMenu", icons["unchecked"]);
  554. theme->set_icon("unchecked_disabled", "PopupMenu", icons["unchecked"]);
  555. theme->set_icon("radio_checked", "PopupMenu", icons["radio_checked"]);
  556. theme->set_icon("radio_checked_disabled", "PopupMenu", icons["radio_checked"]);
  557. theme->set_icon("radio_unchecked", "PopupMenu", icons["radio_unchecked"]);
  558. theme->set_icon("radio_unchecked_disabled", "PopupMenu", icons["radio_unchecked"]);
  559. theme->set_icon("submenu", "PopupMenu", icons["popup_menu_arrow_right"]);
  560. theme->set_icon("submenu_mirrored", "PopupMenu", icons["popup_menu_arrow_left"]);
  561. theme->set_font("font", "PopupMenu", Ref<Font>());
  562. theme->set_font("font_separator", "PopupMenu", Ref<Font>());
  563. theme->set_font_size("font_size", "PopupMenu", -1);
  564. theme->set_font_size("font_separator_size", "PopupMenu", -1);
  565. theme->set_color("font_color", "PopupMenu", control_font_color);
  566. theme->set_color("font_accelerator_color", "PopupMenu", Color(0.7, 0.7, 0.7, 0.8));
  567. theme->set_color("font_disabled_color", "PopupMenu", Color(0.4, 0.4, 0.4, 0.8));
  568. theme->set_color("font_hover_color", "PopupMenu", control_font_color);
  569. theme->set_color("font_separator_color", "PopupMenu", control_font_color);
  570. theme->set_color("font_outline_color", "PopupMenu", Color(1, 1, 1));
  571. theme->set_color("font_separator_outline_color", "PopupMenu", Color(1, 1, 1));
  572. theme->set_constant("indent", "PopupMenu", Math::round(10 * scale));
  573. theme->set_constant("h_separation", "PopupMenu", Math::round(4 * scale));
  574. theme->set_constant("v_separation", "PopupMenu", Math::round(4 * scale));
  575. theme->set_constant("outline_size", "PopupMenu", 0);
  576. theme->set_constant("separator_outline_size", "PopupMenu", 0);
  577. theme->set_constant("item_start_padding", "PopupMenu", Math::round(2 * scale));
  578. theme->set_constant("item_end_padding", "PopupMenu", Math::round(2 * scale));
  579. theme->set_constant("icon_max_width", "PopupMenu", 0);
  580. // GraphNode
  581. Ref<StyleBoxFlat> graphnode_normal = make_flat_stylebox(style_normal_color, 18, 12, 18, 12);
  582. graphnode_normal->set_border_color(Color(0.325, 0.325, 0.325, 0.6));
  583. Ref<StyleBoxFlat> graphnode_selected = graphnode_normal->duplicate();
  584. graphnode_selected->set_border_color(Color(0.625, 0.625, 0.625, 0.6));
  585. Ref<StyleBoxFlat> graphn_sb_titlebar = make_flat_stylebox(style_normal_color.lightened(0.3), 4, 4, 4, 4);
  586. Ref<StyleBoxFlat> graphn_sb_titlebar_selected = graphnode_normal->duplicate();
  587. graphn_sb_titlebar_selected->set_bg_color(Color(1.0, 0.625, 0.625, 0.6));
  588. Ref<StyleBoxEmpty> graphnode_slot = make_empty_stylebox(0, 0, 0, 0);
  589. theme->set_stylebox("panel", "GraphNode", graphnode_normal);
  590. theme->set_stylebox("panel_selected", "GraphNode", graphnode_selected);
  591. theme->set_stylebox("titlebar", "GraphNode", graphn_sb_titlebar);
  592. theme->set_stylebox("titlebar_selected", "GraphNode", graphn_sb_titlebar_selected);
  593. theme->set_stylebox("slot", "GraphNode", graphnode_slot);
  594. theme->set_icon("port", "GraphNode", icons["graph_port"]);
  595. theme->set_icon("resizer", "GraphNode", icons["resizer_se"]);
  596. theme->set_color("resizer_color", "GraphNode", control_font_color);
  597. theme->set_constant("separation", "GraphNode", Math::round(2 * scale));
  598. theme->set_constant("port_h_offset", "GraphNode", 0);
  599. // GraphNodes's title Label.
  600. theme->set_type_variation("GraphNodeTitleLabel", "Label");
  601. theme->set_stylebox("normal", "GraphNodeTitleLabel", make_empty_stylebox(0, 0, 0, 0));
  602. theme->set_font("font", "GraphNodeTitleLabel", Ref<Font>());
  603. theme->set_font_size("font_size", "GraphNodeTitleLabel", -1);
  604. theme->set_color("font_color", "GraphNodeTitleLabel", control_font_color);
  605. theme->set_color("font_shadow_color", "GraphNodeTitleLabel", Color(0, 0, 0, 0));
  606. theme->set_color("font_outline_color", "GraphNodeTitleLabel", control_font_color);
  607. theme->set_constant("shadow_offset_x", "GraphNodeTitleLabel", Math::round(1 * scale));
  608. theme->set_constant("shadow_offset_y", "GraphNodeTitleLabel", Math::round(1 * scale));
  609. theme->set_constant("outline_size", "GraphNodeTitleLabel", 0);
  610. theme->set_constant("shadow_outline_size", "GraphNodeTitleLabel", Math::round(1 * scale));
  611. theme->set_constant("line_spacing", "GraphNodeTitleLabel", Math::round(3 * scale));
  612. // Tree
  613. theme->set_stylebox("panel", "Tree", make_flat_stylebox(style_normal_color, 4, 4, 4, 5));
  614. theme->set_stylebox("focus", "Tree", focus);
  615. theme->set_stylebox("selected", "Tree", make_flat_stylebox(style_selected_color));
  616. theme->set_stylebox("selected_focus", "Tree", make_flat_stylebox(style_selected_color));
  617. theme->set_stylebox("cursor", "Tree", focus);
  618. theme->set_stylebox("cursor_unfocused", "Tree", focus);
  619. theme->set_stylebox("button_pressed", "Tree", button_pressed);
  620. theme->set_stylebox("title_button_normal", "Tree", make_flat_stylebox(style_pressed_color, 4, 4, 4, 4));
  621. theme->set_stylebox("title_button_pressed", "Tree", make_flat_stylebox(style_hover_color, 4, 4, 4, 4));
  622. theme->set_stylebox("title_button_hover", "Tree", make_flat_stylebox(style_normal_color, 4, 4, 4, 4));
  623. theme->set_stylebox("custom_button", "Tree", button_normal);
  624. theme->set_stylebox("custom_button_pressed", "Tree", button_pressed);
  625. theme->set_stylebox("custom_button_hover", "Tree", button_hover);
  626. theme->set_icon("checked", "Tree", icons["checked"]);
  627. theme->set_icon("unchecked", "Tree", icons["unchecked"]);
  628. theme->set_icon("indeterminate", "Tree", icons["indeterminate"]);
  629. theme->set_icon("updown", "Tree", icons["updown"]);
  630. theme->set_icon("select_arrow", "Tree", icons["option_button_arrow"]);
  631. theme->set_icon("arrow", "Tree", icons["arrow_down"]);
  632. theme->set_icon("arrow_collapsed", "Tree", icons["arrow_right"]);
  633. theme->set_icon("arrow_collapsed_mirrored", "Tree", icons["arrow_left"]);
  634. theme->set_font("title_button_font", "Tree", Ref<Font>());
  635. theme->set_font("font", "Tree", Ref<Font>());
  636. theme->set_font_size("font_size", "Tree", -1);
  637. theme->set_font_size("title_button_font_size", "Tree", -1);
  638. theme->set_color("title_button_color", "Tree", control_font_color);
  639. theme->set_color("font_color", "Tree", control_font_low_color);
  640. theme->set_color("font_selected_color", "Tree", control_font_pressed_color);
  641. theme->set_color("font_outline_color", "Tree", Color(1, 1, 1));
  642. theme->set_color("guide_color", "Tree", Color(0.7, 0.7, 0.7, 0.25));
  643. theme->set_color("drop_position_color", "Tree", Color(1, 1, 1));
  644. theme->set_color("relationship_line_color", "Tree", Color(0.27, 0.27, 0.27));
  645. theme->set_color("parent_hl_line_color", "Tree", Color(0.27, 0.27, 0.27));
  646. theme->set_color("children_hl_line_color", "Tree", Color(0.27, 0.27, 0.27));
  647. theme->set_color("custom_button_font_highlight", "Tree", control_font_hover_color);
  648. theme->set_constant("h_separation", "Tree", Math::round(4 * scale));
  649. theme->set_constant("v_separation", "Tree", Math::round(4 * scale));
  650. theme->set_constant("item_margin", "Tree", Math::round(16 * scale));
  651. theme->set_constant("inner_item_margin_bottom", "Tree", 0);
  652. theme->set_constant("inner_item_margin_left", "Tree", 0);
  653. theme->set_constant("inner_item_margin_right", "Tree", 0);
  654. theme->set_constant("inner_item_margin_top", "Tree", 0);
  655. theme->set_constant("button_margin", "Tree", Math::round(4 * scale));
  656. theme->set_constant("draw_relationship_lines", "Tree", 0);
  657. theme->set_constant("relationship_line_width", "Tree", 1);
  658. theme->set_constant("parent_hl_line_width", "Tree", 1);
  659. theme->set_constant("children_hl_line_width", "Tree", 1);
  660. theme->set_constant("parent_hl_line_margin", "Tree", 0);
  661. theme->set_constant("draw_guides", "Tree", 1);
  662. theme->set_constant("scroll_border", "Tree", Math::round(4 * scale));
  663. theme->set_constant("scroll_speed", "Tree", 12);
  664. theme->set_constant("outline_size", "Tree", 0);
  665. theme->set_constant("icon_max_width", "Tree", 0);
  666. theme->set_constant("scrollbar_margin_left", "Tree", -1);
  667. theme->set_constant("scrollbar_margin_top", "Tree", -1);
  668. theme->set_constant("scrollbar_margin_right", "Tree", -1);
  669. theme->set_constant("scrollbar_margin_bottom", "Tree", -1);
  670. theme->set_constant("scrollbar_h_separation", "Tree", Math::round(4 * scale));
  671. theme->set_constant("scrollbar_v_separation", "Tree", Math::round(4 * scale));
  672. // ItemList
  673. theme->set_stylebox("panel", "ItemList", make_flat_stylebox(style_normal_color));
  674. theme->set_stylebox("focus", "ItemList", focus);
  675. theme->set_constant("h_separation", "ItemList", Math::round(4 * scale));
  676. theme->set_constant("v_separation", "ItemList", Math::round(2 * scale));
  677. theme->set_constant("icon_margin", "ItemList", Math::round(4 * scale));
  678. theme->set_constant("line_separation", "ItemList", Math::round(2 * scale));
  679. theme->set_font("font", "ItemList", Ref<Font>());
  680. theme->set_font_size("font_size", "ItemList", -1);
  681. theme->set_color("font_color", "ItemList", control_font_lower_color);
  682. theme->set_color("font_hovered_color", "ItemList", control_font_hover_color);
  683. theme->set_color("font_selected_color", "ItemList", control_font_pressed_color);
  684. theme->set_color("font_outline_color", "ItemList", Color(1, 1, 1));
  685. theme->set_color("guide_color", "ItemList", Color(0.7, 0.7, 0.7, 0.25));
  686. theme->set_stylebox("hovered", "ItemList", make_flat_stylebox(Color(1, 1, 1, 0.07)));
  687. theme->set_stylebox("selected", "ItemList", make_flat_stylebox(style_selected_color));
  688. theme->set_stylebox("selected_focus", "ItemList", make_flat_stylebox(style_selected_color));
  689. theme->set_stylebox("cursor", "ItemList", focus);
  690. theme->set_stylebox("cursor_unfocused", "ItemList", focus);
  691. theme->set_constant("outline_size", "ItemList", 0);
  692. // TabContainer
  693. Ref<StyleBoxFlat> style_tab_selected = make_flat_stylebox(style_normal_color, 10, 4, 10, 4, 0);
  694. style_tab_selected->set_border_width(SIDE_TOP, Math::round(2 * scale));
  695. style_tab_selected->set_border_color(style_focus_color);
  696. Ref<StyleBoxFlat> style_tab_unselected = make_flat_stylebox(style_pressed_color, 10, 4, 10, 4, 0);
  697. // Add some spacing between unselected tabs to make them easier to distinguish from each other.
  698. style_tab_unselected->set_border_width(SIDE_LEFT, Math::round(scale));
  699. style_tab_unselected->set_border_width(SIDE_RIGHT, Math::round(scale));
  700. style_tab_unselected->set_border_color(style_popup_border_color);
  701. Ref<StyleBoxFlat> style_tab_disabled = style_tab_unselected->duplicate();
  702. style_tab_disabled->set_bg_color(style_disabled_color);
  703. Ref<StyleBoxFlat> style_tab_hovered = style_tab_unselected->duplicate();
  704. style_tab_hovered->set_bg_color(Color(0.1, 0.1, 0.1, 0.3));
  705. Ref<StyleBoxFlat> style_tab_focus = focus->duplicate();
  706. theme->set_stylebox("tab_selected", "TabContainer", style_tab_selected);
  707. theme->set_stylebox("tab_hovered", "TabContainer", style_tab_hovered);
  708. theme->set_stylebox("tab_unselected", "TabContainer", style_tab_unselected);
  709. theme->set_stylebox("tab_disabled", "TabContainer", style_tab_disabled);
  710. theme->set_stylebox("tab_focus", "TabContainer", style_tab_focus);
  711. theme->set_stylebox("panel", "TabContainer", make_flat_stylebox(style_normal_color, 0, 0, 0, 0));
  712. theme->set_stylebox("tabbar_background", "TabContainer", make_empty_stylebox(0, 0, 0, 0));
  713. theme->set_icon("increment", "TabContainer", icons["scroll_button_right"]);
  714. theme->set_icon("increment_highlight", "TabContainer", icons["scroll_button_right_hl"]);
  715. theme->set_icon("decrement", "TabContainer", icons["scroll_button_left"]);
  716. theme->set_icon("decrement_highlight", "TabContainer", icons["scroll_button_left_hl"]);
  717. theme->set_icon("drop_mark", "TabContainer", icons["tabs_drop_mark"]);
  718. theme->set_icon("menu", "TabContainer", icons["tabs_menu"]);
  719. theme->set_icon("menu_highlight", "TabContainer", icons["tabs_menu_hl"]);
  720. theme->set_font("font", "TabContainer", Ref<Font>());
  721. theme->set_font_size("font_size", "TabContainer", -1);
  722. theme->set_color("font_selected_color", "TabContainer", control_font_hover_color);
  723. theme->set_color("font_hovered_color", "TabContainer", control_font_hover_color);
  724. theme->set_color("font_unselected_color", "TabContainer", control_font_low_color);
  725. theme->set_color("font_disabled_color", "TabContainer", control_font_disabled_color);
  726. theme->set_color("font_outline_color", "TabContainer", Color(1, 1, 1));
  727. theme->set_color("drop_mark_color", "TabContainer", Color(1, 1, 1));
  728. theme->set_constant("side_margin", "TabContainer", Math::round(8 * scale));
  729. theme->set_constant("icon_separation", "TabContainer", Math::round(4 * scale));
  730. theme->set_constant("icon_max_width", "TabContainer", 0);
  731. theme->set_constant("outline_size", "TabContainer", 0);
  732. // TabBar
  733. theme->set_stylebox("tab_selected", "TabBar", style_tab_selected);
  734. theme->set_stylebox("tab_hovered", "TabBar", style_tab_hovered);
  735. theme->set_stylebox("tab_unselected", "TabBar", style_tab_unselected);
  736. theme->set_stylebox("tab_disabled", "TabBar", style_tab_disabled);
  737. theme->set_stylebox("tab_focus", "TabBar", style_tab_focus);
  738. theme->set_stylebox("button_pressed", "TabBar", button_pressed);
  739. theme->set_stylebox("button_highlight", "TabBar", button_normal);
  740. theme->set_icon("increment", "TabBar", icons["scroll_button_right"]);
  741. theme->set_icon("increment_highlight", "TabBar", icons["scroll_button_right_hl"]);
  742. theme->set_icon("decrement", "TabBar", icons["scroll_button_left"]);
  743. theme->set_icon("decrement_highlight", "TabBar", icons["scroll_button_left_hl"]);
  744. theme->set_icon("drop_mark", "TabBar", icons["tabs_drop_mark"]);
  745. theme->set_icon("close", "TabBar", icons["close"]);
  746. theme->set_font("font", "TabBar", Ref<Font>());
  747. theme->set_font_size("font_size", "TabBar", -1);
  748. theme->set_color("font_selected_color", "TabBar", control_font_hover_color);
  749. theme->set_color("font_hovered_color", "TabBar", control_font_hover_color);
  750. theme->set_color("font_unselected_color", "TabBar", control_font_low_color);
  751. theme->set_color("font_disabled_color", "TabBar", control_font_disabled_color);
  752. theme->set_color("font_outline_color", "TabBar", Color(1, 1, 1));
  753. theme->set_color("drop_mark_color", "TabBar", Color(1, 1, 1));
  754. theme->set_constant("h_separation", "TabBar", Math::round(4 * scale));
  755. theme->set_constant("icon_max_width", "TabBar", 0);
  756. theme->set_constant("outline_size", "TabBar", 0);
  757. // Separators
  758. theme->set_stylebox("separator", "HSeparator", separator_horizontal);
  759. theme->set_stylebox("separator", "VSeparator", separator_vertical);
  760. theme->set_icon("close", "Icons", icons["close"]);
  761. theme->set_font("normal", "Fonts", Ref<Font>());
  762. theme->set_font("large", "Fonts", Ref<Font>());
  763. theme->set_constant("separation", "HSeparator", Math::round(4 * scale));
  764. theme->set_constant("separation", "VSeparator", Math::round(4 * scale));
  765. // ColorPicker
  766. theme->set_constant("margin", "ColorPicker", Math::round(4 * scale));
  767. theme->set_constant("sv_width", "ColorPicker", Math::round(256 * scale));
  768. theme->set_constant("sv_height", "ColorPicker", Math::round(256 * scale));
  769. theme->set_constant("h_width", "ColorPicker", Math::round(30 * scale));
  770. theme->set_constant("label_width", "ColorPicker", Math::round(10 * scale));
  771. theme->set_constant("center_slider_grabbers", "ColorPicker", 1);
  772. theme->set_icon("folded_arrow", "ColorPicker", icons["arrow_right"]);
  773. theme->set_icon("expanded_arrow", "ColorPicker", icons["arrow_down"]);
  774. theme->set_icon("screen_picker", "ColorPicker", icons["color_picker_pipette"]);
  775. theme->set_icon("shape_circle", "ColorPicker", icons["picker_shape_circle"]);
  776. theme->set_icon("shape_rect", "ColorPicker", icons["picker_shape_rectangle"]);
  777. theme->set_icon("shape_rect_wheel", "ColorPicker", icons["picker_shape_rectangle_wheel"]);
  778. theme->set_icon("add_preset", "ColorPicker", icons["add"]);
  779. theme->set_icon("sample_bg", "ColorPicker", icons["mini_checkerboard"]);
  780. theme->set_icon("overbright_indicator", "ColorPicker", icons["color_picker_overbright"]);
  781. theme->set_icon("bar_arrow", "ColorPicker", icons["color_picker_bar_arrow"]);
  782. theme->set_icon("picker_cursor", "ColorPicker", icons["color_picker_cursor"]);
  783. {
  784. const int precision = 7;
  785. Ref<Gradient> hue_gradient;
  786. hue_gradient.instantiate();
  787. PackedFloat32Array offsets;
  788. offsets.resize(precision);
  789. PackedColorArray colors;
  790. colors.resize(precision);
  791. for (int i = 0; i < precision; i++) {
  792. float h = i / float(precision - 1);
  793. offsets.write[i] = h;
  794. colors.write[i] = Color::from_hsv(h, 1, 1);
  795. }
  796. hue_gradient->set_offsets(offsets);
  797. hue_gradient->set_colors(colors);
  798. Ref<GradientTexture2D> hue_texture;
  799. hue_texture.instantiate();
  800. hue_texture->set_width(800);
  801. hue_texture->set_height(6);
  802. hue_texture->set_gradient(hue_gradient);
  803. theme->set_icon("color_hue", "ColorPicker", hue_texture);
  804. }
  805. {
  806. const int precision = 7;
  807. Ref<Gradient> hue_gradient;
  808. hue_gradient.instantiate();
  809. PackedFloat32Array offsets;
  810. offsets.resize(precision);
  811. PackedColorArray colors;
  812. colors.resize(precision);
  813. for (int i = 0; i < precision; i++) {
  814. float h = i / float(precision - 1);
  815. offsets.write[i] = h;
  816. colors.write[i] = Color::from_ok_hsl(h, 1, 0.5);
  817. }
  818. hue_gradient->set_offsets(offsets);
  819. hue_gradient->set_colors(colors);
  820. Ref<GradientTexture2D> hue_texture;
  821. hue_texture.instantiate();
  822. hue_texture->set_width(800);
  823. hue_texture->set_height(6);
  824. hue_texture->set_gradient(hue_gradient);
  825. theme->set_icon("color_okhsl_hue", "ColorPicker", hue_texture);
  826. }
  827. // ColorPickerButton
  828. theme->set_icon("bg", "ColorPickerButton", icons["mini_checkerboard"]);
  829. theme->set_stylebox("normal", "ColorPickerButton", button_normal);
  830. theme->set_stylebox("pressed", "ColorPickerButton", button_pressed);
  831. theme->set_stylebox("hover", "ColorPickerButton", button_hover);
  832. theme->set_stylebox("disabled", "ColorPickerButton", button_disabled);
  833. theme->set_stylebox("focus", "ColorPickerButton", focus);
  834. theme->set_font("font", "ColorPickerButton", Ref<Font>());
  835. theme->set_font_size("font_size", "ColorPickerButton", -1);
  836. theme->set_color("font_color", "ColorPickerButton", Color(1, 1, 1, 1));
  837. theme->set_color("font_pressed_color", "ColorPickerButton", Color(0.8, 0.8, 0.8, 1));
  838. theme->set_color("font_hover_color", "ColorPickerButton", Color(1, 1, 1, 1));
  839. theme->set_color("font_focus_color", "ColorPickerButton", Color(1, 1, 1, 1));
  840. theme->set_color("font_disabled_color", "ColorPickerButton", Color(0.9, 0.9, 0.9, 0.3));
  841. theme->set_color("font_outline_color", "ColorPickerButton", Color(1, 1, 1));
  842. theme->set_constant("h_separation", "ColorPickerButton", Math::round(4 * scale));
  843. theme->set_constant("outline_size", "ColorPickerButton", 0);
  844. // ColorPresetButton
  845. Ref<StyleBoxFlat> preset_sb = make_flat_stylebox(Color(1, 1, 1), 2, 2, 2, 2);
  846. preset_sb->set_corner_radius_all(Math::round(2 * scale));
  847. preset_sb->set_corner_detail(Math::round(2 * scale));
  848. preset_sb->set_anti_aliased(false);
  849. theme->set_stylebox("preset_fg", "ColorPresetButton", preset_sb);
  850. theme->set_icon("preset_bg", "ColorPresetButton", icons["mini_checkerboard"]);
  851. theme->set_icon("overbright_indicator", "ColorPresetButton", icons["color_picker_overbright"]);
  852. // TooltipPanel + TooltipLabel
  853. theme->set_type_variation("TooltipPanel", "PopupPanel");
  854. theme->set_stylebox("panel", "TooltipPanel",
  855. make_flat_stylebox(Color(0, 0, 0, 0.5), 2 * default_margin, 0.5 * default_margin, 2 * default_margin, 0.5 * default_margin));
  856. theme->set_type_variation("TooltipLabel", "Label");
  857. theme->set_font_size("font_size", "TooltipLabel", -1);
  858. theme->set_font("font", "TooltipLabel", Ref<Font>());
  859. theme->set_color("font_color", "TooltipLabel", control_font_color);
  860. theme->set_color("font_shadow_color", "TooltipLabel", Color(0, 0, 0, 0));
  861. theme->set_color("font_outline_color", "TooltipLabel", Color(0, 0, 0, 0));
  862. theme->set_constant("shadow_offset_x", "TooltipLabel", 1);
  863. theme->set_constant("shadow_offset_y", "TooltipLabel", 1);
  864. theme->set_constant("outline_size", "TooltipLabel", 0);
  865. // RichTextLabel
  866. theme->set_stylebox("focus", "RichTextLabel", focus);
  867. theme->set_stylebox("normal", "RichTextLabel", make_empty_stylebox(0, 0, 0, 0));
  868. theme->set_font("normal_font", "RichTextLabel", Ref<Font>());
  869. theme->set_font("bold_font", "RichTextLabel", bold_font);
  870. theme->set_font("italics_font", "RichTextLabel", italics_font);
  871. theme->set_font("bold_italics_font", "RichTextLabel", bold_italics_font);
  872. theme->set_font("mono_font", "RichTextLabel", Ref<Font>());
  873. theme->set_font_size("normal_font_size", "RichTextLabel", -1);
  874. theme->set_font_size("bold_font_size", "RichTextLabel", -1);
  875. theme->set_font_size("italics_font_size", "RichTextLabel", -1);
  876. theme->set_font_size("bold_italics_font_size", "RichTextLabel", -1);
  877. theme->set_font_size("mono_font_size", "RichTextLabel", -1);
  878. theme->set_color("default_color", "RichTextLabel", Color(1, 1, 1));
  879. theme->set_color("font_selected_color", "RichTextLabel", Color(0, 0, 0, 0));
  880. theme->set_color("selection_color", "RichTextLabel", Color(0.1, 0.1, 1, 0.8));
  881. theme->set_color("font_shadow_color", "RichTextLabel", Color(0, 0, 0, 0));
  882. theme->set_color("font_outline_color", "RichTextLabel", Color(1, 1, 1));
  883. theme->set_constant("shadow_offset_x", "RichTextLabel", Math::round(1 * scale));
  884. theme->set_constant("shadow_offset_y", "RichTextLabel", Math::round(1 * scale));
  885. theme->set_constant("shadow_outline_size", "RichTextLabel", Math::round(1 * scale));
  886. theme->set_constant("line_separation", "RichTextLabel", 0);
  887. theme->set_constant("table_h_separation", "RichTextLabel", Math::round(3 * scale));
  888. theme->set_constant("table_v_separation", "RichTextLabel", Math::round(3 * scale));
  889. theme->set_constant("outline_size", "RichTextLabel", 0);
  890. theme->set_color("table_odd_row_bg", "RichTextLabel", Color(0, 0, 0, 0));
  891. theme->set_color("table_even_row_bg", "RichTextLabel", Color(0, 0, 0, 0));
  892. theme->set_color("table_border", "RichTextLabel", Color(0, 0, 0, 0));
  893. theme->set_constant("text_highlight_h_padding", "RichTextLabel", Math::round(3 * scale));
  894. theme->set_constant("text_highlight_v_padding", "RichTextLabel", Math::round(3 * scale));
  895. // Containers
  896. theme->set_icon("h_grabber", "SplitContainer", icons["hsplitter"]);
  897. theme->set_icon("v_grabber", "SplitContainer", icons["vsplitter"]);
  898. theme->set_icon("grabber", "VSplitContainer", icons["vsplitter"]);
  899. theme->set_icon("grabber", "HSplitContainer", icons["hsplitter"]);
  900. theme->set_constant("separation", "BoxContainer", Math::round(4 * scale));
  901. theme->set_constant("separation", "HBoxContainer", Math::round(4 * scale));
  902. theme->set_constant("separation", "VBoxContainer", Math::round(4 * scale));
  903. theme->set_constant("margin_left", "MarginContainer", 0);
  904. theme->set_constant("margin_top", "MarginContainer", 0);
  905. theme->set_constant("margin_right", "MarginContainer", 0);
  906. theme->set_constant("margin_bottom", "MarginContainer", 0);
  907. theme->set_constant("h_separation", "GridContainer", Math::round(4 * scale));
  908. theme->set_constant("v_separation", "GridContainer", Math::round(4 * scale));
  909. theme->set_constant("separation", "SplitContainer", Math::round(12 * scale));
  910. theme->set_constant("separation", "HSplitContainer", Math::round(12 * scale));
  911. theme->set_constant("separation", "VSplitContainer", Math::round(12 * scale));
  912. theme->set_constant("minimum_grab_thickness", "SplitContainer", Math::round(6 * scale));
  913. theme->set_constant("minimum_grab_thickness", "HSplitContainer", Math::round(6 * scale));
  914. theme->set_constant("minimum_grab_thickness", "VSplitContainer", Math::round(6 * scale));
  915. theme->set_constant("autohide", "SplitContainer", 1);
  916. theme->set_constant("autohide", "HSplitContainer", 1);
  917. theme->set_constant("autohide", "VSplitContainer", 1);
  918. theme->set_constant("h_separation", "FlowContainer", Math::round(4 * scale));
  919. theme->set_constant("v_separation", "FlowContainer", Math::round(4 * scale));
  920. theme->set_constant("h_separation", "HFlowContainer", Math::round(4 * scale));
  921. theme->set_constant("v_separation", "HFlowContainer", Math::round(4 * scale));
  922. theme->set_constant("h_separation", "VFlowContainer", Math::round(4 * scale));
  923. theme->set_constant("v_separation", "VFlowContainer", Math::round(4 * scale));
  924. theme->set_stylebox("panel", "PanelContainer", make_flat_stylebox(style_normal_color, 0, 0, 0, 0));
  925. theme->set_icon("zoom_out", "GraphEdit", icons["zoom_less"]);
  926. theme->set_icon("zoom_in", "GraphEdit", icons["zoom_more"]);
  927. theme->set_icon("zoom_reset", "GraphEdit", icons["zoom_reset"]);
  928. theme->set_icon("grid_toggle", "GraphEdit", icons["grid_toggle"]);
  929. theme->set_icon("minimap_toggle", "GraphEdit", icons["grid_minimap"]);
  930. theme->set_icon("snapping_toggle", "GraphEdit", icons["grid_snap"]);
  931. theme->set_icon("layout", "GraphEdit", icons["grid_layout"]);
  932. theme->set_stylebox("panel", "GraphEdit", make_flat_stylebox(style_normal_color, 4, 4, 4, 5));
  933. theme->set_color("grid_minor", "GraphEdit", Color(1, 1, 1, 0.05));
  934. theme->set_color("grid_major", "GraphEdit", Color(1, 1, 1, 0.2));
  935. theme->set_color("selection_fill", "GraphEdit", Color(1, 1, 1, 0.3));
  936. theme->set_color("selection_stroke", "GraphEdit", Color(1, 1, 1, 0.8));
  937. theme->set_color("activity", "GraphEdit", Color(1, 1, 1));
  938. // Visual Node Ports
  939. theme->set_constant("port_hotzone_inner_extent", "GraphEdit", 22 * scale);
  940. theme->set_constant("port_hotzone_outer_extent", "GraphEdit", 26 * scale);
  941. theme->set_stylebox("panel", "GraphEditMinimap", make_flat_stylebox(Color(0.24, 0.24, 0.24), 0, 0, 0, 0));
  942. Ref<StyleBoxFlat> style_minimap_camera = make_flat_stylebox(Color(0.65, 0.65, 0.65, 0.2), 0, 0, 0, 0, 0);
  943. style_minimap_camera->set_border_color(Color(0.65, 0.65, 0.65, 0.45));
  944. style_minimap_camera->set_border_width_all(1);
  945. theme->set_stylebox("camera", "GraphEditMinimap", style_minimap_camera);
  946. theme->set_stylebox("node", "GraphEditMinimap", make_flat_stylebox(Color(1, 1, 1), 0, 0, 0, 0, 2));
  947. theme->set_icon("resizer", "GraphEditMinimap", icons["resizer_nw"]);
  948. theme->set_color("resizer_color", "GraphEditMinimap", Color(1, 1, 1, 0.85));
  949. // Theme
  950. default_icon = icons["error_icon"];
  951. // Same color as the error icon.
  952. default_style = make_flat_stylebox(Color(1, 0.365, 0.365), 4, 4, 4, 4, 0, false, 2);
  953. }
  954. void make_default_theme(float p_scale, Ref<Font> p_font, TextServer::SubpixelPositioning p_font_subpixel, TextServer::Hinting p_font_hinting, TextServer::FontAntialiasing p_font_antialiasing, bool p_font_msdf, bool p_font_generate_mipmaps) {
  955. Ref<Theme> t;
  956. t.instantiate();
  957. Ref<StyleBox> default_style;
  958. Ref<Texture2D> default_icon;
  959. Ref<Font> default_font;
  960. Ref<FontVariation> bold_font;
  961. Ref<FontVariation> bold_italics_font;
  962. Ref<FontVariation> italics_font;
  963. float default_scale = CLAMP(p_scale, 0.5, 8.0);
  964. if (p_font.is_valid()) {
  965. // Use the custom font defined in the Project Settings.
  966. default_font = p_font;
  967. } else {
  968. // Use the default DynamicFont (separate from the editor font).
  969. // The default DynamicFont is chosen to have a small file size since it's
  970. // embedded in both editor and export template binaries.
  971. Ref<FontFile> dynamic_font;
  972. dynamic_font.instantiate();
  973. dynamic_font->set_data_ptr(_font_OpenSans_SemiBold, _font_OpenSans_SemiBold_size);
  974. dynamic_font->set_subpixel_positioning(p_font_subpixel);
  975. dynamic_font->set_hinting(p_font_hinting);
  976. dynamic_font->set_antialiasing(p_font_antialiasing);
  977. dynamic_font->set_multichannel_signed_distance_field(p_font_msdf);
  978. dynamic_font->set_generate_mipmaps(p_font_generate_mipmaps);
  979. default_font = dynamic_font;
  980. }
  981. if (default_font.is_valid()) {
  982. bold_font.instantiate();
  983. bold_font->set_base_font(default_font);
  984. bold_font->set_variation_embolden(1.2);
  985. bold_italics_font.instantiate();
  986. bold_italics_font->set_base_font(default_font);
  987. bold_italics_font->set_variation_embolden(1.2);
  988. bold_italics_font->set_variation_transform(Transform2D(1.0, 0.2, 0.0, 1.0, 0.0, 0.0));
  989. italics_font.instantiate();
  990. italics_font->set_base_font(default_font);
  991. italics_font->set_variation_transform(Transform2D(1.0, 0.2, 0.0, 1.0, 0.0, 0.0));
  992. }
  993. fill_default_theme(t, default_font, bold_font, bold_italics_font, italics_font, default_icon, default_style, default_scale);
  994. ThemeDB::get_singleton()->set_default_theme(t);
  995. ThemeDB::get_singleton()->set_fallback_base_scale(default_scale);
  996. ThemeDB::get_singleton()->set_fallback_icon(default_icon);
  997. ThemeDB::get_singleton()->set_fallback_stylebox(default_style);
  998. ThemeDB::get_singleton()->set_fallback_font(default_font);
  999. ThemeDB::get_singleton()->set_fallback_font_size(default_font_size * default_scale);
  1000. }