default_theme.cpp 51 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022
  1. /*************************************************************************/
  2. /* default_theme.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
  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 "scene/resources/font.h"
  34. #include "scene/resources/theme.h"
  35. #include "servers/text_server.h"
  36. #include "theme_data.h"
  37. typedef Map<const void *, Ref<ImageTexture>> TexCacheMap;
  38. static TexCacheMap *tex_cache;
  39. static float scale = 1.0;
  40. template <class T>
  41. static Ref<StyleBoxTexture> make_stylebox(T p_src, float p_left, float p_top, float p_right, float p_bottom, float p_margin_left = -1, float p_margin_top = -1, float p_margin_right = -1, float p_margin_bottom = -1, bool p_draw_center = true) {
  42. Ref<ImageTexture> texture;
  43. if (tex_cache->has(p_src)) {
  44. texture = (*tex_cache)[p_src];
  45. } else {
  46. texture = Ref<ImageTexture>(memnew(ImageTexture));
  47. Ref<Image> img = memnew(Image(p_src));
  48. const Size2 orig_size = Size2(img->get_width(), img->get_height());
  49. img->convert(Image::FORMAT_RGBA8);
  50. img->resize(orig_size.x * scale, orig_size.y * scale);
  51. texture->create_from_image(img);
  52. (*tex_cache)[p_src] = texture;
  53. }
  54. Ref<StyleBoxTexture> style(memnew(StyleBoxTexture));
  55. style->set_texture(texture);
  56. style->set_margin_size(SIDE_LEFT, p_left * scale);
  57. style->set_margin_size(SIDE_RIGHT, p_right * scale);
  58. style->set_margin_size(SIDE_BOTTOM, p_bottom * scale);
  59. style->set_margin_size(SIDE_TOP, p_top * scale);
  60. style->set_default_margin(SIDE_LEFT, p_margin_left * scale);
  61. style->set_default_margin(SIDE_RIGHT, p_margin_right * scale);
  62. style->set_default_margin(SIDE_BOTTOM, p_margin_bottom * scale);
  63. style->set_default_margin(SIDE_TOP, p_margin_top * scale);
  64. style->set_draw_center(p_draw_center);
  65. return style;
  66. }
  67. static Ref<StyleBoxFlat> make_flat_stylebox(Color p_color, float p_margin_left = -1, float p_margin_top = -1, float p_margin_right = -1, float p_margin_bottom = -1) {
  68. Ref<StyleBoxFlat> style(memnew(StyleBoxFlat));
  69. style->set_bg_color(p_color);
  70. style->set_default_margin(SIDE_LEFT, p_margin_left * scale);
  71. style->set_default_margin(SIDE_RIGHT, p_margin_right * scale);
  72. style->set_default_margin(SIDE_BOTTOM, p_margin_bottom * scale);
  73. style->set_default_margin(SIDE_TOP, p_margin_top * scale);
  74. return style;
  75. }
  76. static Ref<StyleBoxTexture> sb_expand(Ref<StyleBoxTexture> p_sbox, float p_left, float p_top, float p_right, float p_bottom) {
  77. p_sbox->set_expand_margin_size(SIDE_LEFT, p_left * scale);
  78. p_sbox->set_expand_margin_size(SIDE_TOP, p_top * scale);
  79. p_sbox->set_expand_margin_size(SIDE_RIGHT, p_right * scale);
  80. p_sbox->set_expand_margin_size(SIDE_BOTTOM, p_bottom * scale);
  81. return p_sbox;
  82. }
  83. template <class T>
  84. static Ref<Texture2D> make_icon(T p_src) {
  85. Ref<ImageTexture> texture(memnew(ImageTexture));
  86. Ref<Image> img = memnew(Image(p_src));
  87. const Size2 orig_size = Size2(img->get_width(), img->get_height());
  88. img->convert(Image::FORMAT_RGBA8);
  89. img->resize(orig_size.x * scale, orig_size.y * scale);
  90. texture->create_from_image(img);
  91. return texture;
  92. }
  93. static Ref<Texture2D> flip_icon(Ref<Texture2D> p_texture, bool p_flip_y = false, bool p_flip_x = false) {
  94. if (!p_flip_y && !p_flip_x) {
  95. return p_texture;
  96. }
  97. Ref<ImageTexture> texture(memnew(ImageTexture));
  98. Ref<Image> img = p_texture->get_image();
  99. img = img->duplicate();
  100. if (p_flip_y) {
  101. img->flip_y();
  102. }
  103. if (p_flip_x) {
  104. img->flip_x();
  105. }
  106. texture->create_from_image(img);
  107. return texture;
  108. }
  109. 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) {
  110. Ref<StyleBox> style(memnew(StyleBoxEmpty));
  111. style->set_default_margin(SIDE_LEFT, p_margin_left * scale);
  112. style->set_default_margin(SIDE_RIGHT, p_margin_right * scale);
  113. style->set_default_margin(SIDE_BOTTOM, p_margin_bottom * scale);
  114. style->set_default_margin(SIDE_TOP, p_margin_top * scale);
  115. return style;
  116. }
  117. void fill_default_theme(Ref<Theme> &theme, const Ref<Font> &default_font, const Ref<Font> &large_font, Ref<Texture2D> &default_icon, Ref<StyleBox> &default_style, float p_scale) {
  118. scale = p_scale;
  119. tex_cache = memnew(TexCacheMap);
  120. // Font Colors
  121. Color control_font_color = Color(0.88, 0.88, 0.88);
  122. Color control_font_lower_color = Color(0.63, 0.63, 0.63);
  123. Color control_font_low_color = Color(0.69, 0.69, 0.69);
  124. Color control_font_hover_color = Color(0.94, 0.94, 0.94);
  125. Color control_font_disabled_color = Color(0.9, 0.9, 0.9, 0.2);
  126. Color control_font_pressed_color = Color(1, 1, 1);
  127. Color control_selection_color = Color(0.49, 0.49, 0.49);
  128. // Panel
  129. theme->set_stylebox("panel", "Panel", make_stylebox(panel_bg_png, 0, 0, 0, 0));
  130. theme->set_stylebox("panel_fg", "Panel", make_stylebox(panel_bg_png, 0, 0, 0, 0));
  131. // Focus
  132. Ref<StyleBoxTexture> focus = make_stylebox(focus_png, 5, 5, 5, 5);
  133. for (int i = 0; i < 4; i++) {
  134. focus->set_expand_margin_size(Side(i), 1 * scale);
  135. }
  136. // Button
  137. Ref<StyleBox> sb_button_normal = sb_expand(make_stylebox(button_normal_png, 4, 4, 4, 4, 6, 3, 6, 3), 2, 2, 2, 2);
  138. Ref<StyleBox> sb_button_pressed = sb_expand(make_stylebox(button_pressed_png, 4, 4, 4, 4, 6, 3, 6, 3), 2, 2, 2, 2);
  139. Ref<StyleBox> sb_button_hover = sb_expand(make_stylebox(button_hover_png, 4, 4, 4, 4, 6, 2, 6, 2), 2, 2, 2, 2);
  140. Ref<StyleBox> sb_button_disabled = sb_expand(make_stylebox(button_disabled_png, 4, 4, 4, 4, 6, 2, 6, 2), 2, 2, 2, 2);
  141. Ref<StyleBox> sb_button_focus = sb_expand(make_stylebox(button_focus_png, 4, 4, 4, 4, 6, 2, 6, 2), 2, 2, 2, 2);
  142. theme->set_stylebox("normal", "Button", sb_button_normal);
  143. theme->set_stylebox("pressed", "Button", sb_button_pressed);
  144. theme->set_stylebox("hover", "Button", sb_button_hover);
  145. theme->set_stylebox("disabled", "Button", sb_button_disabled);
  146. theme->set_stylebox("focus", "Button", sb_button_focus);
  147. theme->set_font("font", "Button", Ref<Font>());
  148. theme->set_font_size("font_size", "Button", -1);
  149. theme->set_constant("outline_size", "Button", 0 * scale);
  150. theme->set_color("font_color", "Button", control_font_color);
  151. theme->set_color("font_pressed_color", "Button", control_font_pressed_color);
  152. theme->set_color("font_hover_color", "Button", control_font_hover_color);
  153. theme->set_color("font_hover_pressed_color", "Button", control_font_pressed_color);
  154. theme->set_color("font_disabled_color", "Button", control_font_disabled_color);
  155. theme->set_color("font_outline_color", "Button", Color(1, 1, 1));
  156. theme->set_color("icon_normal_color", "Button", Color(1, 1, 1, 1));
  157. theme->set_color("icon_pressed_color", "Button", Color(1, 1, 1, 1));
  158. theme->set_color("icon_hover_color", "Button", Color(1, 1, 1, 1));
  159. theme->set_color("icon_hover_pressed_color", "Button", Color(1, 1, 1, 1));
  160. theme->set_color("icon_disabled_color", "Button", Color(1, 1, 1, 1));
  161. theme->set_constant("hseparation", "Button", 2 * scale);
  162. // LinkButton
  163. theme->set_stylebox("focus", "LinkButton", focus);
  164. theme->set_font("font", "LinkButton", Ref<Font>());
  165. theme->set_font_size("font_size", "LinkButton", -1);
  166. theme->set_color("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_outline_color", "LinkButton", Color(1, 1, 1));
  170. theme->set_constant("outline_size", "LinkButton", 0);
  171. theme->set_constant("underline_spacing", "LinkButton", 2 * scale);
  172. // ColorPickerButton
  173. theme->set_stylebox("normal", "ColorPickerButton", sb_button_normal);
  174. theme->set_stylebox("pressed", "ColorPickerButton", sb_button_pressed);
  175. theme->set_stylebox("hover", "ColorPickerButton", sb_button_hover);
  176. theme->set_stylebox("disabled", "ColorPickerButton", sb_button_disabled);
  177. theme->set_stylebox("focus", "ColorPickerButton", sb_button_focus);
  178. theme->set_font("font", "ColorPickerButton", Ref<Font>());
  179. theme->set_font_size("font_size", "ColorPickerButton", -1);
  180. theme->set_color("font_color", "ColorPickerButton", Color(1, 1, 1, 1));
  181. theme->set_color("font_pressed_color", "ColorPickerButton", Color(0.8, 0.8, 0.8, 1));
  182. theme->set_color("font_hover_color", "ColorPickerButton", Color(1, 1, 1, 1));
  183. theme->set_color("font_disabled_color", "ColorPickerButton", Color(0.9, 0.9, 0.9, 0.3));
  184. theme->set_color("font_outline_color", "ColorPickerButton", Color(1, 1, 1));
  185. theme->set_constant("hseparation", "ColorPickerButton", 2 * scale);
  186. theme->set_constant("outline_size", "ColorPickerButton", 0);
  187. // OptionButton
  188. Ref<StyleBox> sb_optbutton_focus = sb_expand(make_stylebox(button_focus_png, 4, 4, 4, 4, 6, 2, 6, 2), 2, 2, 2, 2);
  189. theme->set_stylebox("focus", "OptionButton", sb_optbutton_focus);
  190. Ref<StyleBox> sb_optbutton_normal = sb_expand(make_stylebox(option_button_normal_png, 4, 4, 21, 4, 6, 3, 9, 3), 2, 2, 2, 2);
  191. Ref<StyleBox> sb_optbutton_pressed = sb_expand(make_stylebox(option_button_pressed_png, 4, 4, 21, 4, 6, 3, 9, 3), 2, 2, 2, 2);
  192. Ref<StyleBox> sb_optbutton_hover = sb_expand(make_stylebox(option_button_hover_png, 4, 4, 21, 4, 6, 2, 9, 2), 2, 2, 2, 2);
  193. Ref<StyleBox> sb_optbutton_disabled = sb_expand(make_stylebox(option_button_disabled_png, 4, 4, 21, 4, 6, 2, 9, 2), 2, 2, 2, 2);
  194. theme->set_stylebox("normal", "OptionButton", sb_optbutton_normal);
  195. theme->set_stylebox("pressed", "OptionButton", sb_optbutton_pressed);
  196. theme->set_stylebox("hover", "OptionButton", sb_optbutton_hover);
  197. theme->set_stylebox("disabled", "OptionButton", sb_optbutton_disabled);
  198. Ref<StyleBox> sb_optbutton_normal_mirrored = sb_expand(make_stylebox(option_button_normal_mirrored_png, 21, 4, 4, 4, 9, 3, 6, 3), 2, 2, 2, 2);
  199. Ref<StyleBox> sb_optbutton_pressed_mirrored = sb_expand(make_stylebox(option_button_pressed_mirrored_png, 21, 4, 4, 4, 9, 3, 6, 3), 2, 2, 2, 2);
  200. Ref<StyleBox> sb_optbutton_hover_mirrored = sb_expand(make_stylebox(option_button_hover_mirrored_png, 21, 4, 4, 4, 9, 2, 6, 2), 2, 2, 2, 2);
  201. Ref<StyleBox> sb_optbutton_disabled_mirrored = sb_expand(make_stylebox(option_button_disabled_mirrored_png, 21, 4, 4, 4, 9, 2, 6, 2), 2, 2, 2, 2);
  202. theme->set_stylebox("normal_mirrored", "OptionButton", sb_optbutton_normal_mirrored);
  203. theme->set_stylebox("pressed_mirrored", "OptionButton", sb_optbutton_pressed_mirrored);
  204. theme->set_stylebox("hover_mirrored", "OptionButton", sb_optbutton_hover_mirrored);
  205. theme->set_stylebox("disabled_mirrored", "OptionButton", sb_optbutton_disabled_mirrored);
  206. theme->set_icon("arrow", "OptionButton", make_icon(option_arrow_png));
  207. theme->set_font("font", "OptionButton", Ref<Font>());
  208. theme->set_font_size("font_size", "OptionButton", -1);
  209. theme->set_color("font_color", "OptionButton", control_font_color);
  210. theme->set_color("font_pressed_color", "OptionButton", control_font_pressed_color);
  211. theme->set_color("font_hover_color", "OptionButton", control_font_hover_color);
  212. theme->set_color("font_disabled_color", "OptionButton", control_font_disabled_color);
  213. theme->set_color("font_outline_color", "OptionButton", Color(1, 1, 1));
  214. theme->set_constant("hseparation", "OptionButton", 2 * scale);
  215. theme->set_constant("arrow_margin", "OptionButton", 2 * scale);
  216. theme->set_constant("outline_size", "OptionButton", 0);
  217. // MenuButton
  218. theme->set_stylebox("normal", "MenuButton", sb_button_normal);
  219. theme->set_stylebox("pressed", "MenuButton", sb_button_pressed);
  220. theme->set_stylebox("hover", "MenuButton", sb_button_hover);
  221. theme->set_stylebox("disabled", "MenuButton", sb_button_disabled);
  222. theme->set_stylebox("focus", "MenuButton", sb_button_focus);
  223. theme->set_font("font", "MenuButton", Ref<Font>());
  224. theme->set_font_size("font_size", "MenuButton", -1);
  225. theme->set_color("font_color", "MenuButton", control_font_color);
  226. theme->set_color("font_pressed_color", "MenuButton", control_font_pressed_color);
  227. theme->set_color("font_hover_color", "MenuButton", control_font_hover_color);
  228. theme->set_color("font_disabled_color", "MenuButton", Color(1, 1, 1, 0.3));
  229. theme->set_color("font_outline_color", "MenuButton", Color(1, 1, 1));
  230. theme->set_constant("hseparation", "MenuButton", 3 * scale);
  231. theme->set_constant("outline_size", "MenuButton", 0);
  232. // CheckBox
  233. Ref<StyleBox> cbx_empty = memnew(StyleBoxEmpty);
  234. cbx_empty->set_default_margin(SIDE_LEFT, 4 * scale);
  235. cbx_empty->set_default_margin(SIDE_RIGHT, 4 * scale);
  236. cbx_empty->set_default_margin(SIDE_TOP, 4 * scale);
  237. cbx_empty->set_default_margin(SIDE_BOTTOM, 4 * scale);
  238. Ref<StyleBox> cbx_focus = focus;
  239. cbx_focus->set_default_margin(SIDE_LEFT, 4 * scale);
  240. cbx_focus->set_default_margin(SIDE_RIGHT, 4 * scale);
  241. cbx_focus->set_default_margin(SIDE_TOP, 4 * scale);
  242. cbx_focus->set_default_margin(SIDE_BOTTOM, 4 * scale);
  243. theme->set_stylebox("normal", "CheckBox", cbx_empty);
  244. theme->set_stylebox("pressed", "CheckBox", cbx_empty);
  245. theme->set_stylebox("disabled", "CheckBox", cbx_empty);
  246. theme->set_stylebox("hover", "CheckBox", cbx_empty);
  247. theme->set_stylebox("hover_pressed", "CheckBox", cbx_empty);
  248. theme->set_stylebox("focus", "CheckBox", cbx_focus);
  249. theme->set_icon("checked", "CheckBox", make_icon(checked_png));
  250. theme->set_icon("checked_disabled", "CheckBox", make_icon(checked_disabled_png));
  251. theme->set_icon("unchecked", "CheckBox", make_icon(unchecked_png));
  252. theme->set_icon("unchecked_disabled", "CheckBox", make_icon(unchecked_disabled_png));
  253. theme->set_icon("radio_checked", "CheckBox", make_icon(radio_checked_png));
  254. theme->set_icon("radio_checked_disabled", "CheckBox", make_icon(radio_checked_disabled_png));
  255. theme->set_icon("radio_unchecked", "CheckBox", make_icon(radio_unchecked_png));
  256. theme->set_icon("radio_unchecked_disabled", "CheckBox", make_icon(radio_unchecked_disabled_png));
  257. theme->set_font("font", "CheckBox", Ref<Font>());
  258. theme->set_font_size("font_size", "CheckBox", -1);
  259. theme->set_color("font_color", "CheckBox", control_font_color);
  260. theme->set_color("font_pressed_color", "CheckBox", control_font_pressed_color);
  261. theme->set_color("font_hover_color", "CheckBox", control_font_hover_color);
  262. theme->set_color("font_hover_pressed_color", "CheckBox", control_font_pressed_color);
  263. theme->set_color("font_disabled_color", "CheckBox", control_font_disabled_color);
  264. theme->set_color("font_outline_color", "CheckBox", Color(1, 1, 1));
  265. theme->set_constant("hseparation", "CheckBox", 4 * scale);
  266. theme->set_constant("check_vadjust", "CheckBox", 0 * scale);
  267. theme->set_constant("outline_size", "CheckBox", 0);
  268. // CheckButton
  269. Ref<StyleBox> cb_empty = memnew(StyleBoxEmpty);
  270. cb_empty->set_default_margin(SIDE_LEFT, 6 * scale);
  271. cb_empty->set_default_margin(SIDE_RIGHT, 6 * scale);
  272. cb_empty->set_default_margin(SIDE_TOP, 4 * scale);
  273. cb_empty->set_default_margin(SIDE_BOTTOM, 4 * scale);
  274. theme->set_stylebox("normal", "CheckButton", cb_empty);
  275. theme->set_stylebox("pressed", "CheckButton", cb_empty);
  276. theme->set_stylebox("disabled", "CheckButton", cb_empty);
  277. theme->set_stylebox("hover", "CheckButton", cb_empty);
  278. theme->set_stylebox("hover_pressed", "CheckButton", cb_empty);
  279. theme->set_stylebox("focus", "CheckButton", focus);
  280. theme->set_icon("on", "CheckButton", make_icon(toggle_on_png));
  281. theme->set_icon("on_disabled", "CheckButton", make_icon(toggle_on_disabled_png));
  282. theme->set_icon("off", "CheckButton", make_icon(toggle_off_png));
  283. theme->set_icon("off_disabled", "CheckButton", make_icon(toggle_off_disabled_png));
  284. theme->set_icon("on_mirrored", "CheckButton", make_icon(toggle_on_mirrored_png));
  285. theme->set_icon("on_disabled_mirrored", "CheckButton", make_icon(toggle_on_disabled_mirrored_png));
  286. theme->set_icon("off_mirrored", "CheckButton", make_icon(toggle_off_mirrored_png));
  287. theme->set_icon("off_disabled_mirrored", "CheckButton", make_icon(toggle_off_disabled_mirrored_png));
  288. theme->set_font("font", "CheckButton", Ref<Font>());
  289. theme->set_font_size("font_size", "CheckButton", -1);
  290. theme->set_color("font_color", "CheckButton", control_font_color);
  291. theme->set_color("font_pressed_color", "CheckButton", control_font_pressed_color);
  292. theme->set_color("font_hover_color", "CheckButton", control_font_hover_color);
  293. theme->set_color("font_hover_pressed_color", "CheckButton", control_font_pressed_color);
  294. theme->set_color("font_disabled_color", "CheckButton", control_font_disabled_color);
  295. theme->set_color("font_outline_color", "CheckButton", Color(1, 1, 1));
  296. theme->set_constant("hseparation", "CheckButton", 4 * scale);
  297. theme->set_constant("check_vadjust", "CheckButton", 0 * scale);
  298. theme->set_constant("outline_size", "CheckButton", 0);
  299. // Label
  300. theme->set_stylebox("normal", "Label", memnew(StyleBoxEmpty));
  301. theme->set_font("font", "Label", Ref<Font>());
  302. theme->set_font_size("font_size", "Label", -1);
  303. theme->set_color("font_color", "Label", Color(1, 1, 1));
  304. theme->set_color("font_shadow_color", "Label", Color(0, 0, 0, 0));
  305. theme->set_color("font_outline_color", "Label", Color(1, 1, 1));
  306. theme->set_constant("shadow_offset_x", "Label", 1 * scale);
  307. theme->set_constant("shadow_offset_y", "Label", 1 * scale);
  308. theme->set_constant("outline_size", "Label", 0);
  309. theme->set_constant("shadow_outline_size", "Label", 1 * scale);
  310. theme->set_constant("line_spacing", "Label", 3 * scale);
  311. // LineEdit
  312. theme->set_stylebox("normal", "LineEdit", make_stylebox(line_edit_png, 5, 5, 5, 5));
  313. theme->set_stylebox("focus", "LineEdit", focus);
  314. theme->set_stylebox("read_only", "LineEdit", make_stylebox(line_edit_disabled_png, 6, 6, 6, 6));
  315. theme->set_font("font", "LineEdit", Ref<Font>());
  316. theme->set_font_size("font_size", "LineEdit", -1);
  317. theme->set_color("font_color", "LineEdit", control_font_color);
  318. theme->set_color("font_selected_color", "LineEdit", Color(0, 0, 0));
  319. theme->set_color("font_uneditable_color", "LineEdit", Color(control_font_color.r, control_font_color.g, control_font_color.b, 0.5f));
  320. theme->set_color("font_outline_color", "LineEdit", Color(1, 1, 1));
  321. theme->set_color("caret_color", "LineEdit", control_font_hover_color);
  322. theme->set_color("selection_color", "LineEdit", control_selection_color);
  323. theme->set_color("clear_button_color", "LineEdit", control_font_color);
  324. theme->set_color("clear_button_color_pressed", "LineEdit", control_font_pressed_color);
  325. theme->set_constant("minimum_character_width", "LineEdit", 4);
  326. theme->set_constant("outline_size", "LineEdit", 0);
  327. theme->set_icon("clear", "LineEdit", make_icon(line_edit_clear_png));
  328. // ProgressBar
  329. theme->set_stylebox("bg", "ProgressBar", make_stylebox(progress_bar_png, 4, 4, 4, 4, 0, 0, 0, 0));
  330. theme->set_stylebox("fg", "ProgressBar", make_stylebox(progress_fill_png, 6, 6, 6, 6, 2, 1, 2, 1));
  331. theme->set_font("font", "ProgressBar", Ref<Font>());
  332. theme->set_font_size("font_size", "ProgressBar", -1);
  333. theme->set_color("font_color", "ProgressBar", control_font_hover_color);
  334. theme->set_color("font_shadow_color", "ProgressBar", Color(0, 0, 0));
  335. theme->set_color("font_outline_color", "ProgressBar", Color(1, 1, 1));
  336. theme->set_constant("outline_size", "ProgressBar", 0);
  337. // TextEdit
  338. theme->set_stylebox("normal", "TextEdit", make_stylebox(tree_bg_png, 3, 3, 3, 3, 0, 0, 0, 0));
  339. theme->set_stylebox("focus", "TextEdit", focus);
  340. theme->set_stylebox("read_only", "TextEdit", make_stylebox(tree_bg_disabled_png, 4, 4, 4, 4, 0, 0, 0, 0));
  341. theme->set_icon("tab", "TextEdit", make_icon(tab_png));
  342. theme->set_icon("space", "TextEdit", make_icon(space_png));
  343. theme->set_font("font", "TextEdit", Ref<Font>());
  344. theme->set_font_size("font_size", "TextEdit", -1);
  345. theme->set_color("background_color", "TextEdit", Color(0, 0, 0, 0));
  346. theme->set_color("font_color", "TextEdit", control_font_color);
  347. theme->set_color("font_selected_color", "TextEdit", Color(0, 0, 0));
  348. theme->set_color("font_readonly_color", "TextEdit", Color(control_font_color.r, control_font_color.g, control_font_color.b, 0.5f));
  349. theme->set_color("font_outline_color", "TextEdit", Color(1, 1, 1));
  350. theme->set_color("selection_color", "TextEdit", control_selection_color);
  351. theme->set_color("current_line_color", "TextEdit", Color(0.25, 0.25, 0.26, 0.8));
  352. theme->set_color("caret_color", "TextEdit", control_font_color);
  353. theme->set_color("caret_background_color", "TextEdit", Color(0, 0, 0));
  354. theme->set_color("brace_mismatch_color", "TextEdit", Color(1, 0.2, 0.2));
  355. theme->set_color("word_highlighted_color", "TextEdit", Color(0.8, 0.9, 0.9, 0.15));
  356. theme->set_constant("line_spacing", "TextEdit", 4 * scale);
  357. theme->set_constant("outline_size", "TextEdit", 0);
  358. // CodeEdit
  359. theme->set_stylebox("normal", "CodeEdit", make_stylebox(tree_bg_png, 3, 3, 3, 3, 0, 0, 0, 0));
  360. theme->set_stylebox("focus", "CodeEdit", focus);
  361. theme->set_stylebox("read_only", "CodeEdit", make_stylebox(tree_bg_disabled_png, 4, 4, 4, 4, 0, 0, 0, 0));
  362. theme->set_stylebox("completion", "CodeEdit", make_stylebox(tree_bg_png, 3, 3, 3, 3, 0, 0, 0, 0));
  363. theme->set_icon("tab", "CodeEdit", make_icon(tab_png));
  364. theme->set_icon("space", "CodeEdit", make_icon(space_png));
  365. theme->set_icon("breakpoint", "CodeEdit", make_icon(graph_port_png));
  366. theme->set_icon("bookmark", "CodeEdit", make_icon(bookmark_png));
  367. theme->set_icon("executing_line", "CodeEdit", make_icon(arrow_right_png));
  368. theme->set_icon("can_fold", "CodeEdit", make_icon(arrow_down_png));
  369. theme->set_icon("folded", "CodeEdit", make_icon(arrow_right_png));
  370. theme->set_icon("folded_eol_icon", "CodeEdit", make_icon(ellipsis_png));
  371. theme->set_font("font", "CodeEdit", Ref<Font>());
  372. theme->set_font_size("font_size", "CodeEdit", -1);
  373. theme->set_color("background_color", "CodeEdit", Color(0, 0, 0, 0));
  374. theme->set_color("completion_background_color", "CodeEdit", Color(0.17, 0.16, 0.2));
  375. theme->set_color("completion_selected_color", "CodeEdit", Color(0.26, 0.26, 0.27));
  376. theme->set_color("completion_existing_color", "CodeEdit", Color(0.87, 0.87, 0.87, 0.13));
  377. theme->set_color("completion_scroll_color", "CodeEdit", control_font_pressed_color);
  378. theme->set_color("completion_font_color", "CodeEdit", Color(0.67, 0.67, 0.67));
  379. theme->set_color("font_color", "CodeEdit", control_font_color);
  380. theme->set_color("font_selected_color", "CodeEdit", Color(0, 0, 0));
  381. theme->set_color("font_readonly_color", "CodeEdit", Color(control_font_color.r, control_font_color.g, control_font_color.b, 0.5f));
  382. theme->set_color("font_outline_color", "CodeEdit", Color(1, 1, 1));
  383. theme->set_color("selection_color", "CodeEdit", control_selection_color);
  384. theme->set_color("bookmark_color", "CodeEdit", Color(0.5, 0.64, 1, 0.8));
  385. theme->set_color("breakpoint_color", "CodeEdit", Color(0.9, 0.29, 0.3));
  386. theme->set_color("executing_line_color", "CodeEdit", Color(0.98, 0.89, 0.27));
  387. theme->set_color("current_line_color", "CodeEdit", Color(0.25, 0.25, 0.26, 0.8));
  388. theme->set_color("code_folding_color", "CodeEdit", Color(0.8, 0.8, 0.8, 0.8));
  389. theme->set_color("caret_color", "CodeEdit", control_font_color);
  390. theme->set_color("caret_background_color", "CodeEdit", Color(0, 0, 0));
  391. theme->set_color("brace_mismatch_color", "CodeEdit", Color(1, 0.2, 0.2));
  392. theme->set_color("line_number_color", "CodeEdit", Color(0.67, 0.67, 0.67, 0.4));
  393. theme->set_color("safe_line_number_color", "CodeEdit", Color(0.67, 0.78, 0.67, 0.6));
  394. theme->set_color("word_highlighted_color", "CodeEdit", Color(0.8, 0.9, 0.9, 0.15));
  395. theme->set_constant("completion_lines", "CodeEdit", 7);
  396. theme->set_constant("completion_max_width", "CodeEdit", 50);
  397. theme->set_constant("completion_scroll_width", "CodeEdit", 3);
  398. theme->set_constant("line_spacing", "CodeEdit", 4 * scale);
  399. theme->set_constant("outline_size", "CodeEdit", 0);
  400. Ref<Texture2D> empty_icon = memnew(ImageTexture);
  401. // HScrollBar
  402. theme->set_stylebox("scroll", "HScrollBar", make_stylebox(scroll_bg_png, 5, 5, 5, 5, 0, 0, 0, 0));
  403. theme->set_stylebox("scroll_focus", "HScrollBar", make_stylebox(scroll_bg_png, 5, 5, 5, 5, 0, 0, 0, 0));
  404. theme->set_stylebox("grabber", "HScrollBar", make_stylebox(scroll_grabber_png, 5, 5, 5, 5, 2, 2, 2, 2));
  405. theme->set_stylebox("grabber_highlight", "HScrollBar", make_stylebox(scroll_grabber_hl_png, 5, 5, 5, 5, 2, 2, 2, 2));
  406. theme->set_stylebox("grabber_pressed", "HScrollBar", make_stylebox(scroll_grabber_pressed_png, 5, 5, 5, 5, 2, 2, 2, 2));
  407. theme->set_icon("increment", "HScrollBar", empty_icon);
  408. theme->set_icon("increment_highlight", "HScrollBar", empty_icon);
  409. theme->set_icon("decrement", "HScrollBar", empty_icon);
  410. theme->set_icon("decrement_highlight", "HScrollBar", empty_icon);
  411. // VScrollBar
  412. theme->set_stylebox("scroll", "VScrollBar", make_stylebox(scroll_bg_png, 5, 5, 5, 5, 0, 0, 0, 0));
  413. theme->set_stylebox("scroll_focus", "VScrollBar", make_stylebox(scroll_bg_png, 5, 5, 5, 5, 0, 0, 0, 0));
  414. theme->set_stylebox("grabber", "VScrollBar", make_stylebox(scroll_grabber_png, 5, 5, 5, 5, 2, 2, 2, 2));
  415. theme->set_stylebox("grabber_highlight", "VScrollBar", make_stylebox(scroll_grabber_hl_png, 5, 5, 5, 5, 2, 2, 2, 2));
  416. theme->set_stylebox("grabber_pressed", "VScrollBar", make_stylebox(scroll_grabber_pressed_png, 5, 5, 5, 5, 2, 2, 2, 2));
  417. theme->set_icon("increment", "VScrollBar", empty_icon);
  418. theme->set_icon("increment_highlight", "VScrollBar", empty_icon);
  419. theme->set_icon("decrement", "VScrollBar", empty_icon);
  420. theme->set_icon("decrement_highlight", "VScrollBar", empty_icon);
  421. // HSlider
  422. theme->set_stylebox("slider", "HSlider", make_stylebox(hslider_bg_png, 4, 4, 4, 4));
  423. theme->set_stylebox("grabber_area", "HSlider", make_stylebox(hslider_bg_png, 4, 4, 4, 4));
  424. theme->set_stylebox("grabber_area_highlight", "HSlider", make_stylebox(hslider_bg_png, 4, 4, 4, 4));
  425. theme->set_icon("grabber", "HSlider", make_icon(hslider_grabber_png));
  426. theme->set_icon("grabber_highlight", "HSlider", make_icon(hslider_grabber_hl_png));
  427. theme->set_icon("grabber_disabled", "HSlider", make_icon(hslider_grabber_disabled_png));
  428. theme->set_icon("tick", "HSlider", make_icon(hslider_tick_png));
  429. // VSlider
  430. theme->set_stylebox("slider", "VSlider", make_stylebox(vslider_bg_png, 4, 4, 4, 4));
  431. theme->set_stylebox("grabber_area", "VSlider", make_stylebox(vslider_bg_png, 4, 4, 4, 4));
  432. theme->set_stylebox("grabber_area_highlight", "VSlider", make_stylebox(vslider_bg_png, 4, 4, 4, 4));
  433. theme->set_icon("grabber", "VSlider", make_icon(vslider_grabber_png));
  434. theme->set_icon("grabber_highlight", "VSlider", make_icon(vslider_grabber_hl_png));
  435. theme->set_icon("grabber_disabled", "VSlider", make_icon(vslider_grabber_disabled_png));
  436. theme->set_icon("tick", "VSlider", make_icon(vslider_tick_png));
  437. // SpinBox
  438. theme->set_icon("updown", "SpinBox", make_icon(spinbox_updown_png));
  439. // ScrollContainer
  440. Ref<StyleBoxEmpty> empty;
  441. empty.instance();
  442. theme->set_stylebox("bg", "ScrollContainer", empty);
  443. // WindowDialog
  444. theme->set_stylebox("panel", "Window", default_style);
  445. theme->set_stylebox("window_panel", "Window", sb_expand(make_stylebox(popup_window_png, 10, 26, 10, 8), 8, 24, 8, 6));
  446. theme->set_constant("scaleborder_size", "Window", 4 * scale);
  447. theme->set_font("title_font", "Window", large_font);
  448. theme->set_font_size("title_font_size", "Window", -1);
  449. theme->set_color("title_color", "Window", Color(0, 0, 0));
  450. theme->set_color("title_outline_modulate", "Window", Color(1, 1, 1));
  451. theme->set_constant("title_outline_size", "Window", 0);
  452. theme->set_constant("title_height", "Window", 20 * scale);
  453. theme->set_constant("resize_margin", "Window", 4 * scale);
  454. theme->set_icon("close", "Window", make_icon(close_png));
  455. theme->set_icon("close_highlight", "Window", make_icon(close_hl_png));
  456. theme->set_constant("close_h_ofs", "Window", 18 * scale);
  457. theme->set_constant("close_v_ofs", "Window", 18 * scale);
  458. // File Dialog
  459. theme->set_icon("parent_folder", "FileDialog", make_icon(icon_parent_folder_png));
  460. theme->set_icon("back_folder", "FileDialog", make_icon(arrow_left_png));
  461. theme->set_icon("forward_folder", "FileDialog", make_icon(arrow_right_png));
  462. theme->set_icon("reload", "FileDialog", make_icon(icon_reload_png));
  463. theme->set_icon("toggle_hidden", "FileDialog", make_icon(icon_visibility_png));
  464. // Popup
  465. Ref<StyleBoxTexture> style_pp = sb_expand(make_stylebox(popup_bg_png, 5, 5, 5, 5, 4, 4, 4, 4), 2, 2, 2, 2);
  466. Ref<StyleBoxTexture> selected = make_stylebox(selection_png, 6, 6, 6, 6);
  467. for (int i = 0; i < 4; i++) {
  468. selected->set_expand_margin_size(Side(i), 2 * scale);
  469. }
  470. theme->set_stylebox("panel", "PopupPanel", style_pp);
  471. // PopupDialog
  472. Ref<StyleBoxTexture> style_pd = make_stylebox(popup_bg_png, 4, 4, 4, 4, 10, 10, 10, 10);
  473. theme->set_stylebox("panel", "PopupDialog", style_pd);
  474. // PopupMenu
  475. theme->set_stylebox("panel", "PopupMenu", style_pd);
  476. theme->set_stylebox("panel_disabled", "PopupMenu", make_stylebox(popup_bg_disabled_png, 4, 4, 4, 4));
  477. theme->set_stylebox("hover", "PopupMenu", selected);
  478. theme->set_stylebox("separator", "PopupMenu", make_stylebox(vseparator_png, 3, 3, 3, 3));
  479. theme->set_stylebox("labeled_separator_left", "PopupMenu", make_stylebox(vseparator_png, 0, 0, 0, 0));
  480. theme->set_stylebox("labeled_separator_right", "PopupMenu", make_stylebox(vseparator_png, 0, 0, 0, 0));
  481. theme->set_icon("checked", "PopupMenu", make_icon(checked_png));
  482. theme->set_icon("unchecked", "PopupMenu", make_icon(unchecked_png));
  483. theme->set_icon("radio_checked", "PopupMenu", make_icon(radio_checked_png));
  484. theme->set_icon("radio_unchecked", "PopupMenu", make_icon(radio_unchecked_png));
  485. theme->set_icon("submenu", "PopupMenu", make_icon(submenu_png));
  486. theme->set_icon("submenu_mirrored", "PopupMenu", make_icon(submenu_mirrored_png));
  487. theme->set_font("font", "PopupMenu", Ref<Font>());
  488. theme->set_font_size("font_size", "PopupMenu", -1);
  489. theme->set_color("font_color", "PopupMenu", control_font_color);
  490. theme->set_color("font_accelerator_color", "PopupMenu", Color(0.7, 0.7, 0.7, 0.8));
  491. theme->set_color("font_disabled_color", "PopupMenu", Color(0.4, 0.4, 0.4, 0.8));
  492. theme->set_color("font_hover_color", "PopupMenu", control_font_color);
  493. theme->set_color("font_separator_color", "PopupMenu", control_font_color);
  494. theme->set_color("font_outline_color", "PopupMenu", Color(1, 1, 1));
  495. theme->set_constant("hseparation", "PopupMenu", 4 * scale);
  496. theme->set_constant("vseparation", "PopupMenu", 4 * scale);
  497. theme->set_constant("outline_size", "PopupMenu", 0);
  498. theme->set_constant("item_start_padding", "PopupMenu", 2 * scale);
  499. theme->set_constant("item_end_padding", "PopupMenu", 2 * scale);
  500. // GraphNode
  501. Ref<StyleBoxTexture> graphsb = make_stylebox(graph_node_png, 6, 24, 6, 5, 16, 24, 16, 6);
  502. Ref<StyleBoxTexture> graphsbcomment = make_stylebox(graph_node_comment_png, 6, 24, 6, 5, 16, 24, 16, 6);
  503. Ref<StyleBoxTexture> graphsbcommentselected = make_stylebox(graph_node_comment_focus_png, 6, 24, 6, 5, 16, 24, 16, 6);
  504. Ref<StyleBoxTexture> graphsbselected = make_stylebox(graph_node_selected_png, 6, 24, 6, 5, 16, 24, 16, 6);
  505. Ref<StyleBoxTexture> graphsbdefault = make_stylebox(graph_node_default_png, 4, 4, 4, 4, 6, 4, 4, 4);
  506. Ref<StyleBoxTexture> graphsbdeffocus = make_stylebox(graph_node_default_focus_png, 4, 4, 4, 4, 6, 4, 4, 4);
  507. Ref<StyleBoxTexture> graph_bpoint = make_stylebox(graph_node_breakpoint_png, 6, 24, 6, 5, 16, 24, 16, 6);
  508. Ref<StyleBoxTexture> graph_position = make_stylebox(graph_node_position_png, 6, 24, 6, 5, 16, 24, 16, 6);
  509. //graphsb->set_expand_margin_size(SIDE_LEFT,10);
  510. //graphsb->set_expand_margin_size(SIDE_RIGHT,10);
  511. theme->set_stylebox("frame", "GraphNode", graphsb);
  512. theme->set_stylebox("selectedframe", "GraphNode", graphsbselected);
  513. theme->set_stylebox("defaultframe", "GraphNode", graphsbdefault);
  514. theme->set_stylebox("defaultfocus", "GraphNode", graphsbdeffocus);
  515. theme->set_stylebox("comment", "GraphNode", graphsbcomment);
  516. theme->set_stylebox("commentfocus", "GraphNode", graphsbcommentselected);
  517. theme->set_stylebox("breakpoint", "GraphNode", graph_bpoint);
  518. theme->set_stylebox("position", "GraphNode", graph_position);
  519. theme->set_constant("separation", "GraphNode", 1 * scale);
  520. theme->set_icon("port", "GraphNode", make_icon(graph_port_png));
  521. theme->set_icon("close", "GraphNode", make_icon(graph_node_close_png));
  522. theme->set_icon("resizer", "GraphNode", make_icon(window_resizer_png));
  523. theme->set_font("title_font", "GraphNode", Ref<Font>());
  524. theme->set_color("title_color", "GraphNode", Color(0, 0, 0, 1));
  525. theme->set_color("close_color", "GraphNode", Color(0, 0, 0, 1));
  526. theme->set_color("resizer_color", "GraphNode", Color(0, 0, 0, 1));
  527. theme->set_constant("title_offset", "GraphNode", 20 * scale);
  528. theme->set_constant("close_offset", "GraphNode", 18 * scale);
  529. theme->set_constant("port_offset", "GraphNode", 3 * scale);
  530. // Tree
  531. Ref<StyleBoxTexture> tree_selected = make_stylebox(selection_png, 4, 4, 4, 4, 8, 0, 8, 0);
  532. Ref<StyleBoxTexture> tree_selected_oof = make_stylebox(selection_oof_png, 4, 4, 4, 4, 8, 0, 8, 0);
  533. theme->set_stylebox("bg", "Tree", make_stylebox(tree_bg_png, 4, 4, 4, 5));
  534. theme->set_stylebox("bg_focus", "Tree", focus);
  535. theme->set_stylebox("selected", "Tree", tree_selected_oof);
  536. theme->set_stylebox("selected_focus", "Tree", tree_selected);
  537. theme->set_stylebox("cursor", "Tree", focus);
  538. theme->set_stylebox("cursor_unfocused", "Tree", focus);
  539. theme->set_stylebox("button_pressed", "Tree", make_stylebox(button_pressed_png, 4, 4, 4, 4));
  540. theme->set_stylebox("title_button_normal", "Tree", make_stylebox(tree_title_png, 4, 4, 4, 4));
  541. theme->set_stylebox("title_button_pressed", "Tree", make_stylebox(tree_title_pressed_png, 4, 4, 4, 4));
  542. theme->set_stylebox("title_button_hover", "Tree", make_stylebox(tree_title_png, 4, 4, 4, 4));
  543. theme->set_stylebox("custom_button", "Tree", sb_button_normal);
  544. theme->set_stylebox("custom_button_pressed", "Tree", sb_button_pressed);
  545. theme->set_stylebox("custom_button_hover", "Tree", sb_button_hover);
  546. theme->set_icon("checked", "Tree", make_icon(checked_png));
  547. theme->set_icon("unchecked", "Tree", make_icon(unchecked_png));
  548. theme->set_icon("updown", "Tree", make_icon(updown_png));
  549. theme->set_icon("select_arrow", "Tree", make_icon(dropdown_png));
  550. theme->set_icon("arrow", "Tree", make_icon(arrow_down_png));
  551. theme->set_icon("arrow_collapsed", "Tree", make_icon(arrow_right_png));
  552. theme->set_icon("arrow_collapsed_mirrored", "Tree", make_icon(arrow_left_png));
  553. theme->set_font("title_button_font", "Tree", Ref<Font>());
  554. theme->set_font("font", "Tree", Ref<Font>());
  555. theme->set_font_size("font_size", "Tree", -1);
  556. theme->set_color("title_button_color", "Tree", control_font_color);
  557. theme->set_color("font_color", "Tree", control_font_low_color);
  558. theme->set_color("font_selected_color", "Tree", control_font_pressed_color);
  559. theme->set_color("font_outline_color", "Tree", Color(1, 1, 1));
  560. theme->set_color("guide_color", "Tree", Color(0, 0, 0, 0.1));
  561. theme->set_color("drop_position_color", "Tree", Color(1, 0.3, 0.2));
  562. theme->set_color("relationship_line_color", "Tree", Color(0.27, 0.27, 0.27));
  563. theme->set_color("parent_hl_line_color", "Tree", Color(0.27, 0.27, 0.27));
  564. theme->set_color("children_hl_line_color", "Tree", Color(0.27, 0.27, 0.27));
  565. theme->set_color("custom_button_font_highlight", "Tree", control_font_hover_color);
  566. theme->set_constant("hseparation", "Tree", 4 * scale);
  567. theme->set_constant("vseparation", "Tree", 4 * scale);
  568. theme->set_constant("item_margin", "Tree", 12 * scale);
  569. theme->set_constant("button_margin", "Tree", 4 * scale);
  570. theme->set_constant("draw_relationship_lines", "Tree", 0);
  571. theme->set_constant("relationship_line_width", "Tree", 1);
  572. theme->set_constant("parent_hl_line_width", "Tree", 1);
  573. theme->set_constant("children_hl_line_width", "Tree", 1);
  574. theme->set_constant("parent_hl_line_margin", "Tree", 0);
  575. theme->set_constant("draw_guides", "Tree", 1);
  576. theme->set_constant("scroll_border", "Tree", 4);
  577. theme->set_constant("scroll_speed", "Tree", 12);
  578. theme->set_constant("outline_size", "Tree", 0);
  579. // ItemList
  580. Ref<StyleBoxTexture> item_selected = make_stylebox(selection_png, 4, 4, 4, 4, 8, 2, 8, 2);
  581. Ref<StyleBoxTexture> item_selected_oof = make_stylebox(selection_oof_png, 4, 4, 4, 4, 8, 2, 8, 2);
  582. theme->set_stylebox("bg", "ItemList", make_stylebox(tree_bg_png, 4, 4, 4, 5));
  583. theme->set_stylebox("bg_focus", "ItemList", focus);
  584. theme->set_constant("hseparation", "ItemList", 4);
  585. theme->set_constant("vseparation", "ItemList", 2);
  586. theme->set_constant("icon_margin", "ItemList", 4);
  587. theme->set_constant("line_separation", "ItemList", 2 * scale);
  588. theme->set_font("font", "ItemList", Ref<Font>());
  589. theme->set_font_size("font_size", "ItemList", -1);
  590. theme->set_color("font_color", "ItemList", control_font_lower_color);
  591. theme->set_color("font_selected_color", "ItemList", control_font_pressed_color);
  592. theme->set_color("font_outline_color", "ItemList", Color(1, 1, 1));
  593. theme->set_color("guide_color", "ItemList", Color(0, 0, 0, 0.1));
  594. theme->set_stylebox("selected", "ItemList", item_selected_oof);
  595. theme->set_stylebox("selected_focus", "ItemList", item_selected);
  596. theme->set_stylebox("cursor", "ItemList", focus);
  597. theme->set_stylebox("cursor_unfocused", "ItemList", focus);
  598. theme->set_constant("outline_size", "ItemList", 0);
  599. // TabContainer
  600. Ref<StyleBoxTexture> tc_sb = sb_expand(make_stylebox(tab_container_bg_png, 4, 4, 4, 4, 4, 4, 4, 4), 3, 3, 3, 3);
  601. tc_sb->set_expand_margin_size(SIDE_TOP, 2 * scale);
  602. tc_sb->set_default_margin(SIDE_TOP, 8 * scale);
  603. theme->set_stylebox("tab_selected", "TabContainer", sb_expand(make_stylebox(tab_current_png, 4, 4, 4, 1, 16, 4, 16, 4), 2, 2, 2, 2));
  604. theme->set_stylebox("tab_unselected", "TabContainer", sb_expand(make_stylebox(tab_behind_png, 5, 5, 5, 1, 16, 6, 16, 4), 3, 0, 3, 3));
  605. theme->set_stylebox("tab_disabled", "TabContainer", sb_expand(make_stylebox(tab_disabled_png, 5, 5, 5, 1, 16, 6, 16, 4), 3, 0, 3, 3));
  606. theme->set_stylebox("panel", "TabContainer", tc_sb);
  607. theme->set_icon("increment", "TabContainer", make_icon(scroll_button_right_png));
  608. theme->set_icon("increment_highlight", "TabContainer", make_icon(scroll_button_right_hl_png));
  609. theme->set_icon("decrement", "TabContainer", make_icon(scroll_button_left_png));
  610. theme->set_icon("decrement_highlight", "TabContainer", make_icon(scroll_button_left_hl_png));
  611. theme->set_icon("menu", "TabContainer", make_icon(tab_menu_png));
  612. theme->set_icon("menu_highlight", "TabContainer", make_icon(tab_menu_hl_png));
  613. theme->set_font("font", "TabContainer", Ref<Font>());
  614. theme->set_font_size("font_size", "TabContainer", -1);
  615. theme->set_color("font_selected_color", "TabContainer", control_font_hover_color);
  616. theme->set_color("font_unselected_color", "TabContainer", control_font_low_color);
  617. theme->set_color("font_disabled_color", "TabContainer", control_font_disabled_color);
  618. theme->set_color("font_outline_color", "TabContainer", Color(1, 1, 1));
  619. theme->set_constant("side_margin", "TabContainer", 8 * scale);
  620. theme->set_constant("icon_separation", "TabContainer", 4 * scale);
  621. theme->set_constant("outline_size", "TabContainer", 0);
  622. // Tabs
  623. theme->set_stylebox("tab_selected", "Tabs", sb_expand(make_stylebox(tab_current_png, 4, 3, 4, 1, 16, 3, 16, 2), 2, 2, 2, 2));
  624. theme->set_stylebox("tab_unselected", "Tabs", sb_expand(make_stylebox(tab_behind_png, 5, 4, 5, 1, 16, 5, 16, 2), 3, 3, 3, 3));
  625. theme->set_stylebox("tab_disabled", "Tabs", sb_expand(make_stylebox(tab_disabled_png, 5, 5, 5, 1, 16, 6, 16, 4), 3, 0, 3, 3));
  626. theme->set_stylebox("button_pressed", "Tabs", make_stylebox(button_pressed_png, 4, 4, 4, 4));
  627. theme->set_stylebox("button", "Tabs", make_stylebox(button_normal_png, 4, 4, 4, 4));
  628. theme->set_icon("increment", "Tabs", make_icon(scroll_button_right_png));
  629. theme->set_icon("increment_highlight", "Tabs", make_icon(scroll_button_right_hl_png));
  630. theme->set_icon("decrement", "Tabs", make_icon(scroll_button_left_png));
  631. theme->set_icon("decrement_highlight", "Tabs", make_icon(scroll_button_left_hl_png));
  632. theme->set_icon("close", "Tabs", make_icon(tab_close_png));
  633. theme->set_font("font", "Tabs", Ref<Font>());
  634. theme->set_font_size("font_size", "Tabs", -1);
  635. theme->set_color("font_selected_color", "Tabs", control_font_hover_color);
  636. theme->set_color("font_unselected_color", "Tabs", control_font_low_color);
  637. theme->set_color("font_disabled_color", "Tabs", control_font_disabled_color);
  638. theme->set_color("font_outline_color", "Tabs", Color(1, 1, 1));
  639. theme->set_constant("hseparation", "Tabs", 4 * scale);
  640. theme->set_constant("outline_size", "Tabs", 0);
  641. // Separators
  642. theme->set_stylebox("separator", "HSeparator", make_stylebox(vseparator_png, 3, 3, 3, 3));
  643. theme->set_stylebox("separator", "VSeparator", make_stylebox(hseparator_png, 3, 3, 3, 3));
  644. theme->set_icon("close", "Icons", make_icon(icon_close_png));
  645. theme->set_font("normal", "Fonts", Ref<Font>());
  646. theme->set_font("large", "Fonts", large_font);
  647. theme->set_constant("separation", "HSeparator", 4 * scale);
  648. theme->set_constant("separation", "VSeparator", 4 * scale);
  649. // Dialogs
  650. theme->set_constant("margin", "Dialogs", 8 * scale);
  651. theme->set_constant("button_margin", "Dialogs", 32 * scale);
  652. // FileDialog
  653. theme->set_icon("folder", "FileDialog", make_icon(icon_folder_png));
  654. theme->set_icon("file", "FileDialog", make_icon(icon_file_png));
  655. theme->set_color("folder_icon_modulate", "FileDialog", Color(1, 1, 1));
  656. theme->set_color("file_icon_modulate", "FileDialog", Color(1, 1, 1));
  657. theme->set_color("files_disabled", "FileDialog", Color(0, 0, 0, 0.7));
  658. // ColorPicker
  659. theme->set_constant("margin", "ColorPicker", 4 * scale);
  660. theme->set_constant("sv_width", "ColorPicker", 256 * scale);
  661. theme->set_constant("sv_height", "ColorPicker", 256 * scale);
  662. theme->set_constant("h_width", "ColorPicker", 30 * scale);
  663. theme->set_constant("label_width", "ColorPicker", 10 * scale);
  664. theme->set_icon("screen_picker", "ColorPicker", make_icon(icon_color_pick_png));
  665. theme->set_icon("add_preset", "ColorPicker", make_icon(icon_add_png));
  666. theme->set_icon("color_hue", "ColorPicker", make_icon(color_picker_hue_png));
  667. theme->set_icon("color_sample", "ColorPicker", make_icon(color_picker_sample_png));
  668. theme->set_icon("preset_bg", "ColorPicker", make_icon(mini_checkerboard_png));
  669. theme->set_icon("overbright_indicator", "ColorPicker", make_icon(overbright_indicator_png));
  670. theme->set_icon("bar_arrow", "ColorPicker", make_icon(bar_arrow_png));
  671. theme->set_icon("picker_cursor", "ColorPicker", make_icon(picker_cursor_png));
  672. theme->set_icon("bg", "ColorPickerButton", make_icon(mini_checkerboard_png));
  673. // TooltipPanel
  674. Ref<StyleBoxTexture> style_tt = make_stylebox(tooltip_bg_png, 4, 4, 4, 4);
  675. for (int i = 0; i < 4; i++) {
  676. style_tt->set_expand_margin_size((Side)i, 4 * scale);
  677. }
  678. theme->set_stylebox("panel", "TooltipPanel", style_tt);
  679. theme->set_font("font", "TooltipLabel", Ref<Font>());
  680. theme->set_font_size("font_size", "TooltipLabel", -1);
  681. theme->set_color("font_color", "TooltipLabel", Color(0, 0, 0));
  682. theme->set_color("font_shadow_color", "TooltipLabel", Color(0, 0, 0, 0.1));
  683. theme->set_color("font_outline_color", "TooltipLabel", Color(1, 1, 1));
  684. theme->set_constant("shadow_offset_x", "TooltipLabel", 1);
  685. theme->set_constant("shadow_offset_y", "TooltipLabel", 1);
  686. theme->set_constant("outline_size", "TooltipLabel", 0);
  687. // RichTextLabel
  688. theme->set_stylebox("focus", "RichTextLabel", focus);
  689. theme->set_stylebox("normal", "RichTextLabel", make_empty_stylebox(0, 0, 0, 0));
  690. theme->set_font("normal_font", "RichTextLabel", Ref<Font>());
  691. theme->set_font("bold_font", "RichTextLabel", Ref<Font>());
  692. theme->set_font("italics_font", "RichTextLabel", Ref<Font>());
  693. theme->set_font("bold_italics_font", "RichTextLabel", Ref<Font>());
  694. theme->set_font("mono_font", "RichTextLabel", Ref<Font>());
  695. theme->set_font_size("normal_font_size", "RichTextLabel", -1);
  696. theme->set_font_size("bold_font_size", "RichTextLabel", -1);
  697. theme->set_font_size("italics_font_size", "RichTextLabel", -1);
  698. theme->set_font_size("bold_italics_font_size", "RichTextLabel", -1);
  699. theme->set_font_size("mono_font_size", "RichTextLabel", -1);
  700. theme->set_color("default_color", "RichTextLabel", Color(1, 1, 1));
  701. theme->set_color("font_selected_color", "RichTextLabel", Color(0, 0, 0));
  702. theme->set_color("selection_color", "RichTextLabel", Color(0.1, 0.1, 1, 0.8));
  703. theme->set_color("font_shadow_color", "RichTextLabel", Color(0, 0, 0, 0));
  704. theme->set_color("font_outline_color", "RichTextLabel", Color(1, 1, 1));
  705. theme->set_constant("shadow_offset_x", "RichTextLabel", 1 * scale);
  706. theme->set_constant("shadow_offset_y", "RichTextLabel", 1 * scale);
  707. theme->set_constant("shadow_as_outline", "RichTextLabel", 0 * scale);
  708. theme->set_constant("line_separation", "RichTextLabel", 1 * scale);
  709. theme->set_constant("table_hseparation", "RichTextLabel", 3 * scale);
  710. theme->set_constant("table_vseparation", "RichTextLabel", 3 * scale);
  711. theme->set_constant("outline_size", "RichTextLabel", 0);
  712. theme->set_color("table_odd_row_bg", "RichTextLabel", Color(0, 0, 0, 0));
  713. theme->set_color("table_even_row_bg", "RichTextLabel", Color(0, 0, 0, 0));
  714. theme->set_color("table_border", "RichTextLabel", Color(0, 0, 0, 0));
  715. // Containers
  716. theme->set_stylebox("bg", "VSplitContainer", make_stylebox(vsplit_bg_png, 1, 1, 1, 1));
  717. theme->set_stylebox("bg", "HSplitContainer", make_stylebox(hsplit_bg_png, 1, 1, 1, 1));
  718. theme->set_icon("grabber", "VSplitContainer", make_icon(vsplitter_png));
  719. theme->set_icon("grabber", "HSplitContainer", make_icon(hsplitter_png));
  720. theme->set_constant("separation", "HBoxContainer", 4 * scale);
  721. theme->set_constant("separation", "VBoxContainer", 4 * scale);
  722. theme->set_constant("margin_left", "MarginContainer", 0 * scale);
  723. theme->set_constant("margin_top", "MarginContainer", 0 * scale);
  724. theme->set_constant("margin_right", "MarginContainer", 0 * scale);
  725. theme->set_constant("margin_bottom", "MarginContainer", 0 * scale);
  726. theme->set_constant("hseparation", "GridContainer", 4 * scale);
  727. theme->set_constant("vseparation", "GridContainer", 4 * scale);
  728. theme->set_constant("separation", "HSplitContainer", 12 * scale);
  729. theme->set_constant("separation", "VSplitContainer", 12 * scale);
  730. theme->set_constant("autohide", "HSplitContainer", 1 * scale);
  731. theme->set_constant("autohide", "VSplitContainer", 1 * scale);
  732. Ref<StyleBoxTexture> sb_pc = make_stylebox(tab_container_bg_png, 4, 4, 4, 4, 7, 7, 7, 7);
  733. theme->set_stylebox("panel", "PanelContainer", sb_pc);
  734. theme->set_icon("minus", "GraphEdit", make_icon(icon_zoom_less_png));
  735. theme->set_icon("reset", "GraphEdit", make_icon(icon_zoom_reset_png));
  736. theme->set_icon("more", "GraphEdit", make_icon(icon_zoom_more_png));
  737. theme->set_icon("snap", "GraphEdit", make_icon(icon_snap_grid_png));
  738. theme->set_icon("minimap", "GraphEdit", make_icon(icon_grid_minimap_png));
  739. theme->set_stylebox("bg", "GraphEdit", make_stylebox(tree_bg_png, 4, 4, 4, 5));
  740. theme->set_color("grid_minor", "GraphEdit", Color(1, 1, 1, 0.05));
  741. theme->set_color("grid_major", "GraphEdit", Color(1, 1, 1, 0.2));
  742. theme->set_color("selection_fill", "GraphEdit", Color(1, 1, 1, 0.3));
  743. theme->set_color("selection_stroke", "GraphEdit", Color(1, 1, 1, 0.8));
  744. theme->set_color("activity", "GraphEdit", Color(1, 1, 1));
  745. theme->set_constant("bezier_len_pos", "GraphEdit", 80 * scale);
  746. theme->set_constant("bezier_len_neg", "GraphEdit", 160 * scale);
  747. // Visual Node Ports
  748. theme->set_constant("port_grab_distance_horizontal", "GraphEdit", 48 * scale);
  749. theme->set_constant("port_grab_distance_vertical", "GraphEdit", 6 * scale);
  750. theme->set_stylebox("bg", "GraphEditMinimap", make_flat_stylebox(Color(0.24, 0.24, 0.24), 0, 0, 0, 0));
  751. Ref<StyleBoxFlat> style_minimap_camera = make_flat_stylebox(Color(0.65, 0.65, 0.65, 0.2), 0, 0, 0, 0);
  752. style_minimap_camera->set_border_color(Color(0.65, 0.65, 0.65, 0.45));
  753. style_minimap_camera->set_border_width_all(1);
  754. theme->set_stylebox("camera", "GraphEditMinimap", style_minimap_camera);
  755. Ref<StyleBoxFlat> style_minimap_node = make_flat_stylebox(Color(1, 1, 1), 0, 0, 0, 0);
  756. style_minimap_node->set_corner_radius_all(2);
  757. theme->set_stylebox("node", "GraphEditMinimap", style_minimap_node);
  758. Ref<Texture2D> resizer_icon = make_icon(window_resizer_png);
  759. theme->set_icon("resizer", "GraphEditMinimap", flip_icon(resizer_icon, true, true));
  760. theme->set_color("resizer_color", "GraphEditMinimap", Color(1, 1, 1, 0.85));
  761. // Theme
  762. default_icon = make_icon(error_icon_png);
  763. default_style = make_stylebox(error_icon_png, 2, 2, 2, 2);
  764. memdelete(tex_cache);
  765. }
  766. void make_default_theme(bool p_hidpi, Ref<Font> p_font) {
  767. Ref<Theme> t;
  768. t.instance();
  769. Ref<StyleBox> default_style;
  770. Ref<Texture2D> default_icon;
  771. Ref<Font> default_font;
  772. int default_font_size = 16;
  773. if (p_font.is_valid()) {
  774. // Use the custom font defined in the Project Settings.
  775. default_font = p_font;
  776. } else {
  777. // Use the default DynamicFont (separate from the editor font).
  778. // The default DynamicFont is chosen to have a small file size since it's
  779. // embedded in both editor and export template binaries.
  780. Ref<Font> dynamic_font;
  781. dynamic_font.instance();
  782. Ref<FontData> dynamic_font_data;
  783. dynamic_font_data.instance();
  784. dynamic_font_data->load_memory(_font_OpenSans_SemiBold, _font_OpenSans_SemiBold_size, "ttf", default_font_size);
  785. dynamic_font->add_data(dynamic_font_data);
  786. default_font = dynamic_font;
  787. }
  788. Ref<Font> large_font = default_font;
  789. fill_default_theme(t, default_font, large_font, default_icon, default_style, p_hidpi ? 2.0 : 1.0);
  790. Theme::set_default(t);
  791. Theme::set_default_icon(default_icon);
  792. Theme::set_default_style(default_style);
  793. Theme::set_default_font(default_font);
  794. Theme::set_default_font_size(default_font_size);
  795. }
  796. void clear_default_theme() {
  797. Theme::set_project_default(nullptr);
  798. Theme::set_default(nullptr);
  799. Theme::set_default_icon(nullptr);
  800. Theme::set_default_style(nullptr);
  801. Theme::set_default_font(nullptr);
  802. }