default_theme.cpp 75 KB

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