| 
									
										
										
										
											2016-06-18 13:32:03 +08:00
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2017-01-16 08:04:19 +01:00
										 |  |  | /*  editor_themes.cpp                                                    */ | 
					
						
							| 
									
										
										
										
											2016-06-18 13:32:03 +08:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							| 
									
										
										
										
											2017-08-27 14:16:55 +02:00
										 |  |  | /*                      https://godotengine.org                          */ | 
					
						
							| 
									
										
										
										
											2016-06-18 13:32:03 +08:00
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2017-01-01 22:01:57 +01:00
										 |  |  | /* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							| 
									
										
										
										
											2017-04-08 00:11:42 +02:00
										 |  |  | /* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md)    */ | 
					
						
							| 
									
										
										
										
											2016-06-18 13:32:03 +08:00
										 |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* Permission is hereby granted, free of charge, to any person obtaining */ | 
					
						
							|  |  |  | /* a copy of this software and associated documentation files (the       */ | 
					
						
							|  |  |  | /* "Software"), to deal in the Software without restriction, including   */ | 
					
						
							|  |  |  | /* without limitation the rights to use, copy, modify, merge, publish,   */ | 
					
						
							|  |  |  | /* distribute, sublicense, and/or sell copies of the Software, and to    */ | 
					
						
							|  |  |  | /* permit persons to whom the Software is furnished to do so, subject to */ | 
					
						
							|  |  |  | /* the following conditions:                                             */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* The above copyright notice and this permission notice shall be        */ | 
					
						
							|  |  |  | /* included in all copies or substantial portions of the Software.       */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,       */ | 
					
						
							|  |  |  | /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF    */ | 
					
						
							|  |  |  | /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/ | 
					
						
							|  |  |  | /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY  */ | 
					
						
							|  |  |  | /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,  */ | 
					
						
							|  |  |  | /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE     */ | 
					
						
							|  |  |  | /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | #include "editor_themes.h"
 | 
					
						
							| 
									
										
										
										
											2017-01-16 08:04:19 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-18 13:32:03 +08:00
										 |  |  | #include "core/io/resource_loader.h"
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | #include "editor_fonts.h"
 | 
					
						
							| 
									
										
										
										
											2017-08-18 21:34:09 -05:00
										 |  |  | #include "editor_icons.gen.h"
 | 
					
						
							| 
									
										
										
										
											2016-09-13 11:05:47 -03:00
										 |  |  | #include "editor_scale.h"
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | #include "editor_settings.h"
 | 
					
						
							| 
									
										
										
										
											2017-08-18 21:34:09 -05:00
										 |  |  | #include "modules/svg/image_loader_svg.h"
 | 
					
						
							|  |  |  | #include "time.h"
 | 
					
						
							| 
									
										
										
										
											2016-06-18 13:32:03 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-27 14:44:48 -05:00
										 |  |  | static Ref<StyleBoxTexture> make_stylebox(Ref<Texture> p_texture, 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) { | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 	Ref<StyleBoxTexture> style(memnew(StyleBoxTexture)); | 
					
						
							| 
									
										
										
										
											2017-09-27 14:44:48 -05:00
										 |  |  | 	style->set_texture(p_texture); | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 	style->set_margin_size(MARGIN_LEFT, p_left * EDSCALE); | 
					
						
							|  |  |  | 	style->set_margin_size(MARGIN_RIGHT, p_right * EDSCALE); | 
					
						
							|  |  |  | 	style->set_margin_size(MARGIN_BOTTOM, p_botton * EDSCALE); | 
					
						
							|  |  |  | 	style->set_margin_size(MARGIN_TOP, p_top * EDSCALE); | 
					
						
							|  |  |  | 	style->set_default_margin(MARGIN_LEFT, p_margin_left * EDSCALE); | 
					
						
							|  |  |  | 	style->set_default_margin(MARGIN_RIGHT, p_margin_right * EDSCALE); | 
					
						
							|  |  |  | 	style->set_default_margin(MARGIN_BOTTOM, p_margin_botton * EDSCALE); | 
					
						
							|  |  |  | 	style->set_default_margin(MARGIN_TOP, p_margin_top * EDSCALE); | 
					
						
							|  |  |  | 	style->set_draw_center(p_draw_center); | 
					
						
							|  |  |  | 	return style; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static Ref<StyleBoxEmpty> make_empty_stylebox(float p_margin_left = -1, float p_margin_top = -1, float p_margin_right = -1, float p_margin_bottom = -1) { | 
					
						
							|  |  |  | 	Ref<StyleBoxEmpty> style(memnew(StyleBoxEmpty)); | 
					
						
							|  |  |  | 	style->set_default_margin(MARGIN_LEFT, p_margin_left * EDSCALE); | 
					
						
							|  |  |  | 	style->set_default_margin(MARGIN_RIGHT, p_margin_right * EDSCALE); | 
					
						
							|  |  |  | 	style->set_default_margin(MARGIN_BOTTOM, p_margin_bottom * EDSCALE); | 
					
						
							|  |  |  | 	style->set_default_margin(MARGIN_TOP, p_margin_top * EDSCALE); | 
					
						
							|  |  |  | 	return style; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-27 14:44:48 -05:00
										 |  |  | 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) { | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 	Ref<StyleBoxFlat> style(memnew(StyleBoxFlat)); | 
					
						
							| 
									
										
										
										
											2017-09-27 14:44:48 -05:00
										 |  |  | 	style->set_bg_color(p_color); | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 	style->set_default_margin(MARGIN_LEFT, p_margin_left * EDSCALE); | 
					
						
							|  |  |  | 	style->set_default_margin(MARGIN_RIGHT, p_margin_right * EDSCALE); | 
					
						
							|  |  |  | 	style->set_default_margin(MARGIN_BOTTOM, p_margin_bottom * EDSCALE); | 
					
						
							|  |  |  | 	style->set_default_margin(MARGIN_TOP, p_margin_top * EDSCALE); | 
					
						
							|  |  |  | 	return style; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-27 14:44:48 -05:00
										 |  |  | static Ref<StyleBoxLine> make_line_stylebox(Color p_color, int p_thickness = 1, float p_grow = 1, bool p_vertical = false) { | 
					
						
							| 
									
										
										
										
											2017-07-18 01:09:19 -05:00
										 |  |  | 	Ref<StyleBoxLine> style(memnew(StyleBoxLine)); | 
					
						
							| 
									
										
										
										
											2017-09-27 14:44:48 -05:00
										 |  |  | 	style->set_color(p_color); | 
					
						
							|  |  |  | 	style->set_grow(p_grow); | 
					
						
							|  |  |  | 	style->set_thickness(p_thickness); | 
					
						
							|  |  |  | 	style->set_vertical(p_vertical); | 
					
						
							| 
									
										
										
										
											2017-07-18 01:09:19 -05:00
										 |  |  | 	return style; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | static Ref<StyleBoxFlat> change_border_color(Ref<StyleBoxFlat> p_style, Color p_color) { | 
					
						
							|  |  |  | 	Ref<StyleBoxFlat> style = p_style->duplicate(); | 
					
						
							| 
									
										
										
										
											2017-06-10 11:40:45 -07:00
										 |  |  | 	style->set_border_color_all(p_color); | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 	return style; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-27 14:44:48 -05:00
										 |  |  | Ref<ImageTexture> editor_generate_icon(int p_index, bool p_convert_color, float p_scale = EDSCALE, bool p_force_filter = false) { | 
					
						
							| 
									
										
										
										
											2017-08-30 20:29:35 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-18 21:34:09 -05:00
										 |  |  | 	Ref<ImageTexture> icon = memnew(ImageTexture); | 
					
						
							|  |  |  | 	Ref<Image> img = memnew(Image); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-27 21:50:46 -05:00
										 |  |  | 	// dumb gizmo check
 | 
					
						
							|  |  |  | 	bool is_gizmo = String(editor_icons_names[p_index]).begins_with("Gizmo"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-27 14:44:48 -05:00
										 |  |  | 	ImageLoaderSVG::create_image_from_string(img, editor_icons_sources[p_index], p_scale, true, p_convert_color); | 
					
						
							| 
									
										
										
										
											2017-08-30 20:29:35 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-27 14:44:48 -05:00
										 |  |  | 	if ((p_scale - (float)((int)p_scale)) > 0.0 || is_gizmo || p_force_filter) | 
					
						
							| 
									
										
										
										
											2017-08-18 21:34:09 -05:00
										 |  |  | 		icon->create_from_image(img); // in this case filter really helps
 | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		icon->create_from_image(img, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return icon; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-30 20:29:35 +02:00
										 |  |  | #ifndef ADD_CONVERT_COLOR
 | 
					
						
							|  |  |  | #define ADD_CONVERT_COLOR(dictionary, old_color, new_color) dictionary[Color::html(old_color)] = Color::html(new_color)
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-27 14:44:48 -05:00
										 |  |  | void editor_register_and_generate_icons(Ref<Theme> p_theme, bool p_dark_theme = true, int p_thumb_size = 32, bool p_only_thumbs = false) { | 
					
						
							| 
									
										
										
										
											2017-08-18 21:34:09 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifdef SVG_ENABLED
 | 
					
						
							| 
									
										
										
										
											2017-08-30 20:29:35 +02:00
										 |  |  | 	Dictionary dark_icon_color_dictionary; | 
					
						
							| 
									
										
										
										
											2017-09-27 14:44:48 -05:00
										 |  |  | 	if (!p_dark_theme) { | 
					
						
							| 
									
										
										
										
											2017-09-13 21:30:07 -05:00
										 |  |  | 		//convert color:                              FROM       TO
 | 
					
						
							|  |  |  | 		ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#e0e0e0", "#4f4f4f"); // common icon color
 | 
					
						
							|  |  |  | 		ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#ffffff", "#000000"); // white
 | 
					
						
							|  |  |  | 		ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#b4b4b4", "#000000"); // script darker color
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#cea4f1", "#bb6dff"); // animation
 | 
					
						
							|  |  |  | 		ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#fc9c9c", "#ff5f5f"); // spatial
 | 
					
						
							|  |  |  | 		ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#a5b7f3", "#6d90ff"); // 2d
 | 
					
						
							|  |  |  | 		ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#708cea", "#0843ff"); // 2d dark
 | 
					
						
							|  |  |  | 		ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#a5efac", "#29d739"); // control
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// rainbow
 | 
					
						
							|  |  |  | 		ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#ff7070", "#ff2929"); // red
 | 
					
						
							|  |  |  | 		ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#ffeb70", "#ffe337"); // yellow
 | 
					
						
							|  |  |  | 		ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#9dff70", "#74ff34"); // green
 | 
					
						
							|  |  |  | 		ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#70ffb9", "#2cff98"); // aqua
 | 
					
						
							|  |  |  | 		ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#70deff", "#22ccff"); // blue
 | 
					
						
							|  |  |  | 		ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#9f70ff", "#702aff"); // purple
 | 
					
						
							|  |  |  | 		ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#ff70ac", "#ff2781"); // pink
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// audio gradient
 | 
					
						
							|  |  |  | 		ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#ff8484", "#ff4040"); // red
 | 
					
						
							|  |  |  | 		ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#e1dc7a", "#d6cf4b"); // yellow
 | 
					
						
							|  |  |  | 		ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#84ffb1", "#00f010"); // green
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#ffd684", "#fea900"); // mesh (orange)
 | 
					
						
							|  |  |  | 		ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#40a2ff", "#68b6ff"); // shape (blue)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#ff8484", "#ff3333"); // remove (red)
 | 
					
						
							|  |  |  | 		ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#84ffb1", "#00db50"); // add (green)
 | 
					
						
							|  |  |  | 		ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#84c2ff", "#5caeff"); // selection (blue)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#ea686c", "#e3383d"); // key xform (red)
 | 
					
						
							| 
									
										
										
										
											2017-10-02 21:31:32 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#69ecbd", "#25e3a0"); // VS variant
 | 
					
						
							|  |  |  | 		ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#8da6f0", "#6d8eeb"); // VS bool
 | 
					
						
							|  |  |  | 		ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#7dc6ef", "#4fb2e9"); // VS int
 | 
					
						
							|  |  |  | 		ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#61daf4", "#27ccf0"); // VS float
 | 
					
						
							|  |  |  | 		ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#6ba7ec", "#4690e7"); // VS string
 | 
					
						
							|  |  |  | 		ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#bd91f1", "#ad76ee"); // VS vector2
 | 
					
						
							|  |  |  | 		ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#f191a5", "#ee758e"); // VS rect
 | 
					
						
							|  |  |  | 		ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#e286f0", "#dc6aed"); // VS vector3
 | 
					
						
							|  |  |  | 		ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#c4ec69", "#96ce1a"); // VS transform2D
 | 
					
						
							|  |  |  | 		ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#f77070", "#f77070"); // VS plane
 | 
					
						
							|  |  |  | 		ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#ec69a3", "#ec69a3"); // VS quat
 | 
					
						
							|  |  |  | 		ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#ee7991", "#ee7991"); // VS aabb
 | 
					
						
							|  |  |  | 		ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#e3ec69", "#b2bb19"); // VS basis
 | 
					
						
							|  |  |  | 		ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#f6a86e", "#f49047"); // VS transform
 | 
					
						
							|  |  |  | 		ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#6993ec", "#6993ec"); // VS path
 | 
					
						
							|  |  |  | 		ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#69ec9a", "#2ce573"); // VS rid
 | 
					
						
							|  |  |  | 		ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#79f3e8", "#12d5c3"); // VS object
 | 
					
						
							|  |  |  | 		ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#77edb1", "#57e99f"); // VS dict
 | 
					
						
							| 
									
										
										
										
											2017-09-13 21:30:07 -05:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// these ones should be converted even if we are using a dark theme
 | 
					
						
							|  |  |  | 	const Color error_color = p_theme->get_color("error_color", "Editor"); | 
					
						
							|  |  |  | 	const Color success_color = p_theme->get_color("success_color", "Editor"); | 
					
						
							|  |  |  | 	const Color warning_color = p_theme->get_color("warning_color", "Editor"); | 
					
						
							|  |  |  | 	dark_icon_color_dictionary[Color::html("#ff5d5d")] = error_color; | 
					
						
							|  |  |  | 	dark_icon_color_dictionary[Color::html("#45ff8b")] = success_color; | 
					
						
							|  |  |  | 	dark_icon_color_dictionary[Color::html("#ffdd65")] = warning_color; | 
					
						
							| 
									
										
										
										
											2017-08-30 20:29:35 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	List<String> exceptions; | 
					
						
							|  |  |  | 	exceptions.push_back("EditorPivot"); | 
					
						
							|  |  |  | 	exceptions.push_back("EditorHandle"); | 
					
						
							|  |  |  | 	exceptions.push_back("Editor3DHandle"); | 
					
						
							|  |  |  | 	exceptions.push_back("Godot"); | 
					
						
							|  |  |  | 	exceptions.push_back("PanoramaSky"); | 
					
						
							|  |  |  | 	exceptions.push_back("ProceduralSky"); | 
					
						
							|  |  |  | 	exceptions.push_back("EditorControlAnchor"); | 
					
						
							|  |  |  | 	exceptions.push_back("DefaultProjectIcon"); | 
					
						
							| 
									
										
										
										
											2017-09-14 00:45:00 -05:00
										 |  |  | 	exceptions.push_back("GuiCloseCustomizable"); | 
					
						
							|  |  |  | 	exceptions.push_back("GuiGraphNodePort"); | 
					
						
							|  |  |  | 	exceptions.push_back("GuiResizer"); | 
					
						
							| 
									
										
										
										
											2017-09-21 15:55:07 -05:00
										 |  |  | 	exceptions.push_back("ZoomMore"); | 
					
						
							|  |  |  | 	exceptions.push_back("ZoomLess"); | 
					
						
							|  |  |  | 	exceptions.push_back("ZoomReset"); | 
					
						
							|  |  |  | 	exceptions.push_back("LockViewport"); | 
					
						
							|  |  |  | 	exceptions.push_back("GroupViewport"); | 
					
						
							| 
									
										
										
										
											2017-08-18 21:34:09 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	clock_t begin_time = clock(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-13 21:30:07 -05:00
										 |  |  | 	ImageLoaderSVG::set_convert_colors(&dark_icon_color_dictionary); | 
					
						
							| 
									
										
										
										
											2017-09-08 04:31:12 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// generate icons
 | 
					
						
							| 
									
										
										
										
											2017-09-27 14:44:48 -05:00
										 |  |  | 	if (!p_only_thumbs) | 
					
						
							| 
									
										
										
										
											2017-09-08 02:32:43 -05:00
										 |  |  | 		for (int i = 0; i < editor_icons_count; i++) { | 
					
						
							|  |  |  | 			List<String>::Element *is_exception = exceptions.find(editor_icons_names[i]); | 
					
						
							| 
									
										
										
										
											2017-09-08 04:31:12 +02:00
										 |  |  | 			if (is_exception) exceptions.erase(is_exception); | 
					
						
							| 
									
										
										
										
											2017-09-13 21:30:07 -05:00
										 |  |  | 			Ref<ImageTexture> icon = editor_generate_icon(i, !is_exception); | 
					
						
							| 
									
										
										
										
											2017-09-08 02:32:43 -05:00
										 |  |  | 			p_theme->set_icon(editor_icons_names[i], "EditorIcons", icon); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-08 14:41:44 -05:00
										 |  |  | 	// generate thumb files with the given thumb size
 | 
					
						
							| 
									
										
										
										
											2017-09-08 04:31:12 +02:00
										 |  |  | 	bool force_filter = !(p_thumb_size == 64 && p_thumb_size == 32); // we dont need filter with original resolution
 | 
					
						
							| 
									
										
										
										
											2017-09-08 02:32:43 -05:00
										 |  |  | 	if (p_thumb_size >= 64) { | 
					
						
							|  |  |  | 		float scale = (float)p_thumb_size / 64.0 * EDSCALE; | 
					
						
							|  |  |  | 		for (int i = 0; i < editor_bg_thumbs_count; i++) { | 
					
						
							|  |  |  | 			int index = editor_bg_thumbs_indices[i]; | 
					
						
							| 
									
										
										
										
											2017-09-08 04:31:12 +02:00
										 |  |  | 			List<String>::Element *is_exception = exceptions.find(editor_icons_names[index]); | 
					
						
							|  |  |  | 			if (is_exception) exceptions.erase(is_exception); | 
					
						
							| 
									
										
										
										
											2017-09-27 14:44:48 -05:00
										 |  |  | 			Ref<ImageTexture> icon = editor_generate_icon(index, !p_dark_theme && !is_exception, scale, force_filter); | 
					
						
							| 
									
										
										
										
											2017-09-08 02:32:43 -05:00
										 |  |  | 			p_theme->set_icon(editor_icons_names[index], "EditorIcons", icon); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		float scale = (float)p_thumb_size / 32.0 * EDSCALE; | 
					
						
							|  |  |  | 		for (int i = 0; i < editor_md_thumbs_count; i++) { | 
					
						
							|  |  |  | 			int index = editor_md_thumbs_indices[i]; | 
					
						
							| 
									
										
										
										
											2017-09-08 04:31:12 +02:00
										 |  |  | 			List<String>::Element *is_exception = exceptions.find(editor_icons_names[index]); | 
					
						
							|  |  |  | 			if (is_exception) exceptions.erase(is_exception); | 
					
						
							| 
									
										
										
										
											2017-09-27 14:44:48 -05:00
										 |  |  | 			Ref<ImageTexture> icon = editor_generate_icon(index, !p_dark_theme && !is_exception, scale, force_filter); | 
					
						
							| 
									
										
										
										
											2017-09-08 02:32:43 -05:00
										 |  |  | 			p_theme->set_icon(editor_icons_names[index], "EditorIcons", icon); | 
					
						
							| 
									
										
										
										
											2017-08-30 20:29:35 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-08-18 21:34:09 -05:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-08-30 20:29:35 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-08 04:31:12 +02:00
										 |  |  | 	ImageLoaderSVG::set_convert_colors(NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-18 21:34:09 -05:00
										 |  |  | 	clock_t end_time = clock(); | 
					
						
							| 
									
										
										
										
											2017-08-30 20:29:35 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-18 21:34:09 -05:00
										 |  |  | 	double time_d = (double)(end_time - begin_time) / CLOCKS_PER_SEC; | 
					
						
							|  |  |  | 	print_line("SVG_GENERATION TIME: " + rtos(time_d)); | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 	print_line("Sorry no icons for you"); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Ref<Theme> create_editor_theme(const Ref<Theme> p_theme) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	Ref<Theme> theme = Ref<Theme>(memnew(Theme)); | 
					
						
							| 
									
										
										
										
											2016-06-18 13:32:03 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-14 23:40:17 -05:00
										 |  |  | 	const float default_contrast = 0.25; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-15 19:30:53 +02:00
										 |  |  | 	//Theme settings
 | 
					
						
							| 
									
										
										
										
											2017-09-26 20:08:25 +09:00
										 |  |  | 	Color accent_color = EDITOR_DEF("interface/theme/accent_color", Color::html("#699ce8")); | 
					
						
							|  |  |  | 	Color base_color = EDITOR_DEF("interface/theme/base_color", Color::html("#323b4f")); | 
					
						
							| 
									
										
										
										
											2017-07-14 23:40:17 -05:00
										 |  |  | 	float contrast = EDITOR_DEF("interface/theme/contrast", default_contrast); | 
					
						
							| 
									
										
										
										
											2017-08-15 19:30:53 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-26 16:14:45 +01:00
										 |  |  | 	int preset = EDITOR_DEF("interface/theme/preset", 0); | 
					
						
							| 
									
										
										
										
											2017-08-30 21:19:06 +02:00
										 |  |  | 	int icon_font_color_setting = EDITOR_DEF("interface/theme/icon_and_font_color", 0); | 
					
						
							| 
									
										
										
										
											2017-07-14 23:40:17 -05:00
										 |  |  | 	bool highlight_tabs = EDITOR_DEF("interface/theme/highlight_tabs", false); | 
					
						
							|  |  |  | 	int border_size = EDITOR_DEF("interface/theme/border_size", 1); | 
					
						
							| 
									
										
										
										
											2017-05-26 16:14:45 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-14 00:45:00 -05:00
										 |  |  | 	bool use_gn_headers = EDITOR_DEF("interface/theme/use_graph_node_headers", false); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-02 18:28:35 +02:00
										 |  |  | 	Color script_bg_color = EDITOR_DEF("text_editor/highlighting/background_color", Color(0, 0, 0, 0)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-26 20:08:25 +09:00
										 |  |  | 	Color preset_accent_color; | 
					
						
							|  |  |  | 	Color preset_base_color; | 
					
						
							|  |  |  | 	float preset_contrast; | 
					
						
							| 
									
										
										
										
											2017-05-26 16:14:45 +01:00
										 |  |  | 	switch (preset) { | 
					
						
							|  |  |  | 		case 0: { // Default
 | 
					
						
							| 
									
										
										
										
											2017-09-26 20:08:25 +09:00
										 |  |  | 			preset_accent_color = Color::html("#699ce8"); | 
					
						
							|  |  |  | 			preset_base_color = Color::html("#323b4f"); | 
					
						
							|  |  |  | 			preset_contrast = default_contrast; | 
					
						
							| 
									
										
										
										
											2017-05-26 16:14:45 +01:00
										 |  |  | 		} break; | 
					
						
							|  |  |  | 		case 1: { // Grey
 | 
					
						
							| 
									
										
										
										
											2017-09-27 14:44:48 -05:00
										 |  |  | 			preset_accent_color = Color::html("#b8e4ff"); | 
					
						
							| 
									
										
										
										
											2017-09-26 20:08:25 +09:00
										 |  |  | 			preset_base_color = Color::html("#3d3d3d"); | 
					
						
							|  |  |  | 			preset_contrast = 0.2; | 
					
						
							| 
									
										
										
										
											2017-05-26 16:14:45 +01:00
										 |  |  | 		} break; | 
					
						
							|  |  |  | 		case 2: { // Godot 2
 | 
					
						
							| 
									
										
										
										
											2017-09-26 20:08:25 +09:00
										 |  |  | 			preset_accent_color = Color::html("#86ace2"); | 
					
						
							|  |  |  | 			preset_base_color = Color::html("#3C3A44"); | 
					
						
							|  |  |  | 			preset_contrast = 0.25; | 
					
						
							| 
									
										
										
										
											2017-05-26 16:14:45 +01:00
										 |  |  | 		} break; | 
					
						
							|  |  |  | 		case 3: { // Arc
 | 
					
						
							| 
									
										
										
										
											2017-09-26 20:08:25 +09:00
										 |  |  | 			preset_accent_color = Color::html("#5294e2"); | 
					
						
							|  |  |  | 			preset_base_color = Color::html("#383c4a"); | 
					
						
							|  |  |  | 			preset_contrast = 0.25; | 
					
						
							| 
									
										
										
										
											2017-05-26 16:14:45 +01:00
										 |  |  | 		} break; | 
					
						
							| 
									
										
										
										
											2017-08-15 19:30:53 +02:00
										 |  |  | 		case 4: { // Light
 | 
					
						
							| 
									
										
										
										
											2017-09-26 20:08:25 +09:00
										 |  |  | 			preset_accent_color = Color::html("#2070ff"); | 
					
						
							|  |  |  | 			preset_base_color = Color::html("#ffffff"); | 
					
						
							|  |  |  | 			preset_contrast = 0.08; | 
					
						
							| 
									
										
										
										
											2017-08-15 19:30:53 +02:00
										 |  |  | 		} break; | 
					
						
							| 
									
										
										
										
											2017-09-27 14:44:48 -05:00
										 |  |  | 		case 5: { // Alien
 | 
					
						
							|  |  |  | 			preset_accent_color = Color::html("#1bfe99"); | 
					
						
							|  |  |  | 			preset_base_color = Color::html("#2f373f"); | 
					
						
							|  |  |  | 			preset_contrast = 0.25; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-09-26 20:08:25 +09:00
										 |  |  | 		default: { // Custom
 | 
					
						
							|  |  |  | 			accent_color = EDITOR_DEF("interface/theme/accent_color", Color::html("#699ce8")); | 
					
						
							|  |  |  | 			base_color = EDITOR_DEF("interface/theme/base_color", Color::html("#323b4f")); | 
					
						
							|  |  |  | 			contrast = EDITOR_DEF("interface/theme/contrast", default_contrast); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-27 14:44:48 -05:00
										 |  |  | 	if (preset != 6) { | 
					
						
							| 
									
										
										
										
											2017-09-26 20:08:25 +09:00
										 |  |  | 		accent_color = preset_accent_color; | 
					
						
							|  |  |  | 		base_color = preset_base_color; | 
					
						
							|  |  |  | 		contrast = preset_contrast; | 
					
						
							|  |  |  | 		EditorSettings::get_singleton()->set_initial_value("interface/theme/accent_color", accent_color); | 
					
						
							|  |  |  | 		EditorSettings::get_singleton()->set_initial_value("interface/theme/base_color", base_color); | 
					
						
							|  |  |  | 		EditorSettings::get_singleton()->set_initial_value("interface/theme/contrast", contrast); | 
					
						
							| 
									
										
										
										
											2017-05-26 16:14:45 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-09-26 20:08:25 +09:00
										 |  |  | 	EditorSettings::get_singleton()->set_manually("interface/theme/preset", preset); | 
					
						
							|  |  |  | 	EditorSettings::get_singleton()->set_manually("interface/theme/accent_color", accent_color); | 
					
						
							|  |  |  | 	EditorSettings::get_singleton()->set_manually("interface/theme/base_color", base_color); | 
					
						
							|  |  |  | 	EditorSettings::get_singleton()->set_manually("interface/theme/contrast", contrast); | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-15 19:30:53 +02:00
										 |  |  | 	//Colors
 | 
					
						
							| 
									
										
										
										
											2017-08-30 21:19:06 +02:00
										 |  |  | 	int AUTO_COLOR = 0; | 
					
						
							|  |  |  | 	int LIGHT_COLOR = 2; | 
					
						
							|  |  |  | 	bool dark_theme = (icon_font_color_setting == AUTO_COLOR && ((base_color.r + base_color.g + base_color.b) / 3.0) < 0.5) || icon_font_color_setting == LIGHT_COLOR; | 
					
						
							| 
									
										
										
										
											2017-08-15 19:30:53 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	const Color dark_color_1 = base_color.linear_interpolate(Color(0, 0, 0, 1), contrast); | 
					
						
							|  |  |  | 	const Color dark_color_2 = base_color.linear_interpolate(Color(0, 0, 0, 1), contrast * 1.5); | 
					
						
							|  |  |  | 	const Color dark_color_3 = base_color.linear_interpolate(Color(0, 0, 0, 1), contrast * 2); | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	const Color background_color = dark_color_2; | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	// white (dark theme) or black (light theme), will be used to generate the rest of the colors
 | 
					
						
							|  |  |  | 	const Color mono_color = dark_theme ? Color(1, 1, 1) : Color(0, 0, 0); | 
					
						
							| 
									
										
										
										
											2017-07-14 23:40:17 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	const Color contrast_color_1 = base_color.linear_interpolate(mono_color, MAX(contrast, default_contrast)); | 
					
						
							|  |  |  | 	const Color contrast_color_2 = base_color.linear_interpolate(mono_color, MAX(contrast * 1.5, default_contrast * 1.5)); | 
					
						
							| 
									
										
										
										
											2017-08-18 21:34:09 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	const Color font_color = mono_color.linear_interpolate(base_color, 0.25); | 
					
						
							|  |  |  | 	const Color font_color_hl = mono_color.linear_interpolate(base_color, 0.15); | 
					
						
							|  |  |  | 	const Color font_color_disabled = Color(mono_color.r, mono_color.g, mono_color.b, 0.3); | 
					
						
							|  |  |  | 	const Color color_disabled = mono_color.inverted().linear_interpolate(base_color, 0.7); | 
					
						
							|  |  |  | 	const Color color_disabled_bg = mono_color.inverted().linear_interpolate(base_color, 0.9); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	const Color separator_color = Color(mono_color.r, mono_color.g, mono_color.b, 0.1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	const Color highlight_color = Color(mono_color.r, mono_color.g, mono_color.b, 0.2); | 
					
						
							| 
									
										
										
										
											2017-07-18 01:09:19 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	theme->set_color("accent_color", "Editor", accent_color); | 
					
						
							| 
									
										
										
										
											2017-09-25 21:43:20 -05:00
										 |  |  | 	theme->set_color("highlight_color", "Editor", highlight_color); | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 	theme->set_color("base_color", "Editor", base_color); | 
					
						
							|  |  |  | 	theme->set_color("dark_color_1", "Editor", dark_color_1); | 
					
						
							|  |  |  | 	theme->set_color("dark_color_2", "Editor", dark_color_2); | 
					
						
							|  |  |  | 	theme->set_color("dark_color_3", "Editor", dark_color_3); | 
					
						
							| 
									
										
										
										
											2017-08-29 16:56:43 +02:00
										 |  |  | 	theme->set_color("contrast_color_1", "Editor", contrast_color_1); | 
					
						
							|  |  |  | 	theme->set_color("contrast_color_2", "Editor", contrast_color_2); | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-13 14:07:05 -05:00
										 |  |  | 	theme->set_color("font_color", "Editor", font_color); | 
					
						
							| 
									
										
										
										
											2017-10-12 13:59:25 -05:00
										 |  |  | 	theme->set_color("highlighted_font_color", "Editor", font_color_hl); | 
					
						
							| 
									
										
										
										
											2017-09-25 21:43:20 -05:00
										 |  |  | 	theme->set_color("disabled_font_color", "Editor", font_color_disabled); | 
					
						
							| 
									
										
										
										
											2017-09-13 14:07:05 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-25 21:43:20 -05:00
										 |  |  | 	theme->set_color("mono_color", "Editor", mono_color); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Color success_color = accent_color.linear_interpolate(Color(0.2, 1, 0.2), 0.6) * 1.2; | 
					
						
							| 
									
										
										
										
											2017-09-27 14:44:48 -05:00
										 |  |  | 	Color warning_color = accent_color.linear_interpolate(Color(1, 1, 0), 0.7) * 1.2; | 
					
						
							| 
									
										
										
										
											2017-09-25 21:43:20 -05:00
										 |  |  | 	Color error_color = accent_color.linear_interpolate(Color(1, 0, 0), 0.8) * 1.7; | 
					
						
							|  |  |  | 	if (!dark_theme) { | 
					
						
							|  |  |  | 		// yellow on white themes is a P.I.T.A.
 | 
					
						
							|  |  |  | 		warning_color = accent_color.linear_interpolate(Color(1, 0.8, 0), 0.9); | 
					
						
							|  |  |  | 		warning_color = warning_color.linear_interpolate(mono_color, 0.2); | 
					
						
							|  |  |  | 		success_color = success_color.linear_interpolate(mono_color, 0.2); | 
					
						
							|  |  |  | 		error_color = error_color.linear_interpolate(mono_color, 0.2); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-07-31 13:19:45 -05:00
										 |  |  | 	theme->set_color("success_color", "Editor", success_color); | 
					
						
							|  |  |  | 	theme->set_color("warning_color", "Editor", warning_color); | 
					
						
							|  |  |  | 	theme->set_color("error_color", "Editor", error_color); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-20 19:29:52 -05:00
										 |  |  | 	// 2d grid color
 | 
					
						
							| 
									
										
										
										
											2017-09-25 21:43:20 -05:00
										 |  |  | 	const Color grid_minor_color = mono_color * Color(1.0, 1.0, 1.0, 0.07); | 
					
						
							|  |  |  | 	const Color grid_major_color = Color(font_color_disabled.r, font_color_disabled.g, font_color_disabled.b, 0.15); | 
					
						
							| 
									
										
										
										
											2017-09-20 19:29:52 -05:00
										 |  |  | 	theme->set_color("grid_major_color", "Editor", grid_major_color); | 
					
						
							|  |  |  | 	theme->set_color("grid_minor_color", "Editor", grid_minor_color); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-08 02:32:43 -05:00
										 |  |  | 	const int thumb_size = EDITOR_DEF("filesystem/file_dialog/thumbnail_size", 64); | 
					
						
							| 
									
										
										
										
											2017-08-15 19:30:53 +02:00
										 |  |  | 	theme->set_constant("scale", "Editor", EDSCALE); | 
					
						
							| 
									
										
										
										
											2017-09-08 02:32:43 -05:00
										 |  |  | 	theme->set_constant("thumb_size", "Editor", thumb_size); | 
					
						
							| 
									
										
										
										
											2017-08-15 19:30:53 +02:00
										 |  |  | 	theme->set_constant("dark_theme", "Editor", dark_theme); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	//Register icons + font
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// the resolution and the icon color (dark_theme bool) has not changed, so we do not regenerate the icons
 | 
					
						
							|  |  |  | 	if (p_theme != NULL && fabs(p_theme->get_constant("scale", "Editor") - EDSCALE) < 0.00001 && p_theme->get_constant("dark_theme", "Editor") == dark_theme) { | 
					
						
							|  |  |  | 		// register already generated icons
 | 
					
						
							|  |  |  | 		for (int i = 0; i < editor_icons_count; i++) { | 
					
						
							|  |  |  | 			theme->set_icon(editor_icons_names[i], "EditorIcons", p_theme->get_icon(editor_icons_names[i], "EditorIcons")); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2017-09-08 02:32:43 -05:00
										 |  |  | 		editor_register_and_generate_icons(theme, dark_theme, thumb_size); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	// thumbnail size has changed, so we regenerate the medium sizes
 | 
					
						
							|  |  |  | 	if (p_theme != NULL && fabs(p_theme->get_constant("thumb_size", "Editor") - thumb_size) > 0.00001) { | 
					
						
							|  |  |  | 		editor_register_and_generate_icons(p_theme, dark_theme, thumb_size, true); | 
					
						
							| 
									
										
										
										
											2017-08-15 19:30:53 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	editor_register_fonts(theme); | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	// Highlighted tabs and border width
 | 
					
						
							|  |  |  | 	Color tab_color = highlight_tabs ? base_color.linear_interpolate(font_color, contrast) : base_color; | 
					
						
							|  |  |  | 	const int border_width = CLAMP(border_size, 0, 3) * EDSCALE; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-12 23:46:23 +02:00
										 |  |  | 	const int default_margin_size = 4; | 
					
						
							| 
									
										
										
										
											2017-09-17 18:58:36 -05:00
										 |  |  | 	const int margin_size_extra = default_margin_size + CLAMP(border_size, 0, 3); | 
					
						
							| 
									
										
										
										
											2017-09-12 23:46:23 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	// styleboxes
 | 
					
						
							|  |  |  | 	// this is the most commonly used stylebox, variations should be made as duplicate of this
 | 
					
						
							|  |  |  | 	Ref<StyleBoxFlat> style_default = make_flat_stylebox(base_color, default_margin_size, default_margin_size, default_margin_size, default_margin_size); | 
					
						
							|  |  |  | 	style_default->set_border_width_all(border_width); | 
					
						
							|  |  |  | 	style_default->set_border_color_all(base_color); | 
					
						
							|  |  |  | 	style_default->set_draw_center(true); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Button and widgets
 | 
					
						
							| 
									
										
										
										
											2017-09-28 23:41:46 +02:00
										 |  |  | 	const float extra_spacing = EDITOR_GET("interface/theme/additional_spacing"); | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-19 00:20:06 +02:00
										 |  |  | 	Ref<StyleBoxFlat> style_widget = style_default->duplicate(); | 
					
						
							|  |  |  | 	style_widget->set_default_margin(MARGIN_LEFT, (extra_spacing + 6) * EDSCALE); | 
					
						
							|  |  |  | 	style_widget->set_default_margin(MARGIN_TOP, (extra_spacing + default_margin_size) * EDSCALE); | 
					
						
							|  |  |  | 	style_widget->set_default_margin(MARGIN_RIGHT, (extra_spacing + 6) * EDSCALE); | 
					
						
							|  |  |  | 	style_widget->set_default_margin(MARGIN_BOTTOM, (extra_spacing + default_margin_size) * EDSCALE); | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	style_widget->set_bg_color(dark_color_1); | 
					
						
							|  |  |  | 	style_widget->set_border_color_all(dark_color_2); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Ref<StyleBoxFlat> style_widget_disabled = style_widget->duplicate(); | 
					
						
							|  |  |  | 	style_widget_disabled->set_border_color_all(color_disabled); | 
					
						
							|  |  |  | 	style_widget_disabled->set_bg_color(color_disabled_bg); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Ref<StyleBoxFlat> style_widget_focus = style_widget->duplicate(); | 
					
						
							|  |  |  | 	style_widget_focus->set_border_color_all(accent_color); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Ref<StyleBoxFlat> style_widget_pressed = style_widget->duplicate(); | 
					
						
							|  |  |  | 	style_widget_pressed->set_border_color_all(accent_color); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Ref<StyleBoxFlat> style_widget_hover = style_widget->duplicate(); | 
					
						
							|  |  |  | 	style_widget_hover->set_border_color_all(contrast_color_1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// style for windows, popups, etc..
 | 
					
						
							|  |  |  | 	Ref<StyleBoxFlat> style_popup = style_default->duplicate(); | 
					
						
							| 
									
										
										
										
											2017-09-27 14:44:48 -05:00
										 |  |  | 	const int popup_margin_size = default_margin_size * EDSCALE * 2; | 
					
						
							|  |  |  | 	style_popup->set_default_margin(MARGIN_LEFT, popup_margin_size); | 
					
						
							|  |  |  | 	style_popup->set_default_margin(MARGIN_TOP, popup_margin_size); | 
					
						
							|  |  |  | 	style_popup->set_default_margin(MARGIN_RIGHT, popup_margin_size); | 
					
						
							|  |  |  | 	style_popup->set_default_margin(MARGIN_BOTTOM, popup_margin_size); | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	style_popup->set_border_color_all(contrast_color_1); | 
					
						
							|  |  |  | 	style_popup->set_border_width_all(MAX(EDSCALE, border_width)); | 
					
						
							| 
									
										
										
										
											2017-09-08 14:41:44 -05:00
										 |  |  | 	const Color shadow_color = Color(0, 0, 0, dark_theme ? 0.3 : 0.1); | 
					
						
							|  |  |  | 	style_popup->set_shadow_color(shadow_color); | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	style_popup->set_shadow_size(4 * EDSCALE); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-27 14:44:48 -05:00
										 |  |  | 	Ref<StyleBoxLine> style_popup_separator(memnew(StyleBoxLine)); | 
					
						
							|  |  |  | 	style_popup_separator->set_color(separator_color); | 
					
						
							|  |  |  | 	style_popup_separator->set_grow(popup_margin_size - MAX(EDSCALE, border_width)); | 
					
						
							|  |  |  | 	style_popup_separator->set_thickness(MAX(EDSCALE, border_width)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	Ref<StyleBoxEmpty> style_empty = make_empty_stylebox(default_margin_size, default_margin_size, default_margin_size, default_margin_size); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Tabs
 | 
					
						
							| 
									
										
										
										
											2017-09-28 23:41:46 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	const int tab_default_margin_side = 10 * EDSCALE + extra_spacing * EDSCALE; | 
					
						
							|  |  |  | 	const int tab_default_margin_vertical = 5 * EDSCALE + extra_spacing * EDSCALE; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-19 00:20:06 +02:00
										 |  |  | 	Ref<StyleBoxFlat> style_tab_selected = style_widget->duplicate(); | 
					
						
							| 
									
										
										
										
											2017-09-18 21:06:55 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-02 03:29:04 +02:00
										 |  |  | 	style_tab_selected->set_border_width_all(border_width); | 
					
						
							|  |  |  | 	style_tab_selected->set_border_width(MARGIN_BOTTOM, 0); | 
					
						
							|  |  |  | 	style_tab_selected->set_border_color_all(dark_color_3); | 
					
						
							|  |  |  | 	style_tab_selected->set_expand_margin_size(MARGIN_BOTTOM, border_width); | 
					
						
							| 
									
										
										
										
											2017-09-28 23:41:46 +02:00
										 |  |  | 	style_tab_selected->set_default_margin(MARGIN_LEFT, tab_default_margin_side); | 
					
						
							|  |  |  | 	style_tab_selected->set_default_margin(MARGIN_RIGHT, tab_default_margin_side); | 
					
						
							|  |  |  | 	style_tab_selected->set_default_margin(MARGIN_BOTTOM, tab_default_margin_vertical); | 
					
						
							|  |  |  | 	style_tab_selected->set_default_margin(MARGIN_TOP, tab_default_margin_vertical); | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	style_tab_selected->set_bg_color(tab_color); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-17 18:58:36 -05:00
										 |  |  | 	Ref<StyleBoxFlat> style_tab_unselected = style_tab_selected->duplicate(); | 
					
						
							| 
									
										
										
										
											2017-09-18 21:06:55 +02:00
										 |  |  | 	style_tab_unselected->set_draw_center(false); | 
					
						
							|  |  |  | 	style_tab_unselected->set_border_width_all(0); | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 	// Editor background
 | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	theme->set_stylebox("Background", "EditorStyles", make_flat_stylebox(background_color, default_margin_size, default_margin_size, default_margin_size, default_margin_size)); | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Focus
 | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	Ref<StyleBoxFlat> style_focus = style_default->duplicate(); | 
					
						
							|  |  |  | 	style_focus->set_draw_center(false); | 
					
						
							|  |  |  | 	style_focus->set_border_color_all(contrast_color_2); | 
					
						
							|  |  |  | 	theme->set_stylebox("Focus", "EditorStyles", style_focus); | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Menu
 | 
					
						
							| 
									
										
										
										
											2017-09-19 00:20:06 +02:00
										 |  |  | 	Ref<StyleBoxFlat> style_menu = style_widget->duplicate(); | 
					
						
							|  |  |  | 	style_menu->set_draw_center(false); | 
					
						
							|  |  |  | 	style_menu->set_border_width_all(0); | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 	theme->set_stylebox("panel", "PanelContainer", style_menu); | 
					
						
							|  |  |  | 	theme->set_stylebox("MenuPanel", "EditorStyles", style_menu); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-07 06:25:57 +09:00
										 |  |  | 	// Script Editor
 | 
					
						
							| 
									
										
										
										
											2017-10-02 21:31:32 -05:00
										 |  |  | 	theme->set_stylebox("ScriptEditorPanel", "EditorStyles", make_empty_stylebox(default_margin_size, 0, default_margin_size, default_margin_size)); | 
					
						
							| 
									
										
										
										
											2017-09-07 06:25:57 +09:00
										 |  |  | 	theme->set_stylebox("ScriptEditor", "EditorStyles", make_empty_stylebox(0, 0, 0, 0)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 	// Play button group
 | 
					
						
							| 
									
										
										
										
											2017-09-27 14:44:48 -05:00
										 |  |  | 	theme->set_stylebox("PlayButtonPanel", "EditorStyles", style_empty); | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-29 16:56:43 +02:00
										 |  |  | 	//MenuButton
 | 
					
						
							| 
									
										
										
										
											2017-09-19 00:20:06 +02:00
										 |  |  | 	Ref<StyleBoxFlat> style_menu_hover_border = style_widget->duplicate(); | 
					
						
							| 
									
										
										
										
											2017-08-31 15:11:10 +02:00
										 |  |  | 	style_menu_hover_border->set_draw_center(false); | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	style_menu_hover_border->set_border_width_all(0); | 
					
						
							| 
									
										
										
										
											2017-09-12 23:46:23 +02:00
										 |  |  | 	style_menu_hover_border->set_border_width(MARGIN_BOTTOM, border_width); | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	style_menu_hover_border->set_border_color_all(accent_color); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-19 00:20:06 +02:00
										 |  |  | 	Ref<StyleBoxFlat> style_menu_hover_bg = style_widget->duplicate(); | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	style_menu_hover_bg->set_border_width_all(0); | 
					
						
							|  |  |  | 	style_menu_hover_bg->set_bg_color(dark_color_1); | 
					
						
							| 
									
										
										
										
											2017-06-10 11:40:45 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 	theme->set_stylebox("normal", "MenuButton", style_menu); | 
					
						
							| 
									
										
										
										
											2017-09-02 03:25:40 +02:00
										 |  |  | 	theme->set_stylebox("hover", "MenuButton", style_menu); | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 	theme->set_stylebox("pressed", "MenuButton", style_menu); | 
					
						
							|  |  |  | 	theme->set_stylebox("focus", "MenuButton", style_menu); | 
					
						
							|  |  |  | 	theme->set_stylebox("disabled", "MenuButton", style_menu); | 
					
						
							| 
									
										
										
										
											2017-08-29 16:56:43 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 	theme->set_stylebox("normal", "PopupMenu", style_menu); | 
					
						
							|  |  |  | 	theme->set_stylebox("hover", "PopupMenu", style_menu_hover_bg); | 
					
						
							|  |  |  | 	theme->set_stylebox("pressed", "PopupMenu", style_menu); | 
					
						
							|  |  |  | 	theme->set_stylebox("focus", "PopupMenu", style_menu); | 
					
						
							|  |  |  | 	theme->set_stylebox("disabled", "PopupMenu", style_menu); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	theme->set_stylebox("normal", "ToolButton", style_menu); | 
					
						
							|  |  |  | 	theme->set_stylebox("hover", "ToolButton", style_menu); | 
					
						
							|  |  |  | 	theme->set_stylebox("pressed", "ToolButton", style_menu); | 
					
						
							|  |  |  | 	theme->set_stylebox("focus", "ToolButton", style_menu); | 
					
						
							|  |  |  | 	theme->set_stylebox("disabled", "ToolButton", style_menu); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-15 19:30:53 +02:00
										 |  |  | 	theme->set_color("font_color", "MenuButton", font_color); | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	theme->set_color("font_color_hover", "MenuButton", font_color_hl); | 
					
						
							| 
									
										
										
										
											2017-08-15 19:30:53 +02:00
										 |  |  | 	theme->set_color("font_color", "ToolButton", font_color); | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	theme->set_color("font_color_hover", "ToolButton", font_color_hl); | 
					
						
							|  |  |  | 	theme->set_color("font_color_pressed", "ToolButton", accent_color); | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	theme->set_stylebox("MenuHover", "EditorStyles", style_menu_hover_border); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	// Buttons
 | 
					
						
							|  |  |  | 	theme->set_stylebox("normal", "Button", style_widget); | 
					
						
							|  |  |  | 	theme->set_stylebox("hover", "Button", style_widget_hover); | 
					
						
							|  |  |  | 	theme->set_stylebox("pressed", "Button", style_widget_pressed); | 
					
						
							|  |  |  | 	theme->set_stylebox("focus", "Button", style_widget_focus); | 
					
						
							|  |  |  | 	theme->set_stylebox("disabled", "Button", style_widget_disabled); | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	theme->set_color("font_color", "Button", font_color); | 
					
						
							|  |  |  | 	theme->set_color("font_color_hover", "Button", font_color_hl); | 
					
						
							|  |  |  | 	theme->set_color("font_color_pressed", "Button", accent_color); | 
					
						
							| 
									
										
										
										
											2017-08-15 19:30:53 +02:00
										 |  |  | 	theme->set_color("font_color_disabled", "Button", font_color_disabled); | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	theme->set_color("icon_color_hover", "Button", font_color_hl); | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 	// make icon color value bigger because icon image is not complete white
 | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	theme->set_color("icon_color_pressed", "Button", Color(accent_color.r * 1.15, accent_color.g * 1.15, accent_color.b * 1.15, accent_color.a)); | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// OptionButton
 | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	theme->set_stylebox("normal", "OptionButton", style_widget); | 
					
						
							|  |  |  | 	theme->set_stylebox("hover", "OptionButton", style_widget_hover); | 
					
						
							|  |  |  | 	theme->set_stylebox("pressed", "OptionButton", style_widget_pressed); | 
					
						
							|  |  |  | 	theme->set_stylebox("focus", "OptionButton", style_widget_focus); | 
					
						
							|  |  |  | 	theme->set_stylebox("disabled", "OptionButton", style_widget_disabled); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	theme->set_color("font_color", "OptionButton", font_color); | 
					
						
							|  |  |  | 	theme->set_color("font_color_hover", "OptionButton", font_color_hl); | 
					
						
							|  |  |  | 	theme->set_color("font_color_pressed", "OptionButton", accent_color); | 
					
						
							| 
									
										
										
										
											2017-08-15 19:30:53 +02:00
										 |  |  | 	theme->set_color("font_color_disabled", "OptionButton", font_color_disabled); | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	theme->set_color("icon_color_hover", "OptionButton", font_color_hl); | 
					
						
							| 
									
										
										
										
											2017-07-14 23:40:17 -05:00
										 |  |  | 	theme->set_icon("arrow", "OptionButton", theme->get_icon("GuiOptionArrow", "EditorIcons")); | 
					
						
							| 
									
										
										
										
											2017-10-02 21:31:32 -05:00
										 |  |  | 	theme->set_constant("arrow_margin", "OptionButton", default_margin_size * EDSCALE); | 
					
						
							| 
									
										
										
										
											2017-07-18 01:09:19 -05:00
										 |  |  | 	theme->set_constant("modulate_arrow", "OptionButton", true); | 
					
						
							| 
									
										
										
										
											2017-07-14 23:40:17 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// CheckButton
 | 
					
						
							|  |  |  | 	theme->set_icon("on", "CheckButton", theme->get_icon("GuiToggleOn", "EditorIcons")); | 
					
						
							|  |  |  | 	theme->set_icon("off", "CheckButton", theme->get_icon("GuiToggleOff", "EditorIcons")); | 
					
						
							| 
									
										
										
										
											2017-09-02 03:39:36 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	theme->set_color("font_color", "CheckButton", font_color); | 
					
						
							|  |  |  | 	theme->set_color("font_color_hover", "CheckButton", font_color_hl); | 
					
						
							|  |  |  | 	theme->set_color("font_color_pressed", "CheckButton", accent_color); | 
					
						
							| 
									
										
										
										
											2017-08-15 19:30:53 +02:00
										 |  |  | 	theme->set_color("font_color_disabled", "CheckButton", font_color_disabled); | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	theme->set_color("icon_color_hover", "CheckButton", font_color_hl); | 
					
						
							| 
									
										
										
										
											2017-08-15 19:30:53 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Checkbox
 | 
					
						
							|  |  |  | 	theme->set_icon("checked", "CheckBox", theme->get_icon("GuiChecked", "EditorIcons")); | 
					
						
							|  |  |  | 	theme->set_icon("unchecked", "CheckBox", theme->get_icon("GuiUnchecked", "EditorIcons")); | 
					
						
							|  |  |  | 	theme->set_icon("radio_checked", "CheckBox", theme->get_icon("GuiRadioChecked", "EditorIcons")); | 
					
						
							|  |  |  | 	theme->set_icon("radio_unchecked", "CheckBox", theme->get_icon("GuiRadioUnchecked", "EditorIcons")); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	theme->set_color("font_color", "CheckBox", font_color); | 
					
						
							|  |  |  | 	theme->set_color("font_color_hover", "CheckBox", font_color_hl); | 
					
						
							|  |  |  | 	theme->set_color("font_color_pressed", "CheckBox", accent_color); | 
					
						
							| 
									
										
										
										
											2017-08-15 19:30:53 +02:00
										 |  |  | 	theme->set_color("font_color_disabled", "CheckBox", font_color_disabled); | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	theme->set_color("icon_color_hover", "CheckBox", font_color_hl); | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// PopupMenu
 | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	Ref<StyleBoxFlat> style_popup_menu = style_popup; | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 	theme->set_stylebox("panel", "PopupMenu", style_popup_menu); | 
					
						
							| 
									
										
										
										
											2017-09-27 14:44:48 -05:00
										 |  |  | 	theme->set_stylebox("separator", "PopupMenu", style_popup_separator); | 
					
						
							| 
									
										
										
										
											2017-08-15 19:30:53 +02:00
										 |  |  | 	theme->set_color("font_color", "PopupMenu", font_color); | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	theme->set_color("font_color_hover", "PopupMenu", font_color_hl); | 
					
						
							|  |  |  | 	theme->set_color("font_color_accel", "PopupMenu", font_color_disabled); | 
					
						
							| 
									
										
										
										
											2017-08-15 19:30:53 +02:00
										 |  |  | 	theme->set_color("font_color_disabled", "PopupMenu", font_color_disabled); | 
					
						
							|  |  |  | 	theme->set_icon("checked", "PopupMenu", theme->get_icon("GuiChecked", "EditorIcons")); | 
					
						
							|  |  |  | 	theme->set_icon("unchecked", "PopupMenu", theme->get_icon("GuiUnchecked", "EditorIcons")); | 
					
						
							|  |  |  | 	theme->set_icon("radio_checked", "PopupMenu", theme->get_icon("GuiChecked", "EditorIcons")); | 
					
						
							|  |  |  | 	theme->set_icon("radio_unchecked", "PopupMenu", theme->get_icon("GuiUnchecked", "EditorIcons")); | 
					
						
							| 
									
										
										
										
											2017-09-21 15:55:07 -05:00
										 |  |  | 	theme->set_icon("submenu", "PopupMenu", theme->get_icon("ArrowRight", "EditorIcons")); | 
					
						
							| 
									
										
										
										
											2017-09-19 00:20:06 +02:00
										 |  |  | 	theme->set_constant("vseparation", "PopupMenu", (extra_spacing + default_margin_size) * EDSCALE); | 
					
						
							| 
									
										
										
										
											2017-09-21 15:55:07 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-25 17:21:12 -07:00
										 |  |  | 	// Tree & ItemList background
 | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	Ref<StyleBoxFlat> style_tree_bg = style_default->duplicate(); | 
					
						
							|  |  |  | 	style_tree_bg->set_bg_color(dark_color_1); | 
					
						
							| 
									
										
										
										
											2017-06-10 11:40:45 -07:00
										 |  |  | 	style_tree_bg->set_border_color_all(dark_color_3); | 
					
						
							| 
									
										
										
										
											2017-06-25 17:21:12 -07:00
										 |  |  | 	theme->set_stylebox("bg", "Tree", style_tree_bg); | 
					
						
							| 
									
										
										
										
											2017-08-29 16:56:43 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-27 14:44:48 -05:00
										 |  |  | 	const Color guide_color = Color(mono_color.r, mono_color.g, mono_color.b, 0.05); | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 	// Tree
 | 
					
						
							| 
									
										
										
										
											2017-07-14 23:40:17 -05:00
										 |  |  | 	theme->set_icon("checked", "Tree", theme->get_icon("GuiChecked", "EditorIcons")); | 
					
						
							|  |  |  | 	theme->set_icon("unchecked", "Tree", theme->get_icon("GuiUnchecked", "EditorIcons")); | 
					
						
							|  |  |  | 	theme->set_icon("arrow", "Tree", theme->get_icon("GuiTreeArrowDown", "EditorIcons")); | 
					
						
							|  |  |  | 	theme->set_icon("arrow_collapsed", "Tree", theme->get_icon("GuiTreeArrowRight", "EditorIcons")); | 
					
						
							| 
									
										
										
										
											2017-10-02 21:31:32 -05:00
										 |  |  | 	theme->set_icon("updown", "Tree", theme->get_icon("GuiTreeUpdown", "EditorIcons")); | 
					
						
							| 
									
										
										
										
											2017-07-14 23:40:17 -05:00
										 |  |  | 	theme->set_icon("select_arrow", "Tree", theme->get_icon("GuiDropdown", "EditorIcons")); | 
					
						
							| 
									
										
										
										
											2017-09-27 14:44:48 -05:00
										 |  |  | 	theme->set_icon("select_option", "Tree", theme->get_icon("GuiTreeOption", "EditorIcons")); | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	theme->set_stylebox("bg_focus", "Tree", style_focus); | 
					
						
							| 
									
										
										
										
											2017-07-31 13:19:45 -05:00
										 |  |  | 	theme->set_stylebox("custom_button", "Tree", make_empty_stylebox()); | 
					
						
							|  |  |  | 	theme->set_stylebox("custom_button_pressed", "Tree", make_empty_stylebox()); | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	theme->set_stylebox("custom_button_hover", "Tree", style_widget); | 
					
						
							|  |  |  | 	theme->set_color("custom_button_font_highlight", "Tree", font_color_hl); | 
					
						
							| 
									
										
										
										
											2017-09-02 03:30:43 +02:00
										 |  |  | 	theme->set_color("font_color", "Tree", font_color); | 
					
						
							| 
									
										
										
										
											2017-09-27 14:44:48 -05:00
										 |  |  | 	theme->set_color("font_color_selected", "Tree", mono_color); | 
					
						
							| 
									
										
										
										
											2017-09-21 15:55:07 -05:00
										 |  |  | 	theme->set_color("title_button_color", "Tree", font_color); | 
					
						
							| 
									
										
										
										
											2017-09-27 14:44:48 -05:00
										 |  |  | 	theme->set_color("guide_color", "Tree", guide_color); | 
					
						
							| 
									
										
										
										
											2017-09-21 15:55:07 -05:00
										 |  |  | 	theme->set_color("drop_position_color", "Tree", accent_color); | 
					
						
							| 
									
										
										
										
											2017-09-19 00:20:06 +02:00
										 |  |  | 	theme->set_constant("vseparation", "Tree", (extra_spacing + default_margin_size) * EDSCALE); | 
					
						
							| 
									
										
										
										
											2017-09-27 14:44:48 -05:00
										 |  |  | 	theme->set_constant("hseparation", "Tree", (extra_spacing + default_margin_size) * EDSCALE); | 
					
						
							|  |  |  | 	theme->set_constant("guide_width", "Tree", border_width); | 
					
						
							|  |  |  | 	theme->set_constant("item_margin", "Tree", 3 * default_margin_size * EDSCALE); | 
					
						
							|  |  |  | 	theme->set_constant("button_margin", "Tree", default_margin_size * EDSCALE); | 
					
						
							|  |  |  | 	theme->set_constant("draw_relationship_lines", "Tree", 0); | 
					
						
							|  |  |  | 	theme->set_constant("scroll_border", "Tree", default_margin_size * EDSCALE); | 
					
						
							|  |  |  | 	theme->set_constant("scroll_speed", "Tree", 12); | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	Ref<StyleBoxFlat> style_tree_btn = style_default->duplicate(); | 
					
						
							|  |  |  | 	style_tree_btn->set_bg_color(contrast_color_1); | 
					
						
							|  |  |  | 	style_tree_btn->set_border_width_all(0); | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 	theme->set_stylebox("button_pressed", "Tree", style_tree_btn); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	Ref<StyleBoxFlat> style_tree_focus = style_default->duplicate(); | 
					
						
							|  |  |  | 	style_tree_focus->set_bg_color(highlight_color); | 
					
						
							|  |  |  | 	style_tree_focus->set_border_width_all(0); | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 	theme->set_stylebox("selected_focus", "Tree", style_tree_focus); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	Ref<StyleBoxFlat> style_tree_selected = style_tree_focus->duplicate(); | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 	theme->set_stylebox("selected", "Tree", style_tree_selected); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	Ref<StyleBoxFlat> style_tree_cursor = style_default->duplicate(); | 
					
						
							| 
									
										
										
										
											2017-08-31 15:11:10 +02:00
										 |  |  | 	style_tree_cursor->set_draw_center(false); | 
					
						
							| 
									
										
										
										
											2017-06-10 11:40:45 -07:00
										 |  |  | 	style_tree_cursor->set_border_width_all(border_width); | 
					
						
							| 
									
										
										
										
											2017-08-29 16:56:43 +02:00
										 |  |  | 	style_tree_cursor->set_border_color_all(contrast_color_1); | 
					
						
							| 
									
										
										
										
											2017-06-10 11:40:45 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	Ref<StyleBoxFlat> style_tree_title = style_default->duplicate(); | 
					
						
							|  |  |  | 	style_tree_title->set_bg_color(dark_color_3); | 
					
						
							|  |  |  | 	style_tree_title->set_border_width_all(0); | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 	theme->set_stylebox("cursor", "Tree", style_tree_cursor); | 
					
						
							|  |  |  | 	theme->set_stylebox("cursor_unfocused", "Tree", style_tree_cursor); | 
					
						
							|  |  |  | 	theme->set_stylebox("title_button_normal", "Tree", style_tree_title); | 
					
						
							|  |  |  | 	theme->set_stylebox("title_button_hover", "Tree", style_tree_title); | 
					
						
							|  |  |  | 	theme->set_stylebox("title_button_pressed", "Tree", style_tree_title); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	Color prop_category_color = dark_color_1.linear_interpolate(mono_color, 0.12); | 
					
						
							|  |  |  | 	Color prop_section_color = dark_color_1.linear_interpolate(mono_color, 0.09); | 
					
						
							|  |  |  | 	Color prop_subsection_color = dark_color_1.linear_interpolate(mono_color, 0.06); | 
					
						
							| 
									
										
										
										
											2017-08-15 19:30:53 +02:00
										 |  |  | 	theme->set_color("prop_category", "Editor", prop_category_color); | 
					
						
							|  |  |  | 	theme->set_color("prop_section", "Editor", prop_section_color); | 
					
						
							|  |  |  | 	theme->set_color("prop_subsection", "Editor", prop_subsection_color); | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	theme->set_color("drop_position_color", "Tree", accent_color); | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// ItemList
 | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	Ref<StyleBoxFlat> style_itemlist_bg = style_default->duplicate(); | 
					
						
							|  |  |  | 	style_itemlist_bg->set_bg_color(dark_color_1); | 
					
						
							| 
									
										
										
										
											2017-06-10 11:40:45 -07:00
										 |  |  | 	style_itemlist_bg->set_border_width_all(border_width); | 
					
						
							|  |  |  | 	style_itemlist_bg->set_border_color_all(dark_color_3); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	Ref<StyleBoxFlat> style_itemlist_cursor = style_default->duplicate(); | 
					
						
							| 
									
										
										
										
											2017-08-31 15:11:10 +02:00
										 |  |  | 	style_itemlist_cursor->set_draw_center(false); | 
					
						
							| 
									
										
										
										
											2017-06-10 11:40:45 -07:00
										 |  |  | 	style_itemlist_cursor->set_border_width_all(border_width); | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	style_itemlist_cursor->set_border_color_all(highlight_color); | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 	theme->set_stylebox("cursor", "ItemList", style_itemlist_cursor); | 
					
						
							|  |  |  | 	theme->set_stylebox("cursor_unfocused", "ItemList", style_itemlist_cursor); | 
					
						
							|  |  |  | 	theme->set_stylebox("selected_focus", "ItemList", style_tree_focus); | 
					
						
							|  |  |  | 	theme->set_stylebox("selected", "ItemList", style_tree_selected); | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	theme->set_stylebox("bg_focus", "ItemList", style_focus); | 
					
						
							| 
									
										
										
										
											2017-06-25 18:24:55 -07:00
										 |  |  | 	theme->set_stylebox("bg", "ItemList", style_itemlist_bg); | 
					
						
							| 
									
										
										
										
											2017-08-15 19:30:53 +02:00
										 |  |  | 	theme->set_color("font_color", "ItemList", font_color); | 
					
						
							| 
									
										
										
										
											2017-09-27 14:44:48 -05:00
										 |  |  | 	theme->set_color("font_color_selected", "ItemList", mono_color); | 
					
						
							|  |  |  | 	theme->set_color("guide_color", "ItemList", guide_color); | 
					
						
							| 
									
										
										
										
											2017-10-02 21:31:32 -05:00
										 |  |  | 	theme->set_constant("vseparation", "ItemList", 2 * EDSCALE); | 
					
						
							|  |  |  | 	theme->set_constant("hseparation", "ItemList", 2 * EDSCALE); | 
					
						
							| 
									
										
										
										
											2017-09-27 14:44:48 -05:00
										 |  |  | 	theme->set_constant("icon_margin", "ItemList", default_margin_size * EDSCALE); | 
					
						
							|  |  |  | 	theme->set_constant("line_separation", "ItemList", 2 * EDSCALE); | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Tabs & TabContainer
 | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	theme->set_stylebox("tab_fg", "TabContainer", style_tab_selected); | 
					
						
							|  |  |  | 	theme->set_stylebox("tab_bg", "TabContainer", style_tab_unselected); | 
					
						
							|  |  |  | 	theme->set_stylebox("tab_fg", "Tabs", style_tab_selected); | 
					
						
							|  |  |  | 	theme->set_stylebox("tab_bg", "Tabs", style_tab_unselected); | 
					
						
							| 
									
										
										
										
											2017-08-15 19:30:53 +02:00
										 |  |  | 	theme->set_color("font_color_fg", "TabContainer", font_color); | 
					
						
							|  |  |  | 	theme->set_color("font_color_bg", "TabContainer", font_color_disabled); | 
					
						
							|  |  |  | 	theme->set_color("font_color_fg", "Tabs", font_color); | 
					
						
							|  |  |  | 	theme->set_color("font_color_bg", "Tabs", font_color_disabled); | 
					
						
							| 
									
										
										
										
											2017-07-14 23:40:17 -05:00
										 |  |  | 	theme->set_icon("menu", "TabContainer", theme->get_icon("GuiTabMenu", "EditorIcons")); | 
					
						
							|  |  |  | 	theme->set_icon("menu_hl", "TabContainer", theme->get_icon("GuiTabMenu", "EditorIcons")); | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	theme->set_stylebox("SceneTabFG", "EditorStyles", style_tab_selected); | 
					
						
							|  |  |  | 	theme->set_stylebox("SceneTabBG", "EditorStyles", style_tab_unselected); | 
					
						
							| 
									
										
										
										
											2017-08-18 21:34:09 -05:00
										 |  |  | 	theme->set_icon("close", "Tabs", theme->get_icon("GuiClose", "EditorIcons")); | 
					
						
							| 
									
										
										
										
											2017-08-21 21:10:12 -05:00
										 |  |  | 	theme->set_stylebox("button_pressed", "Tabs", style_menu); | 
					
						
							|  |  |  | 	theme->set_stylebox("button", "Tabs", style_menu); | 
					
						
							| 
									
										
										
										
											2017-09-20 19:29:52 -05:00
										 |  |  | 	theme->set_icon("increment", "TabContainer", theme->get_icon("GuiScrollArrowRight", "EditorIcons")); | 
					
						
							|  |  |  | 	theme->set_icon("decrement", "TabContainer", theme->get_icon("GuiScrollArrowLeft", "EditorIcons")); | 
					
						
							| 
									
										
										
										
											2017-07-14 23:40:17 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-02 03:29:04 +02:00
										 |  |  | 	// Content of each tab
 | 
					
						
							|  |  |  | 	Ref<StyleBoxFlat> style_content_panel = style_default->duplicate(); | 
					
						
							|  |  |  | 	style_content_panel->set_border_color_all(dark_color_3); | 
					
						
							|  |  |  | 	style_content_panel->set_border_width_all(border_width); | 
					
						
							| 
									
										
										
										
											2017-09-17 18:58:36 -05:00
										 |  |  | 	// compensate the border
 | 
					
						
							| 
									
										
										
										
											2017-09-18 14:39:37 -05:00
										 |  |  | 	style_content_panel->set_default_margin(MARGIN_TOP, margin_size_extra * EDSCALE); | 
					
						
							|  |  |  | 	style_content_panel->set_default_margin(MARGIN_RIGHT, margin_size_extra * EDSCALE); | 
					
						
							|  |  |  | 	style_content_panel->set_default_margin(MARGIN_BOTTOM, margin_size_extra * EDSCALE); | 
					
						
							|  |  |  | 	style_content_panel->set_default_margin(MARGIN_LEFT, margin_size_extra * EDSCALE); | 
					
						
							| 
									
										
										
										
											2017-09-02 03:29:04 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// this is the stylebox used in 3d and 2d viewports (no borders)
 | 
					
						
							|  |  |  | 	Ref<StyleBoxFlat> style_content_panel_vp = style_content_panel->duplicate(); | 
					
						
							| 
									
										
										
										
											2017-09-17 18:58:36 -05:00
										 |  |  | 	style_content_panel_vp->set_default_margin(MARGIN_LEFT, border_width * 2); | 
					
						
							| 
									
										
										
										
											2017-09-18 14:39:37 -05:00
										 |  |  | 	style_content_panel_vp->set_default_margin(MARGIN_TOP, default_margin_size * EDSCALE); | 
					
						
							| 
									
										
										
										
											2017-09-17 18:58:36 -05:00
										 |  |  | 	style_content_panel_vp->set_default_margin(MARGIN_RIGHT, border_width * 2); | 
					
						
							|  |  |  | 	style_content_panel_vp->set_default_margin(MARGIN_BOTTOM, border_width * 2); | 
					
						
							| 
									
										
										
										
											2017-09-02 03:29:04 +02:00
										 |  |  | 	theme->set_stylebox("panel", "TabContainer", style_content_panel); | 
					
						
							|  |  |  | 	theme->set_stylebox("Content", "EditorStyles", style_content_panel_vp); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-27 14:44:48 -05:00
										 |  |  | 	// Separators
 | 
					
						
							| 
									
										
										
										
											2017-07-18 01:09:19 -05:00
										 |  |  | 	theme->set_stylebox("separator", "HSeparator", make_line_stylebox(separator_color, border_width)); | 
					
						
							|  |  |  | 	theme->set_stylebox("separator", "VSeparator", make_line_stylebox(separator_color, border_width, 0, true)); | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-17 18:58:36 -05:00
										 |  |  | 	// Debugger
 | 
					
						
							| 
									
										
										
										
											2017-09-18 21:06:55 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	Ref<StyleBoxFlat> style_panel_debugger = style_content_panel->duplicate(); | 
					
						
							|  |  |  | 	style_panel_debugger->set_border_width(MARGIN_BOTTOM, 0); | 
					
						
							|  |  |  | 	theme->set_stylebox("DebuggerPanel", "EditorStyles", style_panel_debugger); | 
					
						
							|  |  |  | 	theme->set_stylebox("DebuggerTabFG", "EditorStyles", style_tab_selected); | 
					
						
							|  |  |  | 	theme->set_stylebox("DebuggerTabBG", "EditorStyles", style_tab_unselected); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Ref<StyleBoxFlat> style_panel_invisible_top = style_content_panel->duplicate(); | 
					
						
							|  |  |  | 	int stylebox_offset = theme->get_font("tab_fg", "TabContainer")->get_height() + theme->get_stylebox("tab_fg", "TabContainer")->get_minimum_size().height + theme->get_stylebox("panel", "TabContainer")->get_default_margin(MARGIN_TOP); | 
					
						
							|  |  |  | 	style_panel_invisible_top->set_expand_margin_size(MARGIN_TOP, -stylebox_offset); | 
					
						
							|  |  |  | 	theme->set_stylebox("BottomPanelDebuggerOverride", "EditorStyles", style_panel_invisible_top); | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// LineEdit
 | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	theme->set_stylebox("normal", "LineEdit", style_widget); | 
					
						
							|  |  |  | 	theme->set_stylebox("focus", "LineEdit", style_widget_focus); | 
					
						
							|  |  |  | 	theme->set_stylebox("read_only", "LineEdit", style_widget_disabled); | 
					
						
							| 
									
										
										
										
											2017-08-15 19:30:53 +02:00
										 |  |  | 	theme->set_color("read_only", "LineEdit", font_color_disabled); | 
					
						
							|  |  |  | 	theme->set_color("font_color", "LineEdit", font_color); | 
					
						
							| 
									
										
										
										
											2017-08-29 16:56:43 +02:00
										 |  |  | 	theme->set_color("cursor_color", "LineEdit", font_color); | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// TextEdit
 | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	theme->set_stylebox("normal", "TextEdit", style_widget); | 
					
						
							|  |  |  | 	theme->set_stylebox("focus", "TextEdit", style_widget_hover); | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 	theme->set_constant("side_margin", "TabContainer", 0); | 
					
						
							| 
									
										
										
										
											2017-09-14 20:02:05 -05:00
										 |  |  | 	theme->set_icon("tab", "TextEdit", theme->get_icon("GuiTab", "EditorIcons")); | 
					
						
							| 
									
										
										
										
											2017-09-25 21:43:20 -05:00
										 |  |  | 	theme->set_color("font_color", "TextEdit", font_color); | 
					
						
							|  |  |  | 	theme->set_color("caret_color", "TextEdit", highlight_color); | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// H/VSplitContainer
 | 
					
						
							| 
									
										
										
										
											2017-07-14 23:40:17 -05:00
										 |  |  | 	theme->set_stylebox("bg", "VSplitContainer", make_stylebox(theme->get_icon("GuiVsplitBg", "EditorIcons"), 1, 1, 1, 1)); | 
					
						
							|  |  |  | 	theme->set_stylebox("bg", "HSplitContainer", make_stylebox(theme->get_icon("GuiHsplitBg", "EditorIcons"), 1, 1, 1, 1)); | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-14 23:40:17 -05:00
										 |  |  | 	theme->set_icon("grabber", "VSplitContainer", theme->get_icon("GuiVsplitter", "EditorIcons")); | 
					
						
							|  |  |  | 	theme->set_icon("grabber", "HSplitContainer", theme->get_icon("GuiHsplitter", "EditorIcons")); | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	theme->set_constant("separation", "HSplitContainer", default_margin_size * 2 * EDSCALE); | 
					
						
							|  |  |  | 	theme->set_constant("separation", "VSplitContainer", default_margin_size * 2 * EDSCALE); | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-18 14:39:37 -05:00
										 |  |  | 	// Containers
 | 
					
						
							|  |  |  | 	theme->set_constant("separation", "BoxContainer", default_margin_size * EDSCALE); | 
					
						
							|  |  |  | 	theme->set_constant("separation", "HBoxContainer", default_margin_size * EDSCALE); | 
					
						
							|  |  |  | 	theme->set_constant("separation", "VBoxContainer", default_margin_size * EDSCALE); | 
					
						
							|  |  |  | 	theme->set_constant("margin_left", "MarginContainer", 0); | 
					
						
							|  |  |  | 	theme->set_constant("margin_top", "MarginContainer", 0); | 
					
						
							|  |  |  | 	theme->set_constant("margin_right", "MarginContainer", 0); | 
					
						
							|  |  |  | 	theme->set_constant("margin_bottom", "MarginContainer", 0); | 
					
						
							|  |  |  | 	theme->set_constant("hseparation", "GridContainer", default_margin_size * EDSCALE); | 
					
						
							|  |  |  | 	theme->set_constant("vseparation", "GridContainer", default_margin_size * EDSCALE); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 	// WindowDialog
 | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	Ref<StyleBoxFlat> style_window = style_popup->duplicate(); | 
					
						
							|  |  |  | 	style_window->set_border_color_all(tab_color); | 
					
						
							| 
									
										
										
										
											2017-06-10 11:40:45 -07:00
										 |  |  | 	style_window->set_border_width(MARGIN_TOP, 24 * EDSCALE); | 
					
						
							|  |  |  | 	style_window->set_expand_margin_size(MARGIN_TOP, 24 * EDSCALE); | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 	theme->set_stylebox("panel", "WindowDialog", style_window); | 
					
						
							| 
									
										
										
										
											2017-08-15 19:30:53 +02:00
										 |  |  | 	theme->set_color("title_color", "WindowDialog", font_color); | 
					
						
							| 
									
										
										
										
											2017-08-18 21:34:09 -05:00
										 |  |  | 	theme->set_icon("close", "WindowDialog", theme->get_icon("GuiClose", "EditorIcons")); | 
					
						
							|  |  |  | 	theme->set_icon("close_highlight", "WindowDialog", theme->get_icon("GuiClose", "EditorIcons")); | 
					
						
							| 
									
										
										
										
											2017-07-14 23:40:17 -05:00
										 |  |  | 	theme->set_constant("close_h_ofs", "WindowDialog", 22 * EDSCALE); | 
					
						
							| 
									
										
										
										
											2017-07-18 14:35:37 -05:00
										 |  |  | 	theme->set_constant("close_v_ofs", "WindowDialog", 20 * EDSCALE); | 
					
						
							|  |  |  | 	theme->set_constant("title_height", "WindowDialog", 24 * EDSCALE); | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	// complex window, for now only Editor settings and Project settings
 | 
					
						
							|  |  |  | 	Ref<StyleBoxFlat> style_complex_window = style_window->duplicate(); | 
					
						
							|  |  |  | 	style_complex_window->set_bg_color(dark_color_2); | 
					
						
							|  |  |  | 	style_complex_window->set_border_color_all(highlight_tabs ? tab_color : dark_color_2); | 
					
						
							|  |  |  | 	theme->set_stylebox("panel", "EditorSettingsDialog", style_complex_window); | 
					
						
							|  |  |  | 	theme->set_stylebox("panel", "ProjectSettingsEditor", style_complex_window); | 
					
						
							|  |  |  | 	theme->set_stylebox("panel", "EditorAbout", style_complex_window); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 	// HScrollBar
 | 
					
						
							|  |  |  | 	Ref<Texture> empty_icon = memnew(ImageTexture); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-14 23:40:17 -05:00
										 |  |  | 	theme->set_stylebox("scroll", "HScrollBar", make_stylebox(theme->get_icon("GuiScrollBg", "EditorIcons"), 5, 5, 5, 5, 0, 0, 0, 0)); | 
					
						
							|  |  |  | 	theme->set_stylebox("scroll_focus", "HScrollBar", make_stylebox(theme->get_icon("GuiScrollBg", "EditorIcons"), 5, 5, 5, 5, 0, 0, 0, 0)); | 
					
						
							|  |  |  | 	theme->set_stylebox("grabber", "HScrollBar", make_stylebox(theme->get_icon("GuiScrollGrabber", "EditorIcons"), 6, 6, 6, 6, 2, 2, 2, 2)); | 
					
						
							|  |  |  | 	theme->set_stylebox("grabber_highlight", "HScrollBar", make_stylebox(theme->get_icon("GuiScrollGrabberHl", "EditorIcons"), 5, 5, 5, 5, 2, 2, 2, 2)); | 
					
						
							| 
									
										
										
										
											2017-08-12 14:59:55 -04:00
										 |  |  | 	theme->set_stylebox("grabber_pressed", "HScrollBar", make_stylebox(theme->get_icon("GuiScrollGrabberPressed", "EditorIcons"), 6, 6, 6, 6, 2, 2, 2, 2)); | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	theme->set_icon("increment", "HScrollBar", empty_icon); | 
					
						
							|  |  |  | 	theme->set_icon("increment_highlight", "HScrollBar", empty_icon); | 
					
						
							|  |  |  | 	theme->set_icon("decrement", "HScrollBar", empty_icon); | 
					
						
							|  |  |  | 	theme->set_icon("decrement_highlight", "HScrollBar", empty_icon); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// VScrollBar
 | 
					
						
							| 
									
										
										
										
											2017-07-14 23:40:17 -05:00
										 |  |  | 	theme->set_stylebox("scroll", "VScrollBar", make_stylebox(theme->get_icon("GuiScrollBg", "EditorIcons"), 5, 5, 5, 5, 0, 0, 0, 0)); | 
					
						
							|  |  |  | 	theme->set_stylebox("scroll_focus", "VScrollBar", make_stylebox(theme->get_icon("GuiScrollBg", "EditorIcons"), 5, 5, 5, 5, 0, 0, 0, 0)); | 
					
						
							|  |  |  | 	theme->set_stylebox("grabber", "VScrollBar", make_stylebox(theme->get_icon("GuiScrollGrabber", "EditorIcons"), 6, 6, 6, 6, 2, 2, 2, 2)); | 
					
						
							|  |  |  | 	theme->set_stylebox("grabber_highlight", "VScrollBar", make_stylebox(theme->get_icon("GuiScrollGrabberHl", "EditorIcons"), 5, 5, 5, 5, 2, 2, 2, 2)); | 
					
						
							| 
									
										
										
										
											2017-08-12 14:59:55 -04:00
										 |  |  | 	theme->set_stylebox("grabber_pressed", "VScrollBar", make_stylebox(theme->get_icon("GuiScrollGrabberPressed", "EditorIcons"), 6, 6, 6, 6, 2, 2, 2, 2)); | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	theme->set_icon("increment", "VScrollBar", empty_icon); | 
					
						
							|  |  |  | 	theme->set_icon("increment_highlight", "VScrollBar", empty_icon); | 
					
						
							|  |  |  | 	theme->set_icon("decrement", "VScrollBar", empty_icon); | 
					
						
							|  |  |  | 	theme->set_icon("decrement_highlight", "VScrollBar", empty_icon); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// HSlider
 | 
					
						
							| 
									
										
										
										
											2017-07-14 23:40:17 -05:00
										 |  |  | 	theme->set_icon("grabber_highlight", "HSlider", theme->get_icon("GuiSliderGrabberHl", "EditorIcons")); | 
					
						
							| 
									
										
										
										
											2017-09-12 17:12:47 +02:00
										 |  |  | 	theme->set_icon("grabber", "HSlider", theme->get_icon("GuiSliderGrabber", "EditorIcons")); | 
					
						
							|  |  |  | 	theme->set_stylebox("slider", "HSlider", make_flat_stylebox(dark_color_3, 0, default_margin_size / 2, 0, default_margin_size / 2)); | 
					
						
							|  |  |  | 	theme->set_stylebox("grabber_area", "HSlider", make_flat_stylebox(contrast_color_1, 0, default_margin_size / 2, 0, default_margin_size / 2)); | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// VSlider
 | 
					
						
							| 
									
										
										
										
											2017-07-14 23:40:17 -05:00
										 |  |  | 	theme->set_icon("grabber", "VSlider", theme->get_icon("GuiSliderGrabber", "EditorIcons")); | 
					
						
							|  |  |  | 	theme->set_icon("grabber_highlight", "VSlider", theme->get_icon("GuiSliderGrabberHl", "EditorIcons")); | 
					
						
							| 
									
										
										
										
											2017-09-12 17:12:47 +02:00
										 |  |  | 	theme->set_stylebox("slider", "VSlider", make_flat_stylebox(dark_color_3, default_margin_size / 2, 0, default_margin_size / 2, 0)); | 
					
						
							|  |  |  | 	theme->set_stylebox("grabber_area", "VSlider", make_flat_stylebox(contrast_color_1, default_margin_size / 2, 0, default_margin_size / 2, 0)); | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-26 14:08:42 +02:00
										 |  |  | 	//RichTextLabel
 | 
					
						
							| 
									
										
										
										
											2017-09-28 23:21:44 +02:00
										 |  |  | 	theme->set_color("default_color", "RichTextLabel", font_color); | 
					
						
							| 
									
										
										
										
											2017-07-26 14:08:42 +02:00
										 |  |  | 	theme->set_stylebox("focus", "RichTextLabel", make_empty_stylebox()); | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	theme->set_stylebox("normal", "RichTextLabel", style_tree_bg); | 
					
						
							| 
									
										
										
										
											2017-09-28 23:21:44 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	theme->set_color("headline_color", "EditorHelp", mono_color); | 
					
						
							| 
									
										
										
										
											2017-09-13 19:56:37 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-06 21:11:13 -07:00
										 |  |  | 	// Panel
 | 
					
						
							| 
									
										
										
										
											2017-09-02 18:28:35 +02:00
										 |  |  | 	theme->set_stylebox("panel", "Panel", make_flat_stylebox(dark_color_1, 6, 4, 6, 4)); | 
					
						
							| 
									
										
										
										
											2017-06-06 21:11:13 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-15 19:30:53 +02:00
										 |  |  | 	// Label
 | 
					
						
							| 
									
										
										
										
											2017-09-27 14:44:48 -05:00
										 |  |  | 	theme->set_stylebox("normal", "Label", style_empty); | 
					
						
							| 
									
										
										
										
											2017-08-15 19:30:53 +02:00
										 |  |  | 	theme->set_color("font_color", "Label", font_color); | 
					
						
							| 
									
										
										
										
											2017-09-27 14:44:48 -05:00
										 |  |  | 	theme->set_color("font_color_shadow", "Label", Color(0, 0, 0, 0)); | 
					
						
							|  |  |  | 	theme->set_constant("shadow_offset_x", "Label", 1 * EDSCALE); | 
					
						
							|  |  |  | 	theme->set_constant("shadow_offset_y", "Label", 1 * EDSCALE); | 
					
						
							|  |  |  | 	theme->set_constant("shadow_as_outline", "Label", 0 * EDSCALE); | 
					
						
							|  |  |  | 	theme->set_constant("line_spacing", "Label", 3 * EDSCALE); | 
					
						
							| 
									
										
										
										
											2017-08-15 19:30:53 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 	// TooltipPanel
 | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	Ref<StyleBoxFlat> style_tooltip = style_popup->duplicate(); | 
					
						
							|  |  |  | 	style_tooltip->set_bg_color(Color(mono_color.r, mono_color.g, mono_color.b, 0.9)); | 
					
						
							| 
									
										
										
										
											2017-06-10 11:40:45 -07:00
										 |  |  | 	style_tooltip->set_border_width_all(border_width); | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	style_tooltip->set_border_color_all(mono_color); | 
					
						
							| 
									
										
										
										
											2017-09-25 02:23:41 -05:00
										 |  |  | 	theme->set_color("font_color", "TooltipLabel", font_color.inverted()); | 
					
						
							|  |  |  | 	theme->set_color("font_color_shadow", "TooltipLabel", mono_color.inverted() * Color(1, 1, 1, 0.1)); | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 	theme->set_stylebox("panel", "TooltipPanel", style_tooltip); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// PopupPanel
 | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	theme->set_stylebox("panel", "PopupPanel", style_popup); | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// SpinBox
 | 
					
						
							| 
									
										
										
										
											2017-07-14 23:40:17 -05:00
										 |  |  | 	theme->set_icon("updown", "SpinBox", theme->get_icon("GuiSpinboxUpdown", "EditorIcons")); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// ProgressBar
 | 
					
						
							|  |  |  | 	theme->set_stylebox("bg", "ProgressBar", make_stylebox(theme->get_icon("GuiProgressBar", "EditorIcons"), 4, 4, 4, 4, 0, 0, 0, 0)); | 
					
						
							|  |  |  | 	theme->set_stylebox("fg", "ProgressBar", make_stylebox(theme->get_icon("GuiProgressFill", "EditorIcons"), 6, 6, 6, 6, 2, 1, 2, 1)); | 
					
						
							| 
									
										
										
										
											2017-08-15 19:30:53 +02:00
										 |  |  | 	theme->set_color("font_color", "ProgressBar", font_color); | 
					
						
							| 
									
										
										
										
											2017-07-14 23:40:17 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// GraphEdit
 | 
					
						
							| 
									
										
										
										
											2017-09-08 15:39:41 -05:00
										 |  |  | 	theme->set_stylebox("bg", "GraphEdit", style_tree_bg); | 
					
						
							| 
									
										
										
										
											2017-09-20 19:29:52 -05:00
										 |  |  | 	theme->set_color("grid_major", "GraphEdit", grid_major_color); | 
					
						
							|  |  |  | 	theme->set_color("grid_minor", "GraphEdit", grid_minor_color); | 
					
						
							| 
									
										
										
										
											2017-08-15 19:30:53 +02:00
										 |  |  | 	theme->set_icon("minus", "GraphEdit", theme->get_icon("ZoomLess", "EditorIcons")); | 
					
						
							|  |  |  | 	theme->set_icon("more", "GraphEdit", theme->get_icon("ZoomMore", "EditorIcons")); | 
					
						
							|  |  |  | 	theme->set_icon("reset", "GraphEdit", theme->get_icon("ZoomReset", "EditorIcons")); | 
					
						
							| 
									
										
										
										
											2017-09-20 19:29:52 -05:00
										 |  |  | 	theme->set_icon("snap", "GraphEdit", theme->get_icon("SnapGrid", "EditorIcons")); | 
					
						
							|  |  |  | 	theme->set_constant("bezier_len_pos", "GraphEdit", 80 * EDSCALE); | 
					
						
							|  |  |  | 	theme->set_constant("bezier_len_neg", "GraphEdit", 160 * EDSCALE); | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// GraphNode
 | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-02 21:31:32 -05:00
										 |  |  | 	const float mv = dark_theme ? 0.0 : 1.0; | 
					
						
							|  |  |  | 	const float mv2 = 1.0 - mv; | 
					
						
							| 
									
										
										
										
											2017-09-14 00:45:00 -05:00
										 |  |  | 	const int gn_margin_side = 28; | 
					
						
							| 
									
										
										
										
											2017-10-02 21:31:32 -05:00
										 |  |  | 	Ref<StyleBoxFlat> graphsb = make_flat_stylebox(Color(mv, mv, mv, 0.7), gn_margin_side, 24, gn_margin_side, 5); | 
					
						
							| 
									
										
										
										
											2017-06-10 11:40:45 -07:00
										 |  |  | 	graphsb->set_border_width_all(border_width); | 
					
						
							| 
									
										
										
										
											2017-10-02 21:31:32 -05:00
										 |  |  | 	graphsb->set_border_color_all(Color(mv2, mv2, mv2, 0.9)); | 
					
						
							|  |  |  | 	Ref<StyleBoxFlat> graphsbselected = make_flat_stylebox(Color(mv, mv, mv, 0.9), gn_margin_side, 24, gn_margin_side, 5); | 
					
						
							| 
									
										
										
										
											2017-06-10 11:40:45 -07:00
										 |  |  | 	graphsbselected->set_border_width_all(border_width); | 
					
						
							| 
									
										
										
										
											2017-09-08 14:41:44 -05:00
										 |  |  | 	graphsbselected->set_border_color_all(Color(accent_color.r, accent_color.g, accent_color.b, 0.9)); | 
					
						
							|  |  |  | 	graphsbselected->set_shadow_size(8 * EDSCALE); | 
					
						
							|  |  |  | 	graphsbselected->set_shadow_color(shadow_color); | 
					
						
							| 
									
										
										
										
											2017-10-02 21:31:32 -05:00
										 |  |  | 	Ref<StyleBoxFlat> graphsbcomment = make_flat_stylebox(Color(mv, mv, mv, 0.3), gn_margin_side, 24, gn_margin_side, 5); | 
					
						
							| 
									
										
										
										
											2017-06-10 11:40:45 -07:00
										 |  |  | 	graphsbcomment->set_border_width_all(border_width); | 
					
						
							| 
									
										
										
										
											2017-10-02 21:31:32 -05:00
										 |  |  | 	graphsbcomment->set_border_color_all(Color(mv2, mv2, mv2, 0.9)); | 
					
						
							|  |  |  | 	Ref<StyleBoxFlat> graphsbcommentselected = make_flat_stylebox(Color(mv, mv, mv, 0.4), gn_margin_side, 24, gn_margin_side, 5); | 
					
						
							| 
									
										
										
										
											2017-06-10 11:40:45 -07:00
										 |  |  | 	graphsbcommentselected->set_border_width_all(border_width); | 
					
						
							| 
									
										
										
										
											2017-10-02 21:31:32 -05:00
										 |  |  | 	graphsbcommentselected->set_border_color_all(Color(mv2, mv2, mv2, 0.9)); | 
					
						
							| 
									
										
										
										
											2017-09-27 14:44:48 -05:00
										 |  |  | 	Ref<StyleBoxFlat> graphsbbreakpoint = graphsbselected->duplicate(); | 
					
						
							|  |  |  | 	graphsbbreakpoint->set_draw_center(false); | 
					
						
							|  |  |  | 	graphsbbreakpoint->set_border_color_all(warning_color); | 
					
						
							|  |  |  | 	graphsbbreakpoint->set_shadow_color(warning_color * Color(1.0, 1.0, 1.0, 0.1)); | 
					
						
							|  |  |  | 	Ref<StyleBoxFlat> graphsbposition = graphsbselected->duplicate(); | 
					
						
							|  |  |  | 	graphsbposition->set_draw_center(false); | 
					
						
							|  |  |  | 	graphsbposition->set_border_color_all(error_color); | 
					
						
							|  |  |  | 	graphsbposition->set_shadow_color(error_color * Color(1.0, 1.0, 1.0, 0.2)); | 
					
						
							| 
									
										
										
										
											2017-09-14 00:45:00 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (use_gn_headers) { | 
					
						
							|  |  |  | 		graphsb->set_border_width(MARGIN_TOP, 24 * EDSCALE); | 
					
						
							|  |  |  | 		graphsbselected->set_border_width(MARGIN_TOP, 24 * EDSCALE); | 
					
						
							|  |  |  | 		graphsbcomment->set_border_width(MARGIN_TOP, 24 * EDSCALE); | 
					
						
							|  |  |  | 		graphsbcommentselected->set_border_width(MARGIN_TOP, 24 * EDSCALE); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-03 05:13:12 +09:00
										 |  |  | 	theme->set_stylebox("frame", "GraphNode", graphsb); | 
					
						
							|  |  |  | 	theme->set_stylebox("selectedframe", "GraphNode", graphsbselected); | 
					
						
							|  |  |  | 	theme->set_stylebox("comment", "GraphNode", graphsbcomment); | 
					
						
							|  |  |  | 	theme->set_stylebox("commentfocus", "GraphNode", graphsbcommentselected); | 
					
						
							| 
									
										
										
										
											2017-09-27 14:44:48 -05:00
										 |  |  | 	theme->set_stylebox("breakpoint", "GraphNode", graphsbbreakpoint); | 
					
						
							|  |  |  | 	theme->set_stylebox("position", "GraphNode", graphsbposition); | 
					
						
							| 
									
										
										
										
											2017-09-14 00:45:00 -05:00
										 |  |  | 	theme->set_constant("port_offset", "GraphNode", 14 * EDSCALE); | 
					
						
							|  |  |  | 	theme->set_constant("title_h_offset", "GraphNode", -16 * EDSCALE); | 
					
						
							|  |  |  | 	theme->set_constant("close_h_offset", "GraphNode", 20 * EDSCALE); | 
					
						
							|  |  |  | 	theme->set_constant("close_offset", "GraphNode", 20 * EDSCALE); | 
					
						
							|  |  |  | 	theme->set_icon("close", "GraphNode", theme->get_icon("GuiCloseCustomizable", "EditorIcons")); | 
					
						
							|  |  |  | 	theme->set_icon("resizer", "GraphNode", theme->get_icon("GuiResizer", "EditorIcons")); | 
					
						
							|  |  |  | 	theme->set_icon("port", "GraphNode", theme->get_icon("GuiGraphNodePort", "EditorIcons")); | 
					
						
							| 
									
										
										
										
											2016-06-18 13:32:03 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-19 00:20:06 +02:00
										 |  |  | 	// GridContainer
 | 
					
						
							|  |  |  | 	theme->set_constant("vseperation", "GridContainer", (extra_spacing + default_margin_size) * EDSCALE); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-22 20:07:13 +09:00
										 |  |  | 	// FileDialog
 | 
					
						
							| 
									
										
										
										
											2017-09-27 14:44:48 -05:00
										 |  |  | 	theme->set_icon("folder", "FileDialog", theme->get_icon("Folder", "EditorIcons")); | 
					
						
							| 
									
										
										
										
											2017-09-08 01:06:02 -05:00
										 |  |  | 	theme->set_color("files_disabled", "FileDialog", font_color_disabled); | 
					
						
							| 
									
										
										
										
											2017-05-22 20:07:13 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-27 14:44:48 -05:00
										 |  |  | 	// color picker
 | 
					
						
							|  |  |  | 	theme->set_constant("margin", "ColorPicker", popup_margin_size); | 
					
						
							|  |  |  | 	theme->set_constant("sv_width", "ColorPicker", 256 * EDSCALE); | 
					
						
							|  |  |  | 	theme->set_constant("sv_height", "ColorPicker", 256 * EDSCALE); | 
					
						
							|  |  |  | 	theme->set_constant("h_width", "ColorPicker", 30 * EDSCALE); | 
					
						
							|  |  |  | 	theme->set_constant("label_width", "ColorPicker", 10 * EDSCALE); | 
					
						
							|  |  |  | 	theme->set_icon("screen_picker", "ColorPicker", theme->get_icon("ColorPick", "EditorIcons")); | 
					
						
							|  |  |  | 	theme->set_icon("add_preset", "ColorPicker", theme->get_icon("Add", "EditorIcons")); | 
					
						
							|  |  |  | 	theme->set_icon("preset_bg", "ColorPicker", theme->get_icon("GuiMiniCheckerboard", "EditorIcons")); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	theme->set_icon("bg", "ColorPickerButton", theme->get_icon("GuiMiniCheckerboard", "EditorIcons")); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-14 20:02:05 -05:00
										 |  |  | 	// adaptive script theme constants
 | 
					
						
							|  |  |  | 	// for comments and elements with lower relevance
 | 
					
						
							|  |  |  | 	const Color dim_color = Color(font_color.r, font_color.g, font_color.b, 0.5); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	const float mono_value = mono_color.r; | 
					
						
							| 
									
										
										
										
											2017-09-28 16:10:30 +02:00
										 |  |  | 	const Color alpha1 = Color(mono_value, mono_value, mono_value, 0.07); | 
					
						
							|  |  |  | 	const Color alpha2 = Color(mono_value, mono_value, mono_value, 0.14); | 
					
						
							| 
									
										
										
										
											2017-09-14 20:02:05 -05:00
										 |  |  | 	const Color alpha3 = Color(mono_value, mono_value, mono_value, 0.5); | 
					
						
							|  |  |  | 	const Color alpha4 = Color(mono_value, mono_value, mono_value, 0.7); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// editor main color
 | 
					
						
							|  |  |  | 	const Color main_color = Color::html(dark_theme ? "#57b3ff" : "#0480ff"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	const Color symbol_color = Color::html("#5792ff").linear_interpolate(mono_color, dark_theme ? 0.5 : 0.3); | 
					
						
							| 
									
										
										
										
											2017-09-20 19:29:52 -05:00
										 |  |  | 	const Color keyword_color = Color::html("#ff7185"); | 
					
						
							| 
									
										
										
										
											2017-09-14 20:02:05 -05:00
										 |  |  | 	const Color basetype_color = Color::html(dark_theme ? "#42ffc2" : "#00c161"); | 
					
						
							|  |  |  | 	const Color type_color = basetype_color.linear_interpolate(mono_color, dark_theme ? 0.7 : 0.5); | 
					
						
							|  |  |  | 	const Color comment_color = dim_color; | 
					
						
							|  |  |  | 	const Color string_color = Color::html(dark_theme ? "#ffd942" : "#ffd118").linear_interpolate(mono_color, dark_theme ? 0.5 : 0.3); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	const Color te_background_color = Color(0, 0, 0, 0); | 
					
						
							|  |  |  | 	const Color completion_background_color = base_color; | 
					
						
							|  |  |  | 	const Color completion_selected_color = alpha1; | 
					
						
							|  |  |  | 	const Color completion_existing_color = alpha2; | 
					
						
							|  |  |  | 	const Color completion_scroll_color = alpha1; | 
					
						
							|  |  |  | 	const Color completion_font_color = font_color; | 
					
						
							|  |  |  | 	const Color text_color = font_color; | 
					
						
							|  |  |  | 	const Color line_number_color = dim_color; | 
					
						
							|  |  |  | 	const Color caret_color = mono_color; | 
					
						
							|  |  |  | 	const Color caret_background_color = mono_color.inverted(); | 
					
						
							|  |  |  | 	const Color text_selected_color = dark_color_3; | 
					
						
							| 
									
										
										
										
											2017-09-27 19:24:05 +02:00
										 |  |  | 	const Color selection_color = alpha2; | 
					
						
							| 
									
										
										
										
											2017-09-14 20:02:05 -05:00
										 |  |  | 	const Color brace_mismatch_color = error_color; | 
					
						
							|  |  |  | 	const Color current_line_color = alpha1; | 
					
						
							|  |  |  | 	const Color line_length_guideline_color = warning_color; | 
					
						
							|  |  |  | 	const Color word_highlighted_color = alpha1; | 
					
						
							|  |  |  | 	const Color number_color = basetype_color.linear_interpolate(mono_color, dark_theme ? 0.5 : 0.3); | 
					
						
							|  |  |  | 	const Color function_color = main_color; | 
					
						
							|  |  |  | 	const Color member_variable_color = mono_color; | 
					
						
							|  |  |  | 	const Color mark_color = Color(error_color.r, error_color.g, error_color.b, 0.3); | 
					
						
							|  |  |  | 	const Color breakpoint_color = error_color; | 
					
						
							|  |  |  | 	const Color search_result_color = alpha1; | 
					
						
							|  |  |  | 	const Color search_result_border_color = alpha4; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	theme->set_color("text_editor/theme/symbol_color", "Editor", symbol_color); | 
					
						
							|  |  |  | 	theme->set_color("text_editor/theme/keyword_color", "Editor", keyword_color); | 
					
						
							|  |  |  | 	theme->set_color("text_editor/theme/basetype_color", "Editor", basetype_color); | 
					
						
							|  |  |  | 	theme->set_color("text_editor/theme/type_color", "Editor", type_color); | 
					
						
							|  |  |  | 	theme->set_color("text_editor/theme/comment_color", "Editor", comment_color); | 
					
						
							|  |  |  | 	theme->set_color("text_editor/theme/string_color", "Editor", string_color); | 
					
						
							|  |  |  | 	theme->set_color("text_editor/theme/background_color", "Editor", te_background_color); | 
					
						
							|  |  |  | 	theme->set_color("text_editor/theme/completion_background_color", "Editor", completion_background_color); | 
					
						
							|  |  |  | 	theme->set_color("text_editor/theme/completion_selected_color", "Editor", completion_selected_color); | 
					
						
							|  |  |  | 	theme->set_color("text_editor/theme/completion_existing_color", "Editor", completion_existing_color); | 
					
						
							|  |  |  | 	theme->set_color("text_editor/theme/completion_scroll_color", "Editor", completion_scroll_color); | 
					
						
							|  |  |  | 	theme->set_color("text_editor/theme/completion_font_color", "Editor", completion_font_color); | 
					
						
							|  |  |  | 	theme->set_color("text_editor/theme/text_color", "Editor", text_color); | 
					
						
							|  |  |  | 	theme->set_color("text_editor/theme/line_number_color", "Editor", line_number_color); | 
					
						
							|  |  |  | 	theme->set_color("text_editor/theme/caret_color", "Editor", caret_color); | 
					
						
							|  |  |  | 	theme->set_color("text_editor/theme/caret_background_color", "Editor", caret_background_color); | 
					
						
							|  |  |  | 	theme->set_color("text_editor/theme/text_selected_color", "Editor", text_selected_color); | 
					
						
							|  |  |  | 	theme->set_color("text_editor/theme/selection_color", "Editor", selection_color); | 
					
						
							|  |  |  | 	theme->set_color("text_editor/theme/brace_mismatch_color", "Editor", brace_mismatch_color); | 
					
						
							|  |  |  | 	theme->set_color("text_editor/theme/current_line_color", "Editor", current_line_color); | 
					
						
							|  |  |  | 	theme->set_color("text_editor/theme/line_length_guideline_color", "Editor", line_length_guideline_color); | 
					
						
							|  |  |  | 	theme->set_color("text_editor/theme/word_highlighted_color", "Editor", word_highlighted_color); | 
					
						
							|  |  |  | 	theme->set_color("text_editor/theme/number_color", "Editor", number_color); | 
					
						
							|  |  |  | 	theme->set_color("text_editor/theme/function_color", "Editor", function_color); | 
					
						
							|  |  |  | 	theme->set_color("text_editor/theme/member_variable_color", "Editor", member_variable_color); | 
					
						
							|  |  |  | 	theme->set_color("text_editor/theme/mark_color", "Editor", mark_color); | 
					
						
							|  |  |  | 	theme->set_color("text_editor/theme/breakpoint_color", "Editor", breakpoint_color); | 
					
						
							|  |  |  | 	theme->set_color("text_editor/theme/search_result_color", "Editor", search_result_color); | 
					
						
							|  |  |  | 	theme->set_color("text_editor/theme/search_result_border_color", "Editor", search_result_border_color); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-18 13:32:03 +08:00
										 |  |  | 	return theme; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | Ref<Theme> create_custom_theme() { | 
					
						
							| 
									
										
										
										
											2016-09-11 10:01:52 -03:00
										 |  |  | 	Ref<Theme> theme; | 
					
						
							| 
									
										
										
										
											2016-06-18 13:32:03 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-24 16:21:32 +01:00
										 |  |  | 	String custom_theme = EditorSettings::get_singleton()->get("interface/theme/custom_theme"); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (custom_theme != "") { | 
					
						
							| 
									
										
										
										
											2016-06-18 13:32:03 +08:00
										 |  |  | 		theme = ResourceLoader::load(custom_theme); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-29 18:52:56 +02:00
										 |  |  | 	String global_font = EditorSettings::get_singleton()->get("interface/editor/custom_font"); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (global_font != "") { | 
					
						
							| 
									
										
										
										
											2016-06-18 13:32:03 +08:00
										 |  |  | 		Ref<Font> fnt = ResourceLoader::load(global_font); | 
					
						
							|  |  |  | 		if (fnt.is_valid()) { | 
					
						
							| 
									
										
										
										
											2016-09-11 10:01:52 -03:00
										 |  |  | 			if (!theme.is_valid()) { | 
					
						
							|  |  |  | 				theme.instance(); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2016-06-18 13:32:03 +08:00
										 |  |  | 			theme->set_default_theme_font(fnt); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return theme; | 
					
						
							|  |  |  | } |