default_theme.cpp 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935
  1. /*************************************************************************/
  2. /* default_theme.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2017 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 "os/os.h"
  33. #include "theme_data.h"
  34. #include "font_hidpi.inc"
  35. #include "font_lodpi.inc"
  36. typedef Map<const void *, Ref<ImageTexture> > TexCacheMap;
  37. static TexCacheMap *tex_cache;
  38. static float scale = 1;
  39. template <class T>
  40. 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) {
  41. Ref<ImageTexture> texture;
  42. if (tex_cache->has(p_src)) {
  43. texture = (*tex_cache)[p_src];
  44. } else {
  45. texture = Ref<ImageTexture>(memnew(ImageTexture));
  46. Ref<Image> img = memnew(Image(p_src));
  47. if (scale > 1) {
  48. Size2 orig_size = Size2(img->get_width(), img->get_height());
  49. img->convert(Image::FORMAT_RGBA8);
  50. img->expand_x2_hq2x();
  51. if (scale != 2.0) {
  52. img->resize(orig_size.x * scale, orig_size.y * scale);
  53. }
  54. } else if (scale < 1) {
  55. Size2 orig_size = Size2(img->get_width(), img->get_height());
  56. img->convert(Image::FORMAT_RGBA8);
  57. img->resize(orig_size.x * scale, orig_size.y * scale);
  58. }
  59. texture->create_from_image(img, ImageTexture::FLAG_FILTER);
  60. (*tex_cache)[p_src] = texture;
  61. }
  62. Ref<StyleBoxTexture> style(memnew(StyleBoxTexture));
  63. style->set_texture(texture);
  64. style->set_margin_size(MARGIN_LEFT, p_left * scale);
  65. style->set_margin_size(MARGIN_RIGHT, p_right * scale);
  66. style->set_margin_size(MARGIN_BOTTOM, p_botton * scale);
  67. style->set_margin_size(MARGIN_TOP, p_top * scale);
  68. style->set_default_margin(MARGIN_LEFT, p_margin_left * scale);
  69. style->set_default_margin(MARGIN_RIGHT, p_margin_right * scale);
  70. style->set_default_margin(MARGIN_BOTTOM, p_margin_botton * scale);
  71. style->set_default_margin(MARGIN_TOP, p_margin_top * scale);
  72. style->set_draw_center(p_draw_center);
  73. return style;
  74. }
  75. static Ref<StyleBoxTexture> sb_expand(Ref<StyleBoxTexture> p_sbox, float p_left, float p_top, float p_right, float p_botton) {
  76. p_sbox->set_expand_margin_size(MARGIN_LEFT, p_left * scale);
  77. p_sbox->set_expand_margin_size(MARGIN_TOP, p_top * scale);
  78. p_sbox->set_expand_margin_size(MARGIN_RIGHT, p_right * scale);
  79. p_sbox->set_expand_margin_size(MARGIN_BOTTOM, p_botton * scale);
  80. return p_sbox;
  81. }
  82. template <class T>
  83. static Ref<Texture> make_icon(T p_src) {
  84. Ref<ImageTexture> texture(memnew(ImageTexture));
  85. Ref<Image> img = memnew(Image(p_src));
  86. if (scale > 1) {
  87. Size2 orig_size = Size2(img->get_width(), img->get_height());
  88. img->convert(Image::FORMAT_RGBA8);
  89. img->expand_x2_hq2x();
  90. if (scale != 2.0) {
  91. img->resize(orig_size.x * scale, orig_size.y * scale);
  92. }
  93. } else if (scale < 1) {
  94. Size2 orig_size = Size2(img->get_width(), img->get_height());
  95. img->convert(Image::FORMAT_RGBA8);
  96. img->resize(orig_size.x * scale, orig_size.y * scale);
  97. }
  98. texture->create_from_image(img, ImageTexture::FLAG_FILTER);
  99. return texture;
  100. }
  101. static Ref<Shader> make_shader(const char *vertex_code, const char *fragment_code, const char *lighting_code) {
  102. Ref<Shader> shader = (memnew(Shader()));
  103. //shader->set_code(vertex_code, fragment_code, lighting_code);
  104. return shader;
  105. }
  106. static Ref<BitmapFont> make_font(int p_height, int p_ascent, int p_valign, int p_charcount, const int *p_chars, const Ref<Texture> &p_texture) {
  107. Ref<BitmapFont> font(memnew(BitmapFont));
  108. font->add_texture(p_texture);
  109. for (int i = 0; i < p_charcount; i++) {
  110. const int *c = &p_chars[i * 8];
  111. int chr = c[0];
  112. Rect2 frect;
  113. frect.position.x = c[1];
  114. frect.position.y = c[2];
  115. frect.size.x = c[3];
  116. frect.size.y = c[4];
  117. Point2 align(c[5], c[6] + p_valign);
  118. int advance = c[7];
  119. font->add_char(chr, 0, frect, align, advance);
  120. }
  121. font->set_height(p_height);
  122. font->set_ascent(p_ascent);
  123. return font;
  124. }
  125. static Ref<BitmapFont> make_font2(int p_height, int p_ascent, int p_charcount, const int *p_char_rects, int p_kerning_count, const int *p_kernings, int p_w, int p_h, const unsigned char *p_img) {
  126. Ref<BitmapFont> font(memnew(BitmapFont));
  127. Ref<Image> image = memnew(Image(p_img));
  128. Ref<ImageTexture> tex = memnew(ImageTexture);
  129. tex->create_from_image(image);
  130. font->add_texture(tex);
  131. for (int i = 0; i < p_charcount; i++) {
  132. const int *c = &p_char_rects[i * 8];
  133. int chr = c[0];
  134. Rect2 frect;
  135. frect.position.x = c[1];
  136. frect.position.y = c[2];
  137. frect.size.x = c[3];
  138. frect.size.y = c[4];
  139. Point2 align(c[6], c[5]);
  140. int advance = c[7];
  141. font->add_char(chr, 0, frect, align, advance);
  142. }
  143. for (int i = 0; i < p_kerning_count; i++) {
  144. font->add_kerning_pair(p_kernings[i * 3 + 0], p_kernings[i * 3 + 1], p_kernings[i * 3 + 2]);
  145. }
  146. font->set_height(p_height);
  147. font->set_ascent(p_ascent);
  148. return font;
  149. }
  150. 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) {
  151. Ref<StyleBox> style(memnew(StyleBoxEmpty));
  152. style->set_default_margin(MARGIN_LEFT, p_margin_left * scale);
  153. style->set_default_margin(MARGIN_RIGHT, p_margin_right * scale);
  154. style->set_default_margin(MARGIN_BOTTOM, p_margin_botton * scale);
  155. style->set_default_margin(MARGIN_TOP, p_margin_top * scale);
  156. return style;
  157. }
  158. void fill_default_theme(Ref<Theme> &theme, const Ref<Font> &default_font, const Ref<Font> &large_font, Ref<Texture> &default_icon, Ref<StyleBox> &default_style, float p_scale) {
  159. scale = p_scale;
  160. tex_cache = memnew(TexCacheMap);
  161. //Ref<BitmapFont> default_font = make_font(_bi_font_normal_height,_bi_font_normal_ascent,_bi_font_normal_valign,_bi_font_normal_charcount,_bi_font_normal_characters,make_icon(font_normal_png));
  162. // Font Colors
  163. Color control_font_color = Color::html("e0e0e0");
  164. Color control_font_color_lower = Color::html("a0a0a0");
  165. Color control_font_color_low = Color::html("b0b0b0");
  166. Color control_font_color_hover = Color::html("f0f0f0");
  167. Color control_font_color_disabled = Color(0.9, 0.9, 0.9, 0.2);
  168. Color control_font_color_pressed = Color::html("ffffff");
  169. Color font_color_selection = Color::html("7d7d7d");
  170. // Panel
  171. theme->set_stylebox("panel", "Panel", make_stylebox(panel_bg_png, 0, 0, 0, 0));
  172. // Focus
  173. Ref<StyleBoxTexture> focus = make_stylebox(focus_png, 5, 5, 5, 5);
  174. for (int i = 0; i < 4; i++) {
  175. focus->set_expand_margin_size(Margin(i), 1 * scale);
  176. }
  177. // Button
  178. Ref<StyleBox> sb_button_normal = sb_expand(make_stylebox(button_normal_png, 4, 4, 4, 4, 6, 3, 6, 3), 2, 2, 2, 2);
  179. Ref<StyleBox> sb_button_pressed = sb_expand(make_stylebox(button_pressed_png, 4, 4, 4, 4, 6, 3, 6, 3), 2, 2, 2, 2);
  180. Ref<StyleBox> sb_button_hover = sb_expand(make_stylebox(button_hover_png, 4, 4, 4, 4, 6, 2, 6, 2), 2, 2, 2, 2);
  181. Ref<StyleBox> sb_button_disabled = sb_expand(make_stylebox(button_disabled_png, 4, 4, 4, 4, 6, 2, 6, 2), 2, 2, 2, 2);
  182. Ref<StyleBox> sb_button_focus = sb_expand(make_stylebox(button_focus_png, 4, 4, 4, 4, 6, 2, 6, 2), 2, 2, 2, 2);
  183. theme->set_stylebox("normal", "Button", sb_button_normal);
  184. theme->set_stylebox("pressed", "Button", sb_button_pressed);
  185. theme->set_stylebox("hover", "Button", sb_button_hover);
  186. theme->set_stylebox("disabled", "Button", sb_button_disabled);
  187. theme->set_stylebox("focus", "Button", sb_button_focus);
  188. theme->set_font("font", "Button", default_font);
  189. theme->set_color("font_color", "Button", control_font_color);
  190. theme->set_color("font_color_pressed", "Button", control_font_color_pressed);
  191. theme->set_color("font_color_hover", "Button", control_font_color_hover);
  192. theme->set_color("font_color_disabled", "Button", control_font_color_disabled);
  193. theme->set_constant("hseparation", "Button", 2 * scale);
  194. // LinkButton
  195. theme->set_font("font", "LinkButton", default_font);
  196. theme->set_color("font_color", "LinkButton", control_font_color);
  197. theme->set_color("font_color_pressed", "LinkButton", control_font_color_pressed);
  198. theme->set_color("font_color_hover", "LinkButton", control_font_color_hover);
  199. theme->set_constant("underline_spacing", "LinkButton", 2 * scale);
  200. // ColorPickerButton
  201. theme->set_stylebox("normal", "ColorPickerButton", sb_button_normal);
  202. theme->set_stylebox("pressed", "ColorPickerButton", sb_button_pressed);
  203. theme->set_stylebox("hover", "ColorPickerButton", sb_button_hover);
  204. theme->set_stylebox("disabled", "ColorPickerButton", sb_button_disabled);
  205. theme->set_stylebox("focus", "ColorPickerButton", sb_button_focus);
  206. theme->set_font("font", "ColorPickerButton", default_font);
  207. theme->set_color("font_color", "ColorPickerButton", Color(1, 1, 1, 1));
  208. theme->set_color("font_color_pressed", "ColorPickerButton", Color(0.8, 0.8, 0.8, 1));
  209. theme->set_color("font_color_hover", "ColorPickerButton", Color(1, 1, 1, 1));
  210. theme->set_color("font_color_disabled", "ColorPickerButton", Color(0.9, 0.9, 0.9, 0.3));
  211. theme->set_constant("hseparation", "ColorPickerButton", 2 * scale);
  212. // ToolButton
  213. theme->set_stylebox("normal", "ToolButton", make_empty_stylebox(6, 4, 6, 4));
  214. theme->set_stylebox("pressed", "ToolButton", make_stylebox(button_pressed_png, 4, 4, 4, 4, 6, 4, 6, 4));
  215. theme->set_stylebox("hover", "ToolButton", make_stylebox(button_normal_png, 4, 4, 4, 4, 6, 4, 6, 4));
  216. theme->set_stylebox("disabled", "ToolButton", make_empty_stylebox(6, 4, 6, 4));
  217. theme->set_stylebox("focus", "ToolButton", focus);
  218. theme->set_font("font", "ToolButton", default_font);
  219. theme->set_color("font_color", "ToolButton", control_font_color);
  220. theme->set_color("font_color_pressed", "ToolButton", control_font_color_pressed);
  221. theme->set_color("font_color_hover", "ToolButton", control_font_color_hover);
  222. theme->set_color("font_color_disabled", "ToolButton", Color(0.9, 0.95, 1, 0.3));
  223. theme->set_constant("hseparation", "ToolButton", 3);
  224. // OptionButton
  225. Ref<StyleBox> sb_optbutton_normal = sb_expand(make_stylebox(option_button_normal_png, 4, 4, 21, 4, 6, 3, 21, 3), 2, 2, 2, 2);
  226. Ref<StyleBox> sb_optbutton_pressed = sb_expand(make_stylebox(option_button_pressed_png, 4, 4, 21, 4, 6, 3, 21, 3), 2, 2, 2, 2);
  227. Ref<StyleBox> sb_optbutton_hover = sb_expand(make_stylebox(option_button_hover_png, 4, 4, 21, 4, 6, 2, 21, 2), 2, 2, 2, 2);
  228. Ref<StyleBox> sb_optbutton_disabled = sb_expand(make_stylebox(option_button_disabled_png, 4, 4, 21, 4, 6, 2, 21, 2), 2, 2, 2, 2);
  229. Ref<StyleBox> sb_optbutton_focus = sb_expand(make_stylebox(button_focus_png, 4, 4, 4, 4, 6, 2, 6, 2), 2, 2, 2, 2);
  230. theme->set_stylebox("normal", "OptionButton", sb_optbutton_normal);
  231. theme->set_stylebox("pressed", "OptionButton", sb_optbutton_pressed);
  232. theme->set_stylebox("hover", "OptionButton", sb_optbutton_hover);
  233. theme->set_stylebox("disabled", "OptionButton", sb_optbutton_disabled);
  234. theme->set_stylebox("focus", "OptionButton", sb_button_focus);
  235. theme->set_icon("arrow", "OptionButton", make_icon(option_arrow_png));
  236. theme->set_font("font", "OptionButton", default_font);
  237. theme->set_color("font_color", "OptionButton", control_font_color);
  238. theme->set_color("font_color_pressed", "OptionButton", control_font_color_pressed);
  239. theme->set_color("font_color_hover", "OptionButton", control_font_color_hover);
  240. theme->set_color("font_color_disabled", "OptionButton", control_font_color_disabled);
  241. theme->set_constant("hseparation", "OptionButton", 2 * scale);
  242. theme->set_constant("arrow_margin", "OptionButton", 2 * scale);
  243. // MenuButton
  244. theme->set_stylebox("normal", "MenuButton", sb_button_normal);
  245. theme->set_stylebox("pressed", "MenuButton", sb_button_pressed);
  246. theme->set_stylebox("hover", "MenuButton", sb_button_pressed);
  247. theme->set_stylebox("disabled", "MenuButton", make_empty_stylebox(0, 0, 0, 0));
  248. theme->set_stylebox("focus", "MenuButton", sb_button_focus);
  249. theme->set_font("font", "MenuButton", default_font);
  250. theme->set_color("font_color", "MenuButton", control_font_color);
  251. theme->set_color("font_color_pressed", "MenuButton", control_font_color_pressed);
  252. theme->set_color("font_color_hover", "MenuButton", control_font_color_hover);
  253. theme->set_color("font_color_disabled", "MenuButton", Color(1, 1, 1, 0.3));
  254. theme->set_constant("hseparation", "MenuButton", 3 * scale);
  255. // ButtonGroup
  256. theme->set_stylebox("panel", "ButtonGroup", memnew(StyleBoxEmpty));
  257. // CheckBox
  258. Ref<StyleBox> cbx_empty = memnew(StyleBoxEmpty);
  259. cbx_empty->set_default_margin(MARGIN_LEFT, 22 * scale);
  260. cbx_empty->set_default_margin(MARGIN_RIGHT, 4 * scale);
  261. cbx_empty->set_default_margin(MARGIN_TOP, 4 * scale);
  262. cbx_empty->set_default_margin(MARGIN_BOTTOM, 5 * scale);
  263. Ref<StyleBox> cbx_focus = focus;
  264. cbx_focus->set_default_margin(MARGIN_LEFT, 4 * scale);
  265. cbx_focus->set_default_margin(MARGIN_RIGHT, 22 * scale);
  266. cbx_focus->set_default_margin(MARGIN_TOP, 4 * scale);
  267. cbx_focus->set_default_margin(MARGIN_BOTTOM, 5 * scale);
  268. theme->set_stylebox("normal", "CheckBox", cbx_empty);
  269. theme->set_stylebox("pressed", "CheckBox", cbx_empty);
  270. theme->set_stylebox("disabled", "CheckBox", cbx_empty);
  271. theme->set_stylebox("hover", "CheckBox", cbx_empty);
  272. theme->set_stylebox("focus", "CheckBox", cbx_focus);
  273. theme->set_icon("checked", "CheckBox", make_icon(checked_png));
  274. theme->set_icon("unchecked", "CheckBox", make_icon(unchecked_png));
  275. theme->set_icon("radio_checked", "CheckBox", make_icon(radio_checked_png));
  276. theme->set_icon("radio_unchecked", "CheckBox", make_icon(radio_unchecked_png));
  277. theme->set_font("font", "CheckBox", default_font);
  278. theme->set_color("font_color", "CheckBox", control_font_color);
  279. theme->set_color("font_color_pressed", "CheckBox", control_font_color_pressed);
  280. theme->set_color("font_color_hover", "CheckBox", control_font_color_hover);
  281. theme->set_color("font_color_disabled", "CheckBox", control_font_color_disabled);
  282. theme->set_constant("hseparation", "CheckBox", 4 * scale);
  283. theme->set_constant("check_vadjust", "CheckBox", 0 * scale);
  284. // CheckButton
  285. Ref<StyleBox> cb_empty = memnew(StyleBoxEmpty);
  286. cb_empty->set_default_margin(MARGIN_LEFT, 6 * scale);
  287. cb_empty->set_default_margin(MARGIN_RIGHT, 70 * scale);
  288. cb_empty->set_default_margin(MARGIN_TOP, 4 * scale);
  289. cb_empty->set_default_margin(MARGIN_BOTTOM, 4 * scale);
  290. theme->set_stylebox("normal", "CheckButton", cb_empty);
  291. theme->set_stylebox("pressed", "CheckButton", cb_empty);
  292. theme->set_stylebox("disabled", "CheckButton", cb_empty);
  293. theme->set_stylebox("hover", "CheckButton", cb_empty);
  294. theme->set_stylebox("focus", "CheckButton", focus);
  295. theme->set_icon("on", "CheckButton", make_icon(toggle_on_png));
  296. theme->set_icon("off", "CheckButton", make_icon(toggle_off_png));
  297. theme->set_font("font", "CheckButton", default_font);
  298. theme->set_color("font_color", "CheckButton", control_font_color);
  299. theme->set_color("font_color_pressed", "CheckButton", control_font_color_pressed);
  300. theme->set_color("font_color_hover", "CheckButton", control_font_color_hover);
  301. theme->set_color("font_color_disabled", "CheckButton", control_font_color_disabled);
  302. theme->set_constant("hseparation", "CheckButton", 4 * scale);
  303. theme->set_constant("check_vadjust", "CheckButton", 0 * scale);
  304. // Label
  305. theme->set_stylebox("normal", "Label", memnew(StyleBoxEmpty));
  306. theme->set_font("font", "Label", default_font);
  307. theme->set_color("font_color", "Label", Color(1, 1, 1));
  308. theme->set_color("font_color_shadow", "Label", Color(0, 0, 0, 0));
  309. theme->set_constant("shadow_offset_x", "Label", 1 * scale);
  310. theme->set_constant("shadow_offset_y", "Label", 1 * scale);
  311. theme->set_constant("shadow_as_outline", "Label", 0 * scale);
  312. theme->set_constant("line_spacing", "Label", 3 * scale);
  313. // LineEdit
  314. theme->set_stylebox("normal", "LineEdit", make_stylebox(line_edit_png, 5, 5, 5, 5));
  315. theme->set_stylebox("focus", "LineEdit", focus);
  316. theme->set_stylebox("read_only", "LineEdit", make_stylebox(line_edit_disabled_png, 6, 6, 6, 6));
  317. theme->set_font("font", "LineEdit", default_font);
  318. theme->set_color("font_color", "LineEdit", control_font_color);
  319. theme->set_color("font_color_selected", "LineEdit", Color(0, 0, 0));
  320. theme->set_color("cursor_color", "LineEdit", control_font_color_hover);
  321. theme->set_color("selection_color", "LineEdit", font_color_selection);
  322. theme->set_constant("minimum_spaces", "LineEdit", 12 * scale);
  323. // ProgressBar
  324. theme->set_stylebox("bg", "ProgressBar", make_stylebox(progress_bar_png, 4, 4, 4, 4, 0, 0, 0, 0));
  325. theme->set_stylebox("fg", "ProgressBar", make_stylebox(progress_fill_png, 6, 6, 6, 6, 2, 1, 2, 1));
  326. theme->set_font("font", "ProgressBar", default_font);
  327. theme->set_color("font_color", "ProgressBar", control_font_color_hover);
  328. theme->set_color("font_color_shadow", "ProgressBar", Color(0, 0, 0));
  329. // TextEdit
  330. theme->set_stylebox("normal", "TextEdit", make_stylebox(tree_bg_png, 3, 3, 3, 3));
  331. theme->set_stylebox("focus", "TextEdit", focus);
  332. theme->set_stylebox("completion", "TextEdit", make_stylebox(tree_bg_png, 3, 3, 3, 3));
  333. theme->set_icon("tab", "TextEdit", make_icon(tab_png));
  334. theme->set_font("font", "TextEdit", default_font);
  335. theme->set_color("background_color", "TextEdit", Color(0, 0, 0, 0));
  336. theme->set_color("completion_background_color", "TextEdit", Color::html("2C2A32"));
  337. theme->set_color("completion_selected_color", "TextEdit", Color::html("434244"));
  338. theme->set_color("completion_existing_color", "TextEdit", Color::html("21dfdfdf"));
  339. theme->set_color("completion_scroll_color", "TextEdit", control_font_color_pressed);
  340. theme->set_color("completion_font_color", "TextEdit", Color::html("aaaaaa"));
  341. theme->set_color("font_color", "TextEdit", control_font_color);
  342. theme->set_color("font_color_selected", "TextEdit", Color(0, 0, 0));
  343. theme->set_color("selection_color", "TextEdit", font_color_selection);
  344. theme->set_color("mark_color", "TextEdit", Color(1.0, 0.4, 0.4, 0.4));
  345. theme->set_color("breakpoint_color", "TextEdit", Color(0.8, 0.8, 0.4, 0.2));
  346. theme->set_color("current_line_color", "TextEdit", Color(0.25, 0.25, 0.26, 0.8));
  347. theme->set_color("caret_color", "TextEdit", control_font_color);
  348. theme->set_color("caret_background_color", "TextEdit", Color::html("000000"));
  349. theme->set_color("symbol_color", "TextEdit", control_font_color_hover);
  350. theme->set_color("brace_mismatch_color", "TextEdit", Color(1, 0.2, 0.2));
  351. theme->set_color("line_number_color", "TextEdit", Color::html("66aaaaaa"));
  352. theme->set_color("function_color", "TextEdit", Color::html("66a2ce"));
  353. theme->set_color("member_variable_color", "TextEdit", Color::html("e64e59"));
  354. theme->set_color("number_color", "TextEdit", Color::html("EB9532"));
  355. theme->set_color("word_highlighted_color", "TextEdit", Color(0.8, 0.9, 0.9, 0.15));
  356. theme->set_constant("completion_lines", "TextEdit", 7);
  357. theme->set_constant("completion_max_width", "TextEdit", 50);
  358. theme->set_constant("completion_scroll_width", "TextEdit", 3);
  359. theme->set_constant("line_spacing", "TextEdit", 4 * scale);
  360. Ref<Texture> empty_icon = memnew(ImageTexture);
  361. // HScrollBar
  362. theme->set_stylebox("scroll", "HScrollBar", make_stylebox(scroll_bg_png, 5, 5, 5, 5, 0, 0, 0, 0));
  363. theme->set_stylebox("scroll_focus", "HScrollBar", make_stylebox(scroll_bg_png, 5, 5, 5, 5, 0, 0, 0, 0));
  364. theme->set_stylebox("grabber", "HScrollBar", make_stylebox(scroll_grabber_png, 5, 5, 5, 5, 2, 2, 2, 2));
  365. theme->set_stylebox("grabber_highlight", "HScrollBar", make_stylebox(scroll_grabber_hl_png, 5, 5, 5, 5, 2, 2, 2, 2));
  366. theme->set_stylebox("grabber_pressed", "HScrollBar", make_stylebox(scroll_grabber_pressed_png, 5, 5, 5, 5, 2, 2, 2, 2));
  367. theme->set_icon("increment", "HScrollBar", empty_icon);
  368. theme->set_icon("increment_highlight", "HScrollBar", empty_icon);
  369. theme->set_icon("decrement", "HScrollBar", empty_icon);
  370. theme->set_icon("decrement_highlight", "HScrollBar", empty_icon);
  371. // VScrollBar
  372. theme->set_stylebox("scroll", "VScrollBar", make_stylebox(scroll_bg_png, 5, 5, 5, 5, 0, 0, 0, 0));
  373. theme->set_stylebox("scroll_focus", "VScrollBar", make_stylebox(scroll_bg_png, 5, 5, 5, 5, 0, 0, 0, 0));
  374. theme->set_stylebox("grabber", "VScrollBar", make_stylebox(scroll_grabber_png, 5, 5, 5, 5, 2, 2, 2, 2));
  375. theme->set_stylebox("grabber_highlight", "VScrollBar", make_stylebox(scroll_grabber_hl_png, 5, 5, 5, 5, 2, 2, 2, 2));
  376. theme->set_stylebox("grabber_pressed", "VScrollBar", make_stylebox(scroll_grabber_pressed_png, 5, 5, 5, 5, 2, 2, 2, 2));
  377. theme->set_icon("increment", "VScrollBar", empty_icon);
  378. theme->set_icon("increment_highlight", "VScrollBar", empty_icon);
  379. theme->set_icon("decrement", "VScrollBar", empty_icon);
  380. theme->set_icon("decrement_highlight", "VScrollBar", empty_icon);
  381. // HSlider
  382. theme->set_stylebox("slider", "HSlider", make_stylebox(hslider_bg_png, 4, 4, 4, 4));
  383. theme->set_stylebox("grabber_area", "HSlider", make_stylebox(hslider_bg_png, 4, 4, 4, 4));
  384. theme->set_stylebox("grabber_highlight", "HSlider", make_stylebox(hslider_grabber_hl_png, 6, 6, 6, 6));
  385. theme->set_stylebox("grabber_disabled", "HSlider", make_stylebox(hslider_grabber_disabled_png, 6, 6, 6, 6));
  386. theme->set_stylebox("focus", "HSlider", focus);
  387. theme->set_icon("grabber", "HSlider", make_icon(hslider_grabber_png));
  388. theme->set_icon("grabber_highlight", "HSlider", make_icon(hslider_grabber_hl_png));
  389. theme->set_icon("grabber_disabled", "HSlider", make_icon(hslider_grabber_disabled_png));
  390. theme->set_icon("tick", "HSlider", make_icon(hslider_tick_png));
  391. // VSlider
  392. theme->set_stylebox("slider", "VSlider", make_stylebox(vslider_bg_png, 4, 4, 4, 4));
  393. theme->set_stylebox("grabber_area", "VSlider", make_stylebox(vslider_bg_png, 4, 4, 4, 4));
  394. theme->set_stylebox("grabber_highlight", "VSlider", make_stylebox(vslider_grabber_hl_png, 6, 6, 6, 6));
  395. theme->set_stylebox("grabber_disabled", "VSlider", make_stylebox(vslider_grabber_disabled_png, 6, 6, 6, 6));
  396. theme->set_stylebox("focus", "VSlider", focus);
  397. theme->set_icon("grabber", "VSlider", make_icon(vslider_grabber_png));
  398. theme->set_icon("grabber_highlight", "VSlider", make_icon(vslider_grabber_hl_png));
  399. theme->set_icon("grabber_disabled", "VSlider", make_icon(vslider_grabber_disabled_png));
  400. theme->set_icon("tick", "VSlider", make_icon(vslider_tick_png));
  401. // SpinBox
  402. theme->set_icon("updown", "SpinBox", make_icon(spinbox_updown_png));
  403. // WindowDialog
  404. theme->set_stylebox("panel", "WindowDialog", sb_expand(make_stylebox(popup_window_png, 10, 26, 10, 8), 8, 24, 8, 6));
  405. theme->set_constant("scaleborder_size", "WindowDialog", 4 * scale);
  406. theme->set_font("title_font", "WindowDialog", large_font);
  407. theme->set_color("title_color", "WindowDialog", Color(0, 0, 0));
  408. theme->set_constant("title_height", "WindowDialog", 20 * scale);
  409. theme->set_icon("close", "WindowDialog", make_icon(close_png));
  410. theme->set_icon("close_highlight", "WindowDialog", make_icon(close_hl_png));
  411. theme->set_constant("close_h_ofs", "WindowDialog", 18 * scale);
  412. theme->set_constant("close_v_ofs", "WindowDialog", 18 * scale);
  413. // File Dialog
  414. theme->set_icon("reload", "FileDialog", make_icon(icon_reload_png));
  415. // Popup
  416. Ref<StyleBoxTexture> style_pp = sb_expand(make_stylebox(popup_bg_png, 5, 5, 5, 5, 4, 4, 4, 4), 2, 2, 2, 2);
  417. Ref<StyleBoxTexture> selected = make_stylebox(selection_png, 6, 6, 6, 6);
  418. for (int i = 0; i < 4; i++) {
  419. selected->set_expand_margin_size(Margin(i), 2 * scale);
  420. }
  421. theme->set_stylebox("panel", "PopupPanel", style_pp);
  422. // PopupMenu
  423. theme->set_stylebox("panel", "PopupMenu", make_stylebox(popup_bg_png, 4, 4, 4, 4, 10, 10, 10, 10));
  424. theme->set_stylebox("panel_disabled", "PopupMenu", make_stylebox(popup_bg_disabled_png, 4, 4, 4, 4));
  425. theme->set_stylebox("hover", "PopupMenu", selected);
  426. theme->set_stylebox("separator", "PopupMenu", make_stylebox(vseparator_png, 3, 3, 3, 3));
  427. theme->set_icon("checked", "PopupMenu", make_icon(checked_png));
  428. theme->set_icon("unchecked", "PopupMenu", make_icon(unchecked_png));
  429. theme->set_icon("submenu", "PopupMenu", make_icon(submenu_png));
  430. theme->set_font("font", "PopupMenu", default_font);
  431. theme->set_color("font_color", "PopupMenu", control_font_color);
  432. theme->set_color("font_color_accel", "PopupMenu", Color(0.7, 0.7, 0.7, 0.8));
  433. theme->set_color("font_color_disabled", "PopupMenu", Color(0.4, 0.4, 0.4, 0.8));
  434. theme->set_color("font_color_hover", "PopupMenu", control_font_color);
  435. theme->set_constant("hseparation", "PopupMenu", 4 * scale);
  436. theme->set_constant("vseparation", "PopupMenu", 4 * scale);
  437. // GraphNode
  438. Ref<StyleBoxTexture> graphsb = make_stylebox(graph_node_png, 6, 24, 6, 5, 16, 24, 16, 5);
  439. Ref<StyleBoxTexture> graphsbcomment = make_stylebox(graph_node_comment_png, 6, 24, 6, 5, 16, 24, 16, 5);
  440. Ref<StyleBoxTexture> graphsbcommentselected = make_stylebox(graph_node_comment_focus_png, 6, 24, 6, 5, 16, 24, 16, 5);
  441. Ref<StyleBoxTexture> graphsbselected = make_stylebox(graph_node_selected_png, 6, 24, 6, 5, 16, 24, 16, 5);
  442. Ref<StyleBoxTexture> graphsbdefault = make_stylebox(graph_node_default_png, 4, 4, 4, 4, 6, 4, 4, 4);
  443. Ref<StyleBoxTexture> graphsbdeffocus = make_stylebox(graph_node_default_focus_png, 4, 4, 4, 4, 6, 4, 4, 4);
  444. Ref<StyleBoxTexture> graph_bpoint = make_stylebox(graph_node_breakpoint_png, 6, 24, 6, 5, 16, 24, 16, 5);
  445. Ref<StyleBoxTexture> graph_position = make_stylebox(graph_node_position_png, 6, 24, 6, 5, 16, 24, 16, 5);
  446. //graphsb->set_expand_margin_size(MARGIN_LEFT,10);
  447. //graphsb->set_expand_margin_size(MARGIN_RIGHT,10);
  448. theme->set_stylebox("frame", "GraphNode", graphsb);
  449. theme->set_stylebox("selectedframe", "GraphNode", graphsbselected);
  450. theme->set_stylebox("defaultframe", "GraphNode", graphsbdefault);
  451. theme->set_stylebox("defaultfocus", "GraphNode", graphsbdeffocus);
  452. theme->set_stylebox("comment", "GraphNode", graphsbcomment);
  453. theme->set_stylebox("commentfocus", "GraphNode", graphsbcommentselected);
  454. theme->set_stylebox("breakpoint", "GraphNode", graph_bpoint);
  455. theme->set_stylebox("position", "GraphNode", graph_position);
  456. theme->set_constant("separation", "GraphNode", 1 * scale);
  457. theme->set_icon("port", "GraphNode", make_icon(graph_port_png));
  458. theme->set_icon("close", "GraphNode", make_icon(graph_node_close_png));
  459. theme->set_icon("resizer", "GraphNode", make_icon(window_resizer_png));
  460. theme->set_font("title_font", "GraphNode", default_font);
  461. theme->set_color("title_color", "GraphNode", Color(0, 0, 0, 1));
  462. theme->set_constant("title_offset", "GraphNode", 20 * scale);
  463. theme->set_constant("close_offset", "GraphNode", 18 * scale);
  464. theme->set_constant("port_offset", "GraphNode", 3 * scale);
  465. // Tree
  466. Ref<StyleBoxTexture> tree_selected = make_stylebox(selection_png, 4, 4, 4, 4, 8, 0, 8, 0);
  467. Ref<StyleBoxTexture> tree_selected_oof = make_stylebox(selection_oof_png, 4, 4, 4, 4, 8, 0, 8, 0);
  468. theme->set_stylebox("bg", "Tree", make_stylebox(tree_bg_png, 4, 4, 4, 5));
  469. theme->set_stylebox("bg_focus", "Tree", focus);
  470. theme->set_stylebox("selected", "Tree", tree_selected_oof);
  471. theme->set_stylebox("selected_focus", "Tree", tree_selected);
  472. theme->set_stylebox("cursor", "Tree", focus);
  473. theme->set_stylebox("cursor_unfocused", "Tree", focus);
  474. theme->set_stylebox("button_pressed", "Tree", make_stylebox(button_pressed_png, 4, 4, 4, 4));
  475. theme->set_stylebox("title_button_normal", "Tree", make_stylebox(tree_title_png, 4, 4, 4, 4));
  476. theme->set_stylebox("title_button_pressed", "Tree", make_stylebox(tree_title_pressed_png, 4, 4, 4, 4));
  477. theme->set_stylebox("title_button_hover", "Tree", make_stylebox(tree_title_png, 4, 4, 4, 4));
  478. theme->set_stylebox("custom_button", "Tree", sb_button_normal);
  479. theme->set_stylebox("custom_button_pressed", "Tree", sb_button_pressed);
  480. theme->set_stylebox("custom_button_hover", "Tree", sb_button_hover);
  481. theme->set_icon("checked", "Tree", make_icon(checked_png));
  482. theme->set_icon("unchecked", "Tree", make_icon(unchecked_png));
  483. theme->set_icon("updown", "Tree", make_icon(updown_png));
  484. theme->set_icon("select_arrow", "Tree", make_icon(dropdown_png));
  485. theme->set_icon("arrow", "Tree", make_icon(arrow_down_png));
  486. theme->set_icon("arrow_collapsed", "Tree", make_icon(arrow_right_png));
  487. theme->set_font("title_button_font", "Tree", default_font);
  488. theme->set_font("font", "Tree", default_font);
  489. theme->set_color("title_button_color", "Tree", control_font_color);
  490. theme->set_color("font_color", "Tree", control_font_color_low);
  491. theme->set_color("font_color_selected", "Tree", control_font_color_pressed);
  492. theme->set_color("selection_color", "Tree", Color(0.1, 0.1, 1, 0.8));
  493. theme->set_color("cursor_color", "Tree", Color(0, 0, 0));
  494. theme->set_color("guide_color", "Tree", Color(0, 0, 0, 0.1));
  495. theme->set_color("drop_position_color", "Tree", Color(1, 0.3, 0.2));
  496. theme->set_color("relationship_line_color", "Tree", Color::html("464646"));
  497. theme->set_color("custom_button_font_highlight", "Tree", control_font_color_hover);
  498. theme->set_constant("hseparation", "Tree", 4 * scale);
  499. theme->set_constant("vseparation", "Tree", 4 * scale);
  500. theme->set_constant("guide_width", "Tree", 2 * scale);
  501. theme->set_constant("item_margin", "Tree", 12 * scale);
  502. theme->set_constant("button_margin", "Tree", 4 * scale);
  503. theme->set_constant("draw_relationship_lines", "Tree", 0);
  504. theme->set_constant("scroll_border", "Tree", 4);
  505. theme->set_constant("scroll_speed", "Tree", 12);
  506. // ItemList
  507. Ref<StyleBoxTexture> item_selected = make_stylebox(selection_png, 4, 4, 4, 4, 8, 2, 8, 2);
  508. Ref<StyleBoxTexture> item_selected_oof = make_stylebox(selection_oof_png, 4, 4, 4, 4, 8, 2, 8, 2);
  509. theme->set_stylebox("bg", "ItemList", make_stylebox(tree_bg_png, 4, 4, 4, 5));
  510. theme->set_stylebox("bg_focus", "ItemList", focus);
  511. theme->set_constant("hseparation", "ItemList", 4);
  512. theme->set_constant("vseparation", "ItemList", 2);
  513. theme->set_constant("icon_margin", "ItemList", 4);
  514. theme->set_constant("line_separation", "ItemList", 2 * scale);
  515. theme->set_font("font", "ItemList", default_font);
  516. theme->set_color("font_color", "ItemList", control_font_color_lower);
  517. theme->set_color("font_color_selected", "ItemList", control_font_color_pressed);
  518. theme->set_color("guide_color", "ItemList", Color(0, 0, 0, 0.1));
  519. theme->set_stylebox("selected", "ItemList", item_selected_oof);
  520. theme->set_stylebox("selected_focus", "ItemList", item_selected);
  521. theme->set_stylebox("cursor", "ItemList", focus);
  522. theme->set_stylebox("cursor_unfocused", "ItemList", focus);
  523. // TabContainer
  524. Ref<StyleBoxTexture> tc_sb = sb_expand(make_stylebox(tab_container_bg_png, 4, 4, 4, 4, 4, 4, 4, 4), 3, 3, 3, 3);
  525. tc_sb->set_expand_margin_size(MARGIN_TOP, 2 * scale);
  526. tc_sb->set_default_margin(MARGIN_TOP, 8 * scale);
  527. 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));
  528. 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));
  529. theme->set_stylebox("panel", "TabContainer", tc_sb);
  530. theme->set_icon("increment", "TabContainer", make_icon(scroll_button_right_png));
  531. theme->set_icon("increment_highlight", "TabContainer", make_icon(scroll_button_right_hl_png));
  532. theme->set_icon("decrement", "TabContainer", make_icon(scroll_button_left_png));
  533. theme->set_icon("decrement_highlight", "TabContainer", make_icon(scroll_button_left_hl_png));
  534. theme->set_icon("menu", "TabContainer", make_icon(tab_menu_png));
  535. theme->set_icon("menu_highlight", "TabContainer", make_icon(tab_menu_hl_png));
  536. theme->set_font("font", "TabContainer", default_font);
  537. theme->set_color("font_color_fg", "TabContainer", control_font_color_hover);
  538. theme->set_color("font_color_bg", "TabContainer", control_font_color_low);
  539. theme->set_color("font_color_disabled", "TabContainer", control_font_color_disabled);
  540. theme->set_constant("side_margin", "TabContainer", 8 * scale);
  541. theme->set_constant("top_margin", "TabContainer", 24 * scale);
  542. theme->set_constant("label_valign_fg", "TabContainer", 0 * scale);
  543. theme->set_constant("label_valign_bg", "TabContainer", 2 * scale);
  544. theme->set_constant("hseparation", "TabContainer", 4 * scale);
  545. // Tabs
  546. 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));
  547. 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));
  548. theme->set_stylebox("panel", "Tabs", tc_sb);
  549. theme->set_stylebox("button_pressed", "Tabs", make_stylebox(button_pressed_png, 4, 4, 4, 4));
  550. theme->set_stylebox("button", "Tabs", make_stylebox(button_normal_png, 4, 4, 4, 4));
  551. theme->set_icon("increment", "Tabs", make_icon(scroll_button_right_png));
  552. theme->set_icon("increment_highlight", "Tabs", make_icon(scroll_button_right_hl_png));
  553. theme->set_icon("decrement", "Tabs", make_icon(scroll_button_left_png));
  554. theme->set_icon("decrement_highlight", "Tabs", make_icon(scroll_button_left_hl_png));
  555. theme->set_icon("close", "Tabs", make_icon(tab_close_png));
  556. theme->set_font("font", "Tabs", default_font);
  557. theme->set_color("font_color_fg", "Tabs", control_font_color_hover);
  558. theme->set_color("font_color_bg", "Tabs", control_font_color_low);
  559. theme->set_color("font_color_disabled", "Tabs", control_font_color_disabled);
  560. theme->set_constant("top_margin", "Tabs", 24 * scale);
  561. theme->set_constant("label_valign_fg", "Tabs", 0 * scale);
  562. theme->set_constant("label_valign_bg", "Tabs", 2 * scale);
  563. theme->set_constant("hseparation", "Tabs", 4 * scale);
  564. // Separators
  565. theme->set_stylebox("separator", "HSeparator", make_stylebox(vseparator_png, 3, 3, 3, 3));
  566. theme->set_stylebox("separator", "VSeparator", make_stylebox(hseparator_png, 3, 3, 3, 3));
  567. theme->set_icon("close", "Icons", make_icon(icon_close_png));
  568. theme->set_font("normal", "Fonts", default_font);
  569. theme->set_font("large", "Fonts", large_font);
  570. theme->set_constant("separation", "HSeparator", 4 * scale);
  571. theme->set_constant("separation", "VSeparator", 4 * scale);
  572. // Dialogs
  573. theme->set_constant("margin", "Dialogs", 8 * scale);
  574. theme->set_constant("button_margin", "Dialogs", 32 * scale);
  575. // FileDialog
  576. theme->set_icon("folder", "FileDialog", make_icon(icon_folder_png));
  577. theme->set_color("files_disabled", "FileDialog", Color(0, 0, 0, 0.7));
  578. // colorPicker
  579. theme->set_constant("margin", "ColorPicker", 4 * scale);
  580. theme->set_constant("sv_width", "ColorPicker", 256 * scale);
  581. theme->set_constant("sv_height", "ColorPicker", 256 * scale);
  582. theme->set_constant("h_width", "ColorPicker", 30 * scale);
  583. theme->set_constant("label_width", "ColorPicker", 10 * scale);
  584. theme->set_icon("screen_picker", "ColorPicker", make_icon(icon_color_pick_png));
  585. theme->set_icon("add_preset", "ColorPicker", make_icon(icon_add_png));
  586. theme->set_icon("color_hue", "ColorPicker", make_icon(color_picker_hue_png));
  587. theme->set_icon("color_sample", "ColorPicker", make_icon(color_picker_sample_png));
  588. theme->set_icon("preset_bg", "ColorPicker", make_icon(mini_checkerboard_png));
  589. theme->set_icon("bg", "ColorPickerButton", make_icon(mini_checkerboard_png));
  590. // TooltipPanel
  591. Ref<StyleBoxTexture> style_tt = make_stylebox(tooltip_bg_png, 4, 4, 4, 4);
  592. for (int i = 0; i < 4; i++)
  593. style_tt->set_expand_margin_size((Margin)i, 4 * scale);
  594. theme->set_stylebox("panel", "TooltipPanel", style_tt);
  595. theme->set_font("font", "TooltipLabel", default_font);
  596. theme->set_color("font_color", "TooltipLabel", Color(0, 0, 0));
  597. theme->set_color("font_color_shadow", "TooltipLabel", Color(0, 0, 0, 0.1));
  598. theme->set_constant("shadow_offset_x", "TooltipLabel", 1);
  599. theme->set_constant("shadow_offset_y", "TooltipLabel", 1);
  600. // RichTextLabel
  601. theme->set_stylebox("focus", "RichTextLabel", focus);
  602. theme->set_stylebox("normal", "RichTextLabel", make_empty_stylebox(0, 0, 0, 0));
  603. theme->set_font("normal_font", "RichTextLabel", default_font);
  604. theme->set_font("bold_font", "RichTextLabel", default_font);
  605. theme->set_font("italics_font", "RichTextLabel", default_font);
  606. theme->set_font("bold_italics_font", "RichTextLabel", default_font);
  607. theme->set_font("mono_font", "RichTextLabel", default_font);
  608. theme->set_color("default_color", "RichTextLabel", control_font_color);
  609. theme->set_color("font_color_selected", "RichTextLabel", font_color_selection);
  610. theme->set_color("selection_color", "RichTextLabel", Color(0.1, 0.1, 1, 0.8));
  611. theme->set_constant("line_separation", "RichTextLabel", 1 * scale);
  612. theme->set_constant("table_hseparation", "RichTextLabel", 3 * scale);
  613. theme->set_constant("table_vseparation", "RichTextLabel", 3 * scale);
  614. // Containers
  615. theme->set_stylebox("bg", "VSplitContainer", make_stylebox(vsplit_bg_png, 1, 1, 1, 1));
  616. theme->set_stylebox("bg", "HSplitContainer", make_stylebox(hsplit_bg_png, 1, 1, 1, 1));
  617. theme->set_icon("grabber", "VSplitContainer", make_icon(vsplitter_png));
  618. theme->set_icon("grabber", "HSplitContainer", make_icon(hsplitter_png));
  619. theme->set_constant("separation", "HBoxContainer", 4 * scale);
  620. theme->set_constant("separation", "VBoxContainer", 4 * scale);
  621. theme->set_constant("margin_left", "MarginContainer", 8 * scale);
  622. theme->set_constant("margin_top", "MarginContainer", 0 * scale);
  623. theme->set_constant("margin_right", "MarginContainer", 0 * scale);
  624. theme->set_constant("margin_bottom", "MarginContainer", 0 * scale);
  625. theme->set_constant("hseparation", "GridContainer", 4 * scale);
  626. theme->set_constant("vseparation", "GridContainer", 4 * scale);
  627. theme->set_constant("separation", "HSplitContainer", 12 * scale);
  628. theme->set_constant("separation", "VSplitContainer", 12 * scale);
  629. theme->set_constant("autohide", "HSplitContainer", 1 * scale);
  630. theme->set_constant("autohide", "VSplitContainer", 1 * scale);
  631. // HButtonArray
  632. theme->set_stylebox("normal", "HButtonArray", sb_button_normal);
  633. theme->set_stylebox("selected", "HButtonArray", sb_button_pressed);
  634. theme->set_stylebox("hover", "HButtonArray", sb_button_hover);
  635. theme->set_font("font", "HButtonArray", default_font);
  636. theme->set_font("font_selected", "HButtonArray", default_font);
  637. theme->set_color("font_color", "HButtonArray", control_font_color_low);
  638. theme->set_color("font_color_selected", "HButtonArray", control_font_color_hover);
  639. theme->set_constant("icon_separator", "HButtonArray", 2 * scale);
  640. theme->set_constant("button_separator", "HButtonArray", 4 * scale);
  641. theme->set_stylebox("focus", "HButtonArray", focus);
  642. // VButtonArray
  643. theme->set_stylebox("normal", "VButtonArray", sb_button_normal);
  644. theme->set_stylebox("selected", "VButtonArray", sb_button_pressed);
  645. theme->set_stylebox("hover", "VButtonArray", sb_button_hover);
  646. theme->set_font("font", "VButtonArray", default_font);
  647. theme->set_font("font_selected", "VButtonArray", default_font);
  648. theme->set_color("font_color", "VButtonArray", control_font_color_low);
  649. theme->set_color("font_color_selected", "VButtonArray", control_font_color_hover);
  650. theme->set_constant("icon_separator", "VButtonArray", 2 * scale);
  651. theme->set_constant("button_separator", "VButtonArray", 4 * scale);
  652. theme->set_stylebox("focus", "VButtonArray", focus);
  653. // ReferenceRect
  654. Ref<StyleBoxTexture> ttnc = make_stylebox(full_panel_bg_png, 8, 8, 8, 8);
  655. ttnc->set_draw_center(false);
  656. theme->set_stylebox("border", "ReferenceRect", make_stylebox(reference_border_png, 4, 4, 4, 4));
  657. theme->set_stylebox("panelnc", "Panel", ttnc);
  658. theme->set_stylebox("panelf", "Panel", tc_sb);
  659. Ref<StyleBoxTexture> sb_pc = make_stylebox(tab_container_bg_png, 4, 4, 4, 4, 7, 7, 7, 7);
  660. theme->set_stylebox("panel", "PanelContainer", sb_pc);
  661. theme->set_icon("minus", "GraphEdit", make_icon(icon_zoom_less_png));
  662. theme->set_icon("reset", "GraphEdit", make_icon(icon_zoom_reset_png));
  663. theme->set_icon("more", "GraphEdit", make_icon(icon_zoom_more_png));
  664. theme->set_icon("snap", "GraphEdit", make_icon(icon_snap_grid_png));
  665. theme->set_stylebox("bg", "GraphEdit", make_stylebox(tree_bg_png, 4, 4, 4, 5));
  666. theme->set_color("grid_minor", "GraphEdit", Color(1, 1, 1, 0.05));
  667. theme->set_color("grid_major", "GraphEdit", Color(1, 1, 1, 0.2));
  668. theme->set_constant("bezier_len_pos", "GraphEdit", 80 * scale);
  669. theme->set_constant("bezier_len_neg", "GraphEdit", 160 * scale);
  670. theme->set_icon("logo", "Icons", make_icon(logo_png));
  671. // Theme
  672. default_icon = make_icon(error_icon_png);
  673. default_style = make_stylebox(error_icon_png, 2, 2, 2, 2);
  674. memdelete(tex_cache);
  675. }
  676. void make_default_theme(bool p_hidpi, Ref<Font> p_font) {
  677. Ref<Theme> t;
  678. t.instance();
  679. Ref<StyleBox> default_style;
  680. Ref<Texture> default_icon;
  681. Ref<BitmapFont> default_font;
  682. if (p_font.is_valid()) {
  683. default_font = p_font;
  684. } else if (p_hidpi) {
  685. default_font = make_font2(_hidpi_font_height, _hidpi_font_ascent, _hidpi_font_charcount, &_hidpi_font_charrects[0][0], _hidpi_font_kerning_pair_count, &_hidpi_font_kerning_pairs[0][0], _hidpi_font_img_width, _hidpi_font_img_height, _hidpi_font_img_data);
  686. } else {
  687. default_font = make_font2(_lodpi_font_height, _lodpi_font_ascent, _lodpi_font_charcount, &_lodpi_font_charrects[0][0], _lodpi_font_kerning_pair_count, &_lodpi_font_kerning_pairs[0][0], _lodpi_font_img_width, _lodpi_font_img_height, _lodpi_font_img_data);
  688. }
  689. Ref<BitmapFont> large_font = default_font;
  690. fill_default_theme(t, default_font, large_font, default_icon, default_style, p_hidpi ? 2.0 : 1.0);
  691. Theme::set_default(t);
  692. Theme::set_default_icon(default_icon);
  693. Theme::set_default_style(default_style);
  694. Theme::set_default_font(default_font);
  695. }
  696. void clear_default_theme() {
  697. Theme::set_default(Ref<Theme>());
  698. Theme::set_default_icon(Ref<Texture>());
  699. Theme::set_default_style(Ref<StyleBox>());
  700. Theme::set_default_font(Ref<Font>());
  701. }