default_theme.cpp 48 KB

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