| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*  color_picker.cpp                                                      */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*                         This file is part of:                          */ | 
					
						
							|  |  |  | /*                             GODOT ENGINE                               */ | 
					
						
							|  |  |  | /*                        https://godotengine.org                         */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ | 
					
						
							|  |  |  | /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur.                  */ | 
					
						
							|  |  |  | /*                                                                        */ | 
					
						
							|  |  |  | /* 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.                 */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							| 
									
										
										
										
											2018-01-05 00:50:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | #include "color_picker.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-05 17:35:39 +01:00
										 |  |  | #include "core/io/image.h"
 | 
					
						
							| 
									
										
										
										
											2024-11-22 01:09:24 +01:00
										 |  |  | #include "scene/gui/aspect_ratio_container.h"
 | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | #include "scene/gui/color_mode.h"
 | 
					
						
							| 
									
										
										
										
											2024-11-22 01:09:24 +01:00
										 |  |  | #include "scene/gui/grid_container.h"
 | 
					
						
							|  |  |  | #include "scene/gui/label.h"
 | 
					
						
							|  |  |  | #include "scene/gui/line_edit.h"
 | 
					
						
							| 
									
										
										
										
											2024-02-23 15:51:47 +02:00
										 |  |  | #include "scene/gui/margin_container.h"
 | 
					
						
							| 
									
										
										
										
											2024-11-22 01:09:24 +01:00
										 |  |  | #include "scene/gui/menu_button.h"
 | 
					
						
							|  |  |  | #include "scene/gui/option_button.h"
 | 
					
						
							|  |  |  | #include "scene/gui/popup_menu.h"
 | 
					
						
							|  |  |  | #include "scene/gui/slider.h"
 | 
					
						
							|  |  |  | #include "scene/gui/spin_box.h"
 | 
					
						
							|  |  |  | #include "scene/gui/texture_rect.h"
 | 
					
						
							| 
									
										
										
										
											2023-07-11 22:29:09 +02:00
										 |  |  | #include "scene/resources/image_texture.h"
 | 
					
						
							| 
									
										
										
										
											2023-07-14 22:35:39 +02:00
										 |  |  | #include "scene/resources/style_box_flat.h"
 | 
					
						
							|  |  |  | #include "scene/resources/style_box_texture.h"
 | 
					
						
							| 
									
										
										
										
											2023-09-08 21:00:10 +02:00
										 |  |  | #include "scene/theme/theme_db.h"
 | 
					
						
							| 
									
										
										
										
											2022-04-18 11:29:29 -07:00
										 |  |  | #include "thirdparty/misc/ok_color_shader.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | void ColorPicker::_notification(int p_what) { | 
					
						
							|  |  |  | 	switch (p_what) { | 
					
						
							| 
									
										
										
										
											2015-11-21 02:51:42 -03:00
										 |  |  | 		case NOTIFICATION_ENTER_TREE: { | 
					
						
							| 
									
										
										
										
											2016-02-01 21:32:47 -03:00
										 |  |  | 			_update_color(); | 
					
						
							| 
									
										
										
										
											2023-04-03 18:01:11 +02:00
										 |  |  | 		} break; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-07-29 23:44:01 +02:00
										 |  |  | 		case NOTIFICATION_READY: { | 
					
						
							|  |  |  | 			// FIXME: The embedding check is needed to fix a bug in single-window mode (GH-93718).
 | 
					
						
							|  |  |  | 			if (DisplayServer::get_singleton()->has_feature(DisplayServer::FEATURE_SCREEN_CAPTURE) && !get_tree()->get_root()->is_embedding_subwindows()) { | 
					
						
							|  |  |  | 				btn_pick->set_tooltip_text(ETR("Pick a color from the screen.")); | 
					
						
							|  |  |  | 				btn_pick->connect(SceneStringName(pressed), callable_mp(this, &ColorPicker::_pick_button_pressed)); | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				// On unsupported platforms, use a legacy method for color picking.
 | 
					
						
							|  |  |  | 				btn_pick->set_tooltip_text(ETR("Pick a color from the application window.")); | 
					
						
							|  |  |  | 				btn_pick->connect(SceneStringName(pressed), callable_mp(this, &ColorPicker::_pick_button_pressed_legacy)); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-15 20:56:06 -03:00
										 |  |  | 		case NOTIFICATION_TRANSLATION_CHANGED: { | 
					
						
							|  |  |  | 			List<BaseButton *> buttons; | 
					
						
							|  |  |  | 			preset_group->get_buttons(&buttons); | 
					
						
							|  |  |  | 			for (List<BaseButton *>::Element *E = buttons.front(); E; E = E->next()) { | 
					
						
							|  |  |  | 				Color preset_color = ((ColorPresetButton *)E->get())->get_preset_color(); | 
					
						
							|  |  |  | 				E->get()->set_tooltip_text(vformat(atr(ETR("Color: #%s\nLMB: Apply color\nRMB: Remove preset")), preset_color.to_html(preset_color.a < 1))); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			buttons.clear(); | 
					
						
							|  |  |  | 			recent_preset_group->get_buttons(&buttons); | 
					
						
							|  |  |  | 			for (List<BaseButton *>::Element *E = buttons.front(); E; E = E->next()) { | 
					
						
							|  |  |  | 				Color preset_color = ((ColorPresetButton *)E->get())->get_preset_color(); | 
					
						
							|  |  |  | 				E->get()->set_tooltip_text(vformat(atr(ETR("Color: #%s\nLMB: Apply color")), preset_color.to_html(preset_color.a < 1))); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-02 23:07:42 +03:00
										 |  |  | 		case NOTIFICATION_THEME_CHANGED: { | 
					
						
							| 
									
										
										
										
											2024-10-09 15:21:47 -07:00
										 |  |  | 			btn_pick->set_button_icon(theme_cache.screen_picker); | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 			_update_drop_down_arrow(btn_preset->is_pressed(), btn_preset); | 
					
						
							|  |  |  | 			_update_drop_down_arrow(btn_recent_preset->is_pressed(), btn_recent_preset); | 
					
						
							| 
									
										
										
										
											2024-10-09 15:21:47 -07:00
										 |  |  | 			btn_add_preset->set_button_icon(theme_cache.add_preset); | 
					
						
							| 
									
										
										
										
											2021-10-02 23:07:42 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-03 18:01:11 +02:00
										 |  |  | 			btn_pick->set_custom_minimum_size(Size2(28 * theme_cache.base_scale, 0)); | 
					
						
							|  |  |  | 			btn_shape->set_custom_minimum_size(Size2(28 * theme_cache.base_scale, 0)); | 
					
						
							|  |  |  | 			btn_mode->set_custom_minimum_size(Size2(28 * theme_cache.base_scale, 0)); | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-03 18:01:11 +02:00
										 |  |  | 			uv_edit->set_custom_minimum_size(Size2(theme_cache.sv_width, theme_cache.sv_height)); | 
					
						
							|  |  |  | 			w_edit->set_custom_minimum_size(Size2(theme_cache.h_width, 0)); | 
					
						
							| 
									
										
										
										
											2021-10-02 23:07:42 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-03 18:01:11 +02:00
										 |  |  | 			wheel_edit->set_custom_minimum_size(Size2(theme_cache.sv_width, theme_cache.sv_height)); | 
					
						
							|  |  |  | 			wheel_margin->add_theme_constant_override("margin_bottom", 8 * theme_cache.base_scale); | 
					
						
							| 
									
										
										
										
											2021-10-02 23:07:42 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 			for (int i = 0; i < SLIDER_COUNT; i++) { | 
					
						
							| 
									
										
										
										
											2023-04-03 18:01:11 +02:00
										 |  |  | 				labels[i]->set_custom_minimum_size(Size2(theme_cache.label_width, 0)); | 
					
						
							| 
									
										
										
										
											2022-11-23 14:56:10 +01:00
										 |  |  | 				sliders[i]->add_theme_constant_override(SNAME("center_grabber"), theme_cache.center_slider_grabbers); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2023-04-03 18:01:11 +02:00
										 |  |  | 			alpha_label->set_custom_minimum_size(Size2(theme_cache.label_width, 0)); | 
					
						
							| 
									
										
										
										
											2023-12-11 16:17:45 +01:00
										 |  |  | 			alpha_slider->add_theme_constant_override(SNAME("center_grabber"), theme_cache.center_slider_grabbers); | 
					
						
							| 
									
										
										
										
											2023-04-03 18:01:11 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			for (int i = 0; i < MODE_BUTTON_COUNT; i++) { | 
					
						
							| 
									
										
										
										
											2023-10-19 18:05:19 +02:00
										 |  |  | 				mode_btns[i]->begin_bulk_theme_override(); | 
					
						
							| 
									
										
										
										
											2024-05-14 09:40:21 +02:00
										 |  |  | 				mode_btns[i]->add_theme_style_override(SceneStringName(pressed), theme_cache.mode_button_pressed); | 
					
						
							| 
									
										
										
										
											2024-05-13 16:56:03 +02:00
										 |  |  | 				mode_btns[i]->add_theme_style_override(CoreStringName(normal), theme_cache.mode_button_normal); | 
					
						
							| 
									
										
										
										
											2023-06-20 12:47:52 +02:00
										 |  |  | 				mode_btns[i]->add_theme_style_override(SNAME("hover"), theme_cache.mode_button_hover); | 
					
						
							| 
									
										
										
										
											2023-10-19 18:05:19 +02:00
										 |  |  | 				mode_btns[i]->end_bulk_theme_override(); | 
					
						
							| 
									
										
										
										
											2023-04-03 18:01:11 +02:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			shape_popup->set_item_icon(shape_popup->get_item_index(SHAPE_HSV_RECTANGLE), theme_cache.shape_rect); | 
					
						
							|  |  |  | 			shape_popup->set_item_icon(shape_popup->get_item_index(SHAPE_HSV_WHEEL), theme_cache.shape_rect_wheel); | 
					
						
							|  |  |  | 			shape_popup->set_item_icon(shape_popup->get_item_index(SHAPE_VHS_CIRCLE), theme_cache.shape_circle); | 
					
						
							|  |  |  | 			shape_popup->set_item_icon(shape_popup->get_item_index(SHAPE_OKHSL_CIRCLE), theme_cache.shape_circle); | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-06 17:18:01 +01:00
										 |  |  | 			if (current_shape != SHAPE_NONE) { | 
					
						
							| 
									
										
										
										
											2024-10-09 15:21:47 -07:00
										 |  |  | 				btn_shape->set_button_icon(shape_popup->get_item_icon(current_shape)); | 
					
						
							| 
									
										
										
										
											2023-11-06 17:18:01 +01:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-19 18:05:19 +02:00
										 |  |  | 			internal_margin->begin_bulk_theme_override(); | 
					
						
							| 
									
										
										
										
											2023-06-20 12:47:52 +02:00
										 |  |  | 			internal_margin->add_theme_constant_override(SNAME("margin_bottom"), theme_cache.content_margin); | 
					
						
							|  |  |  | 			internal_margin->add_theme_constant_override(SNAME("margin_left"), theme_cache.content_margin); | 
					
						
							|  |  |  | 			internal_margin->add_theme_constant_override(SNAME("margin_right"), theme_cache.content_margin); | 
					
						
							|  |  |  | 			internal_margin->add_theme_constant_override(SNAME("margin_top"), theme_cache.content_margin); | 
					
						
							| 
									
										
										
										
											2023-10-19 18:05:19 +02:00
										 |  |  | 			internal_margin->end_bulk_theme_override(); | 
					
						
							| 
									
										
										
										
											2023-06-20 12:47:52 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-03 18:01:11 +02:00
										 |  |  | 			_reset_sliders_theme(); | 
					
						
							| 
									
										
										
										
											2021-10-02 23:07:42 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			if (Engine::get_singleton()->is_editor_hint()) { | 
					
						
							|  |  |  | 				// Adjust for the width of the "Script" icon.
 | 
					
						
							| 
									
										
										
										
											2023-04-03 18:01:11 +02:00
										 |  |  | 				text_type->set_custom_minimum_size(Size2(28 * theme_cache.base_scale, 0)); | 
					
						
							| 
									
										
										
										
											2021-10-02 23:07:42 +03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			_update_presets(); | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 			_update_recent_presets(); | 
					
						
							| 
									
										
										
										
											2021-10-02 23:07:42 +03:00
										 |  |  | 			_update_controls(); | 
					
						
							| 
									
										
										
										
											2017-07-04 05:52:45 +07:00
										 |  |  | 		} break; | 
					
						
							| 
									
										
										
										
											2021-10-02 23:07:42 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-04 13:36:09 -03:00
										 |  |  | 		case NOTIFICATION_WM_CLOSE_REQUEST: { | 
					
						
							| 
									
										
										
										
											2023-02-05 17:35:39 +01:00
										 |  |  | 			if (picker_window != nullptr && picker_window->is_visible()) { | 
					
						
							|  |  |  | 				picker_window->hide(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-06-18 17:16:54 -03:00
										 |  |  | 		} break; | 
					
						
							| 
									
										
										
										
											2023-03-15 23:30:42 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		case NOTIFICATION_INTERNAL_PROCESS: { | 
					
						
							|  |  |  | 			if (!is_picking_color) { | 
					
						
							|  |  |  | 				return; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			set_pick_color(DisplayServer::get_singleton()->screen_get_pixel(DisplayServer::get_singleton()->mouse_get_position())); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-03 18:01:11 +02:00
										 |  |  | void ColorPicker::_update_theme_item_cache() { | 
					
						
							|  |  |  | 	VBoxContainer::_update_theme_item_cache(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	theme_cache.base_scale = get_theme_default_base_scale(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-13 15:51:46 +02:00
										 |  |  | void ColorPicker::init_shaders() { | 
					
						
							| 
									
										
										
										
											2021-06-17 16:03:09 -06:00
										 |  |  | 	wheel_shader.instantiate(); | 
					
						
							| 
									
										
										
										
											2021-07-19 08:06:51 +02:00
										 |  |  | 	wheel_shader->set_code(R"( | 
					
						
							| 
									
										
										
										
											2021-08-18 03:09:22 +02:00
										 |  |  | // ColorPicker wheel shader.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-19 08:06:51 +02:00
										 |  |  | shader_type canvas_item; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void fragment() { | 
					
						
							|  |  |  | 	float x = UV.x - 0.5; | 
					
						
							|  |  |  | 	float y = UV.y - 0.5; | 
					
						
							|  |  |  | 	float a = atan(y, x); | 
					
						
							|  |  |  | 	x += 0.001; | 
					
						
							|  |  |  | 	y += 0.001; | 
					
						
							|  |  |  | 	float b = float(sqrt(x * x + y * y) < 0.5) * float(sqrt(x * x + y * y) > 0.42); | 
					
						
							|  |  |  | 	x -= 0.002; | 
					
						
							|  |  |  | 	float b2 = float(sqrt(x * x + y * y) < 0.5) * float(sqrt(x * x + y * y) > 0.42); | 
					
						
							|  |  |  | 	y -= 0.002; | 
					
						
							|  |  |  | 	float b3 = float(sqrt(x * x + y * y) < 0.5) * float(sqrt(x * x + y * y) > 0.42); | 
					
						
							|  |  |  | 	x += 0.002; | 
					
						
							|  |  |  | 	float b4 = float(sqrt(x * x + y * y) < 0.5) * float(sqrt(x * x + y * y) > 0.42); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	COLOR = vec4(clamp((abs(fract(((a - TAU) / TAU) + vec3(3.0, 2.0, 1.0) / 3.0) * 6.0 - 3.0) - 1.0), 0.0, 1.0), (b + b2 + b3 + b4) / 4.00); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | )"); | 
					
						
							| 
									
										
										
										
											2021-05-13 15:51:46 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-17 16:03:09 -06:00
										 |  |  | 	circle_shader.instantiate(); | 
					
						
							| 
									
										
										
										
											2021-07-19 08:06:51 +02:00
										 |  |  | 	circle_shader->set_code(R"( | 
					
						
							| 
									
										
										
										
											2021-08-18 03:09:22 +02:00
										 |  |  | // ColorPicker circle shader.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-19 08:06:51 +02:00
										 |  |  | shader_type canvas_item; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | uniform float v = 1.0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void fragment() { | 
					
						
							|  |  |  | 	float x = UV.x - 0.5; | 
					
						
							|  |  |  | 	float y = UV.y - 0.5; | 
					
						
							|  |  |  | 	float a = atan(y, x); | 
					
						
							|  |  |  | 	x += 0.001; | 
					
						
							|  |  |  | 	y += 0.001; | 
					
						
							|  |  |  | 	float b = float(sqrt(x * x + y * y) < 0.5); | 
					
						
							|  |  |  | 	x -= 0.002; | 
					
						
							|  |  |  | 	float b2 = float(sqrt(x * x + y * y) < 0.5); | 
					
						
							|  |  |  | 	y -= 0.002; | 
					
						
							|  |  |  | 	float b3 = float(sqrt(x * x + y * y) < 0.5); | 
					
						
							|  |  |  | 	x += 0.002; | 
					
						
							|  |  |  | 	float b4 = float(sqrt(x * x + y * y) < 0.5); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	COLOR = vec4(mix(vec3(1.0), clamp(abs(fract(vec3((a - TAU) / TAU) + vec3(1.0, 2.0 / 3.0, 1.0 / 3.0)) * 6.0 - vec3(3.0)) - vec3(1.0), 0.0, 1.0), ((float(sqrt(x * x + y * y)) * 2.0)) / 1.0) * vec3(v), (b + b2 + b3 + b4) / 4.00); | 
					
						
							|  |  |  | })"); | 
					
						
							| 
									
										
										
										
											2022-04-18 11:29:29 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	circle_ok_color_shader.instantiate(); | 
					
						
							|  |  |  | 	circle_ok_color_shader->set_code(OK_COLOR_SHADER + R"( | 
					
						
							|  |  |  | // ColorPicker ok color hsv circle shader.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-11-20 19:34:31 +08:00
										 |  |  | uniform float ok_hsl_l = 1.0; | 
					
						
							| 
									
										
										
										
											2022-04-18 11:29:29 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | void fragment() { | 
					
						
							|  |  |  | 	float x = UV.x - 0.5; | 
					
						
							|  |  |  | 	float y = UV.y - 0.5; | 
					
						
							| 
									
										
										
										
											2022-08-01 12:39:55 -07:00
										 |  |  | 	float h = atan(y, x) / (2.0 * M_PI); | 
					
						
							|  |  |  | 	float s = sqrt(x * x + y * y) * 2.0; | 
					
						
							| 
									
										
										
										
											2024-11-20 19:34:31 +08:00
										 |  |  | 	vec3 col = okhsl_to_srgb(vec3(h, s, ok_hsl_l)); | 
					
						
							| 
									
										
										
										
											2022-04-18 11:29:29 -07:00
										 |  |  | 	x += 0.001; | 
					
						
							|  |  |  | 	y += 0.001; | 
					
						
							|  |  |  | 	float b = float(sqrt(x * x + y * y) < 0.5); | 
					
						
							|  |  |  | 	x -= 0.002; | 
					
						
							|  |  |  | 	float b2 = float(sqrt(x * x + y * y) < 0.5); | 
					
						
							|  |  |  | 	y -= 0.002; | 
					
						
							|  |  |  | 	float b3 = float(sqrt(x * x + y * y) < 0.5); | 
					
						
							|  |  |  | 	x += 0.002; | 
					
						
							|  |  |  | 	float b4 = float(sqrt(x * x + y * y) < 0.5); | 
					
						
							|  |  |  | 	COLOR = vec4(col, (b + b2 + b3 + b4) / 4.00); | 
					
						
							|  |  |  | })"); | 
					
						
							| 
									
										
										
										
											2021-05-13 15:51:46 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ColorPicker::finish_shaders() { | 
					
						
							|  |  |  | 	wheel_shader.unref(); | 
					
						
							|  |  |  | 	circle_shader.unref(); | 
					
						
							| 
									
										
										
										
											2022-04-18 11:29:29 -07:00
										 |  |  | 	circle_ok_color_shader.unref(); | 
					
						
							| 
									
										
										
										
											2021-05-13 15:51:46 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-01 10:55:35 -03:00
										 |  |  | void ColorPicker::set_focus_on_line_edit() { | 
					
						
							| 
									
										
										
										
											2024-10-04 15:43:55 +05:30
										 |  |  | 	callable_mp((Control *)c_text, &Control::grab_focus).call_deferred(); | 
					
						
							| 
									
										
										
										
											2016-07-01 10:55:35 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | void ColorPicker::_update_controls() { | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 	int mode_sliders_count = modes[current_mode]->get_slider_count(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (int i = current_slider_count; i < mode_sliders_count; i++) { | 
					
						
							|  |  |  | 		sliders[i]->show(); | 
					
						
							|  |  |  | 		labels[i]->show(); | 
					
						
							|  |  |  | 		values[i]->show(); | 
					
						
							| 
									
										
										
										
											2019-05-03 19:38:45 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 	for (int i = mode_sliders_count; i < current_slider_count; i++) { | 
					
						
							|  |  |  | 		sliders[i]->hide(); | 
					
						
							|  |  |  | 		labels[i]->hide(); | 
					
						
							|  |  |  | 		values[i]->hide(); | 
					
						
							| 
									
										
										
										
											2019-05-03 19:38:45 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 	current_slider_count = mode_sliders_count; | 
					
						
							| 
									
										
										
										
											2019-05-03 19:38:45 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 	for (int i = 0; i < current_slider_count; i++) { | 
					
						
							|  |  |  | 		labels[i]->set_text(modes[current_mode]->get_slider_label(i)); | 
					
						
							| 
									
										
										
										
											2021-02-17 12:30:56 +07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 	alpha_label->set_text("A"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	slider_theme_modified = modes[current_mode]->apply_theme(); | 
					
						
							| 
									
										
										
										
											2021-02-17 12:30:56 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	if (edit_alpha) { | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 		alpha_value->show(); | 
					
						
							|  |  |  | 		alpha_slider->show(); | 
					
						
							|  |  |  | 		alpha_label->show(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 		alpha_value->hide(); | 
					
						
							|  |  |  | 		alpha_slider->hide(); | 
					
						
							|  |  |  | 		alpha_label->hide(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 	switch (_get_actual_shape()) { | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 		case SHAPE_HSV_RECTANGLE: | 
					
						
							|  |  |  | 			wheel_edit->hide(); | 
					
						
							|  |  |  | 			w_edit->show(); | 
					
						
							|  |  |  | 			uv_edit->show(); | 
					
						
							| 
									
										
										
										
											2022-10-21 23:20:28 -04:00
										 |  |  | 			btn_shape->show(); | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 		case SHAPE_HSV_WHEEL: | 
					
						
							|  |  |  | 			wheel_edit->show(); | 
					
						
							|  |  |  | 			w_edit->hide(); | 
					
						
							|  |  |  | 			uv_edit->hide(); | 
					
						
							| 
									
										
										
										
											2022-10-21 23:20:28 -04:00
										 |  |  | 			btn_shape->show(); | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 			wheel->set_material(wheel_mat); | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case SHAPE_VHS_CIRCLE: | 
					
						
							|  |  |  | 			wheel_edit->show(); | 
					
						
							|  |  |  | 			w_edit->show(); | 
					
						
							|  |  |  | 			uv_edit->hide(); | 
					
						
							| 
									
										
										
										
											2022-10-21 23:20:28 -04:00
										 |  |  | 			btn_shape->show(); | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 			wheel->set_material(circle_mat); | 
					
						
							| 
									
										
										
										
											2022-04-18 11:29:29 -07:00
										 |  |  | 			circle_mat->set_shader(circle_shader); | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case SHAPE_OKHSL_CIRCLE: | 
					
						
							|  |  |  | 			wheel_edit->show(); | 
					
						
							|  |  |  | 			w_edit->show(); | 
					
						
							|  |  |  | 			uv_edit->hide(); | 
					
						
							| 
									
										
										
										
											2022-10-21 23:20:28 -04:00
										 |  |  | 			btn_shape->show(); | 
					
						
							| 
									
										
										
										
											2022-04-18 11:29:29 -07:00
										 |  |  | 			wheel->set_material(circle_mat); | 
					
						
							|  |  |  | 			circle_mat->set_shader(circle_ok_color_shader); | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2022-10-21 23:20:28 -04:00
										 |  |  | 		case SHAPE_NONE: | 
					
						
							|  |  |  | 			wheel_edit->hide(); | 
					
						
							|  |  |  | 			w_edit->hide(); | 
					
						
							|  |  |  | 			uv_edit->hide(); | 
					
						
							|  |  |  | 			btn_shape->hide(); | 
					
						
							|  |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 		default: { | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-19 14:52:54 +02:00
										 |  |  | void ColorPicker::_set_pick_color(const Color &p_color, bool p_update_sliders) { | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 	if (text_changed) { | 
					
						
							|  |  |  | 		add_recent_preset(color); | 
					
						
							|  |  |  | 		text_changed = false; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	color = p_color; | 
					
						
							| 
									
										
										
										
											2022-04-18 11:29:29 -07:00
										 |  |  | 	if (color != last_color) { | 
					
						
							| 
									
										
										
										
											2022-08-01 22:54:33 +02:00
										 |  |  | 		_copy_color_to_hsv(); | 
					
						
							| 
									
										
										
										
											2022-04-18 11:29:29 -07:00
										 |  |  | 		last_color = color; | 
					
						
							| 
									
										
										
										
											2016-02-05 23:35:15 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-02-01 21:32:47 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!is_inside_tree()) { | 
					
						
							| 
									
										
										
										
											2016-02-01 21:32:47 -03:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-02-01 21:32:47 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-03 19:38:45 +02:00
										 |  |  | 	_update_color(p_update_sliders); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-19 14:52:54 +02:00
										 |  |  | void ColorPicker::set_pick_color(const Color &p_color) { | 
					
						
							|  |  |  | 	_set_pick_color(p_color, true); //because setters can't have more arguments
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-05 18:01:24 +01:00
										 |  |  | void ColorPicker::set_old_color(const Color &p_color) { | 
					
						
							|  |  |  | 	old_color = p_color; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ColorPicker::set_display_old_color(bool p_enabled) { | 
					
						
							|  |  |  | 	display_old_color = p_enabled; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool ColorPicker::is_displaying_old_color() const { | 
					
						
							|  |  |  | 	return display_old_color; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | void ColorPicker::set_edit_alpha(bool p_show) { | 
					
						
							| 
									
										
										
										
											2022-03-16 15:50:48 +08:00
										 |  |  | 	if (edit_alpha == p_show) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	edit_alpha = p_show; | 
					
						
							|  |  |  | 	_update_controls(); | 
					
						
							| 
									
										
										
										
											2016-02-01 21:32:47 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!is_inside_tree()) { | 
					
						
							| 
									
										
										
										
											2016-02-01 21:32:47 -03:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-02-01 21:32:47 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	_update_color(); | 
					
						
							| 
									
										
										
										
											2022-08-13 23:21:24 +02:00
										 |  |  | 	sample->queue_redraw(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool ColorPicker::is_editing_alpha() const { | 
					
						
							|  |  |  | 	return edit_alpha; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-19 10:47:46 +02:00
										 |  |  | void ColorPicker::_slider_drag_started() { | 
					
						
							|  |  |  | 	currently_dragging = true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ColorPicker::_slider_value_changed() { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (updating) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 	color = modes[current_mode]->get_color(); | 
					
						
							| 
									
										
										
										
											2023-07-01 14:17:46 -07:00
										 |  |  | 	modes[current_mode]->_value_changed(); | 
					
						
							| 
									
										
										
										
											2023-06-04 18:22:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-11-20 19:34:31 +08:00
										 |  |  | 	if (current_mode == MODE_HSV) { | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 		h = sliders[0]->get_value() / 360.0; | 
					
						
							|  |  |  | 		s = sliders[1]->get_value() / 100.0; | 
					
						
							|  |  |  | 		v = sliders[2]->get_value() / 100.0; | 
					
						
							| 
									
										
										
										
											2024-11-20 19:34:31 +08:00
										 |  |  | 		ok_hsl_h = color.get_ok_hsl_h(); | 
					
						
							|  |  |  | 		ok_hsl_s = color.get_ok_hsl_s(); | 
					
						
							|  |  |  | 		ok_hsl_l = color.get_ok_hsl_l(); | 
					
						
							|  |  |  | 		last_color = color; | 
					
						
							|  |  |  | 	} else if (current_mode == MODE_OKHSL) { | 
					
						
							|  |  |  | 		ok_hsl_h = sliders[0]->get_value() / 360.0; | 
					
						
							|  |  |  | 		ok_hsl_s = sliders[1]->get_value() / 100.0; | 
					
						
							|  |  |  | 		ok_hsl_l = sliders[2]->get_value() / 100.0; | 
					
						
							|  |  |  | 		h = color.get_h(); | 
					
						
							|  |  |  | 		s = color.get_s(); | 
					
						
							|  |  |  | 		v = color.get_v(); | 
					
						
							| 
									
										
										
										
											2022-04-18 11:29:29 -07:00
										 |  |  | 		last_color = color; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-19 14:52:54 +02:00
										 |  |  | 	_set_pick_color(color, false); | 
					
						
							| 
									
										
										
										
											2023-09-19 10:47:46 +02:00
										 |  |  | 	if (!deferred_mode_enabled || !currently_dragging) { | 
					
						
							|  |  |  | 		emit_signal(SNAME("color_changed"), color); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ColorPicker::_slider_drag_ended() { | 
					
						
							|  |  |  | 	currently_dragging = false; | 
					
						
							|  |  |  | 	if (deferred_mode_enabled) { | 
					
						
							|  |  |  | 		emit_signal(SNAME("color_changed"), color); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | void ColorPicker::add_mode(ColorMode *p_mode) { | 
					
						
							|  |  |  | 	modes.push_back(p_mode); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ColorPicker::create_slider(GridContainer *gc, int idx) { | 
					
						
							| 
									
										
										
										
											2024-04-18 20:26:56 +02:00
										 |  |  | 	Label *lbl = memnew(Label); | 
					
						
							| 
									
										
										
										
											2022-09-29 12:53:28 +03:00
										 |  |  | 	lbl->set_v_size_flags(SIZE_SHRINK_CENTER); | 
					
						
							| 
									
										
										
										
											2024-04-18 20:26:56 +02:00
										 |  |  | 	lbl->set_auto_translate_mode(AUTO_TRANSLATE_MODE_DISABLED); | 
					
						
							| 
									
										
										
										
											2022-09-29 12:53:28 +03:00
										 |  |  | 	gc->add_child(lbl); | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-29 12:53:28 +03:00
										 |  |  | 	HSlider *slider = memnew(HSlider); | 
					
						
							|  |  |  | 	slider->set_v_size_flags(SIZE_SHRINK_CENTER); | 
					
						
							|  |  |  | 	slider->set_focus_mode(FOCUS_NONE); | 
					
						
							|  |  |  | 	gc->add_child(slider); | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-29 12:53:28 +03:00
										 |  |  | 	SpinBox *val = memnew(SpinBox); | 
					
						
							|  |  |  | 	slider->share(val); | 
					
						
							| 
									
										
										
										
											2022-10-16 20:37:35 +08:00
										 |  |  | 	val->set_select_all_on_focus(true); | 
					
						
							| 
									
										
										
										
											2022-09-29 12:53:28 +03:00
										 |  |  | 	gc->add_child(val); | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-29 12:53:28 +03:00
										 |  |  | 	LineEdit *vle = val->get_line_edit(); | 
					
						
							| 
									
										
										
										
											2024-05-14 11:42:00 +02:00
										 |  |  | 	vle->connect(SceneStringName(text_changed), callable_mp(this, &ColorPicker::_text_changed)); | 
					
						
							| 
									
										
										
										
											2024-05-13 16:56:03 +02:00
										 |  |  | 	vle->connect(SceneStringName(gui_input), callable_mp(this, &ColorPicker::_line_edit_input)); | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 	vle->set_horizontal_alignment(HORIZONTAL_ALIGNMENT_RIGHT); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-13 16:56:03 +02:00
										 |  |  | 	val->connect(SceneStringName(gui_input), callable_mp(this, &ColorPicker::_slider_or_spin_input)); | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-29 12:53:28 +03:00
										 |  |  | 	slider->set_h_size_flags(SIZE_EXPAND_FILL); | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-19 10:47:46 +02:00
										 |  |  | 	slider->connect("drag_started", callable_mp(this, &ColorPicker::_slider_drag_started)); | 
					
						
							| 
									
										
										
										
											2024-05-14 11:42:00 +02:00
										 |  |  | 	slider->connect(SceneStringName(value_changed), callable_mp(this, &ColorPicker::_slider_value_changed).unbind(1)); | 
					
						
							| 
									
										
										
										
											2023-09-19 10:47:46 +02:00
										 |  |  | 	slider->connect("drag_ended", callable_mp(this, &ColorPicker::_slider_drag_ended).unbind(1)); | 
					
						
							| 
									
										
										
										
											2024-05-13 16:56:03 +02:00
										 |  |  | 	slider->connect(SceneStringName(draw), callable_mp(this, &ColorPicker::_slider_draw).bind(idx)); | 
					
						
							|  |  |  | 	slider->connect(SceneStringName(gui_input), callable_mp(this, &ColorPicker::_slider_or_spin_input)); | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (idx < SLIDER_COUNT) { | 
					
						
							| 
									
										
										
										
											2022-09-29 12:53:28 +03:00
										 |  |  | 		sliders[idx] = slider; | 
					
						
							|  |  |  | 		values[idx] = val; | 
					
						
							|  |  |  | 		labels[idx] = lbl; | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2022-09-29 12:53:28 +03:00
										 |  |  | 		alpha_slider = slider; | 
					
						
							|  |  |  | 		alpha_value = val; | 
					
						
							|  |  |  | 		alpha_label = lbl; | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-11 14:57:20 +02:00
										 |  |  | #ifdef TOOLS_ENABLED
 | 
					
						
							|  |  |  | void ColorPicker::set_editor_settings(Object *p_editor_settings) { | 
					
						
							|  |  |  | 	if (editor_settings) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	editor_settings = p_editor_settings; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (preset_cache.is_empty()) { | 
					
						
							|  |  |  | 		PackedColorArray saved_presets = editor_settings->call(SNAME("get_project_metadata"), "color_picker", "presets", PackedColorArray()); | 
					
						
							|  |  |  | 		for (int i = 0; i < saved_presets.size(); i++) { | 
					
						
							|  |  |  | 			preset_cache.push_back(saved_presets[i]); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-15 15:18:34 +02:00
										 |  |  | 	for (const Color &preset : preset_cache) { | 
					
						
							|  |  |  | 		presets.push_back(preset); | 
					
						
							| 
									
										
										
										
											2022-10-11 14:57:20 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (recent_preset_cache.is_empty()) { | 
					
						
							|  |  |  | 		PackedColorArray saved_recent_presets = editor_settings->call(SNAME("get_project_metadata"), "color_picker", "recent_presets", PackedColorArray()); | 
					
						
							|  |  |  | 		for (int i = 0; i < saved_recent_presets.size(); i++) { | 
					
						
							|  |  |  | 			recent_preset_cache.push_back(saved_recent_presets[i]); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-15 15:18:34 +02:00
										 |  |  | 	for (const Color &preset : recent_preset_cache) { | 
					
						
							|  |  |  | 		recent_presets.push_back(preset); | 
					
						
							| 
									
										
										
										
											2022-10-11 14:57:20 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	_update_presets(); | 
					
						
							|  |  |  | 	_update_recent_presets(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-29 12:53:28 +03:00
										 |  |  | HSlider *ColorPicker::get_slider(int p_idx) { | 
					
						
							|  |  |  | 	if (p_idx < SLIDER_COUNT) { | 
					
						
							|  |  |  | 		return sliders[p_idx]; | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 	} | 
					
						
							|  |  |  | 	return alpha_slider; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Vector<float> ColorPicker::get_active_slider_values() { | 
					
						
							| 
									
										
										
										
											2022-09-29 12:53:28 +03:00
										 |  |  | 	Vector<float> cur_values; | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 	for (int i = 0; i < current_slider_count; i++) { | 
					
						
							| 
									
										
										
										
											2022-09-29 12:53:28 +03:00
										 |  |  | 		cur_values.push_back(sliders[i]->get_value()); | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-09-29 12:53:28 +03:00
										 |  |  | 	cur_values.push_back(alpha_slider->get_value()); | 
					
						
							|  |  |  | 	return cur_values; | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-01 22:54:33 +02:00
										 |  |  | void ColorPicker::_copy_color_to_hsv() { | 
					
						
							| 
									
										
										
										
											2024-11-20 19:34:31 +08:00
										 |  |  | 	ok_hsl_h = color.get_ok_hsl_h(); | 
					
						
							|  |  |  | 	ok_hsl_s = color.get_ok_hsl_s(); | 
					
						
							|  |  |  | 	ok_hsl_l = color.get_ok_hsl_l(); | 
					
						
							|  |  |  | 	h = color.get_h(); | 
					
						
							|  |  |  | 	s = color.get_s(); | 
					
						
							|  |  |  | 	v = color.get_v(); | 
					
						
							| 
									
										
										
										
											2022-08-01 22:54:33 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ColorPicker::_copy_hsv_to_color() { | 
					
						
							|  |  |  | 	if (_get_actual_shape() == SHAPE_OKHSL_CIRCLE) { | 
					
						
							| 
									
										
										
										
											2024-11-20 19:34:31 +08:00
										 |  |  | 		color.set_ok_hsl(ok_hsl_h, ok_hsl_s, ok_hsl_l, color.a); | 
					
						
							| 
									
										
										
										
											2022-08-01 22:54:33 +02:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		color.set_hsv(h, s, v, color.a); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | void ColorPicker::_select_from_preset_container(const Color &p_color) { | 
					
						
							|  |  |  | 	if (preset_group->get_pressed_button()) { | 
					
						
							|  |  |  | 		preset_group->get_pressed_button()->set_pressed(false); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (int i = 1; i < preset_container->get_child_count(); i++) { | 
					
						
							|  |  |  | 		ColorPresetButton *current_btn = Object::cast_to<ColorPresetButton>(preset_container->get_child(i)); | 
					
						
							|  |  |  | 		if (current_btn && p_color == current_btn->get_preset_color()) { | 
					
						
							|  |  |  | 			current_btn->set_pressed(true); | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool ColorPicker::_select_from_recent_preset_hbc(const Color &p_color) { | 
					
						
							|  |  |  | 	for (int i = 0; i < recent_preset_hbc->get_child_count(); i++) { | 
					
						
							|  |  |  | 		ColorPresetButton *current_btn = Object::cast_to<ColorPresetButton>(recent_preset_hbc->get_child(i)); | 
					
						
							|  |  |  | 		if (current_btn && p_color == current_btn->get_preset_color()) { | 
					
						
							|  |  |  | 			current_btn->set_pressed(true); | 
					
						
							|  |  |  | 			return true; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return false; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | ColorPicker::PickerShapeType ColorPicker::_get_actual_shape() const { | 
					
						
							|  |  |  | 	return modes[current_mode]->get_shape_override() != SHAPE_MAX ? modes[current_mode]->get_shape_override() : current_shape; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-03 18:01:11 +02:00
										 |  |  | void ColorPicker::_reset_sliders_theme() { | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 	Ref<StyleBoxFlat> style_box_flat(memnew(StyleBoxFlat)); | 
					
						
							| 
									
										
										
										
											2023-04-03 18:01:11 +02:00
										 |  |  | 	style_box_flat->set_content_margin(SIDE_TOP, 16 * theme_cache.base_scale); | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 	style_box_flat->set_bg_color(Color(0.2, 0.23, 0.31).lerp(Color(0, 0, 0, 1), 0.3).clamp()); | 
					
						
							| 
									
										
										
										
											2023-10-19 18:05:19 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 	for (int i = 0; i < SLIDER_COUNT; i++) { | 
					
						
							| 
									
										
										
										
											2023-10-19 18:05:19 +02:00
										 |  |  | 		sliders[i]->begin_bulk_theme_override(); | 
					
						
							| 
									
										
										
										
											2023-04-03 18:01:11 +02:00
										 |  |  | 		sliders[i]->add_theme_icon_override("grabber", theme_cache.bar_arrow); | 
					
						
							|  |  |  | 		sliders[i]->add_theme_icon_override("grabber_highlight", theme_cache.bar_arrow); | 
					
						
							|  |  |  | 		sliders[i]->add_theme_constant_override("grabber_offset", 8 * theme_cache.base_scale); | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 		if (!colorize_sliders) { | 
					
						
							|  |  |  | 			sliders[i]->add_theme_style_override("slider", style_box_flat); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2023-10-19 18:05:19 +02:00
										 |  |  | 		sliders[i]->end_bulk_theme_override(); | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2023-10-19 18:05:19 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	alpha_slider->begin_bulk_theme_override(); | 
					
						
							| 
									
										
										
										
											2023-04-03 18:01:11 +02:00
										 |  |  | 	alpha_slider->add_theme_icon_override("grabber", theme_cache.bar_arrow); | 
					
						
							|  |  |  | 	alpha_slider->add_theme_icon_override("grabber_highlight", theme_cache.bar_arrow); | 
					
						
							|  |  |  | 	alpha_slider->add_theme_constant_override("grabber_offset", 8 * theme_cache.base_scale); | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 	if (!colorize_sliders) { | 
					
						
							|  |  |  | 		alpha_slider->add_theme_style_override("slider", style_box_flat); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2023-10-19 18:05:19 +02:00
										 |  |  | 	alpha_slider->end_bulk_theme_override(); | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-16 09:43:34 -07:00
										 |  |  | void ColorPicker::_html_submitted(const String &p_html) { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (updating || text_is_constructor || !c_text->is_visible()) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-04 17:19:39 +01:00
										 |  |  | 	Color new_color = Color::from_string(p_html.strip_edges(), color); | 
					
						
							| 
									
										
										
										
											2023-11-04 11:09:18 +01:00
										 |  |  | 	String html_no_prefix = p_html.strip_edges().trim_prefix("#"); | 
					
						
							|  |  |  | 	if (html_no_prefix.is_valid_hex_number(false)) { | 
					
						
							|  |  |  | 		// Convert invalid HTML color codes that software like Figma supports.
 | 
					
						
							|  |  |  | 		if (html_no_prefix.length() == 1) { | 
					
						
							|  |  |  | 			// Turn `#1` into `#111111`.
 | 
					
						
							|  |  |  | 			html_no_prefix = html_no_prefix.repeat(6); | 
					
						
							|  |  |  | 		} else if (html_no_prefix.length() == 2) { | 
					
						
							|  |  |  | 			// Turn `#12` into `#121212`.
 | 
					
						
							|  |  |  | 			html_no_prefix = html_no_prefix.repeat(3); | 
					
						
							|  |  |  | 		} else if (html_no_prefix.length() == 5) { | 
					
						
							|  |  |  | 			// Turn `#12345` into `#11223344`.
 | 
					
						
							|  |  |  | 			html_no_prefix = html_no_prefix.left(4); | 
					
						
							|  |  |  | 		} else if (html_no_prefix.length() == 7) { | 
					
						
							|  |  |  | 			// Turn `#1234567` into `#123456`.
 | 
					
						
							|  |  |  | 			html_no_prefix = html_no_prefix.left(6); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	new_color = Color::from_string(html_no_prefix, new_color); | 
					
						
							| 
									
										
										
										
											2023-04-10 21:06:02 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!is_editing_alpha()) { | 
					
						
							| 
									
										
										
										
											2023-12-04 17:19:39 +01:00
										 |  |  | 		new_color.a = color.a; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-02-01 21:32:47 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-04 17:19:39 +01:00
										 |  |  | 	if (new_color.to_argb32() == color.to_argb32()) { | 
					
						
							| 
									
										
										
										
											2022-09-24 15:43:41 +02:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2023-12-04 17:19:39 +01:00
										 |  |  | 	color = new_color; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!is_inside_tree()) { | 
					
						
							| 
									
										
										
										
											2016-02-01 21:32:47 -03:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-02-01 21:32:47 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-14 11:07:57 -03:00
										 |  |  | 	set_pick_color(color); | 
					
						
							| 
									
										
										
										
											2021-07-17 18:22:52 -03:00
										 |  |  | 	emit_signal(SNAME("color_changed"), color); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-03 19:38:45 +02:00
										 |  |  | void ColorPicker::_update_color(bool p_update_sliders) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	updating = true; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-03 19:38:45 +02:00
										 |  |  | 	if (p_update_sliders) { | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 		float step = modes[current_mode]->get_slider_step(); | 
					
						
							| 
									
										
										
										
											2023-10-23 18:33:56 +02:00
										 |  |  | 		float spinbox_arrow_step = modes[current_mode]->get_spinbox_arrow_step(); | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 		for (int i = 0; i < current_slider_count; i++) { | 
					
						
							|  |  |  | 			sliders[i]->set_max(modes[current_mode]->get_slider_max(i)); | 
					
						
							|  |  |  | 			sliders[i]->set_step(step); | 
					
						
							| 
									
										
										
										
											2023-10-23 18:33:56 +02:00
										 |  |  | 			values[i]->set_custom_arrow_step(spinbox_arrow_step); | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 			sliders[i]->set_value(modes[current_mode]->get_slider_value(i)); | 
					
						
							| 
									
										
										
										
											2016-07-02 20:08:25 -05:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 		alpha_slider->set_max(modes[current_mode]->get_slider_max(current_slider_count)); | 
					
						
							|  |  |  | 		alpha_slider->set_step(step); | 
					
						
							|  |  |  | 		alpha_slider->set_value(modes[current_mode]->get_slider_value(current_slider_count)); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-02 20:08:25 -05:00
										 |  |  | 	_update_text_value(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-13 23:21:24 +02:00
										 |  |  | 	sample->queue_redraw(); | 
					
						
							|  |  |  | 	uv_edit->queue_redraw(); | 
					
						
							|  |  |  | 	w_edit->queue_redraw(); | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 	for (int i = 0; i < current_slider_count; i++) { | 
					
						
							| 
									
										
										
										
											2022-08-13 23:21:24 +02:00
										 |  |  | 		sliders[i]->queue_redraw(); | 
					
						
							| 
									
										
										
										
											2021-02-17 12:30:56 +07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-08-13 23:21:24 +02:00
										 |  |  | 	alpha_slider->queue_redraw(); | 
					
						
							|  |  |  | 	wheel->queue_redraw(); | 
					
						
							|  |  |  | 	wheel_uv->queue_redraw(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	updating = false; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-23 23:17:09 -03:00
										 |  |  | void ColorPicker::_update_presets() { | 
					
						
							| 
									
										
										
										
											2021-08-18 02:09:48 +02:00
										 |  |  | 	int preset_size = _get_preset_size(); | 
					
						
							|  |  |  | 	// Only update the preset button size if it has changed.
 | 
					
						
							|  |  |  | 	if (preset_size != prev_preset_size) { | 
					
						
							|  |  |  | 		prev_preset_size = preset_size; | 
					
						
							|  |  |  | 		btn_add_preset->set_custom_minimum_size(Size2(preset_size, preset_size)); | 
					
						
							|  |  |  | 		for (int i = 1; i < preset_container->get_child_count(); i++) { | 
					
						
							|  |  |  | 			ColorPresetButton *cpb = Object::cast_to<ColorPresetButton>(preset_container->get_child(i)); | 
					
						
							|  |  |  | 			cpb->set_custom_minimum_size(Size2(preset_size, preset_size)); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | #ifdef TOOLS_ENABLED
 | 
					
						
							| 
									
										
										
										
											2022-10-11 14:57:20 +02:00
										 |  |  | 	if (editor_settings) { | 
					
						
							| 
									
										
										
										
											2023-05-05 10:53:16 -04:00
										 |  |  | 		// Rebuild swatch color buttons, keeping the add-preset button in the first position.
 | 
					
						
							|  |  |  | 		for (int i = 1; i < preset_container->get_child_count(); i++) { | 
					
						
							|  |  |  | 			preset_container->get_child(i)->queue_free(); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2024-04-15 15:18:34 +02:00
										 |  |  | 		for (const Color &preset : preset_cache) { | 
					
						
							|  |  |  | 			_add_preset_button(preset_size, preset); | 
					
						
							| 
									
										
										
										
											2021-08-18 02:09:48 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2023-05-05 10:53:16 -04:00
										 |  |  | 		_notification(NOTIFICATION_VISIBILITY_CHANGED); | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 	} | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ColorPicker::_update_recent_presets() { | 
					
						
							|  |  |  | #ifdef TOOLS_ENABLED
 | 
					
						
							| 
									
										
										
										
											2022-10-11 14:57:20 +02:00
										 |  |  | 	if (editor_settings) { | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 		int recent_preset_count = recent_preset_hbc->get_child_count(); | 
					
						
							|  |  |  | 		for (int i = 0; i < recent_preset_count; i++) { | 
					
						
							|  |  |  | 			memdelete(recent_preset_hbc->get_child(0)); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		recent_presets.clear(); | 
					
						
							| 
									
										
										
										
											2024-04-15 15:18:34 +02:00
										 |  |  | 		for (const Color &preset : recent_preset_cache) { | 
					
						
							|  |  |  | 			recent_presets.push_back(preset); | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		int preset_size = _get_preset_size(); | 
					
						
							| 
									
										
										
										
											2024-04-15 15:18:34 +02:00
										 |  |  | 		for (const Color &preset : recent_presets) { | 
					
						
							|  |  |  | 			_add_recent_preset_button(preset_size, preset); | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-18 02:09:48 +02:00
										 |  |  | 		_notification(NOTIFICATION_VISIBILITY_CHANGED); | 
					
						
							| 
									
										
										
										
											2017-09-27 14:44:48 -05:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2015-12-23 23:17:09 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-26 19:10:56 -03:00
										 |  |  | void ColorPicker::_text_type_toggled() { | 
					
						
							|  |  |  | 	text_is_constructor = !text_is_constructor; | 
					
						
							|  |  |  | 	if (text_is_constructor) { | 
					
						
							|  |  |  | 		text_type->set_text(""); | 
					
						
							| 
									
										
										
										
											2023-08-13 02:33:39 +02:00
										 |  |  | #ifdef TOOLS_ENABLED
 | 
					
						
							| 
									
										
										
										
											2024-10-09 15:21:47 -07:00
										 |  |  | 		text_type->set_button_icon(get_editor_theme_icon(SNAME("Script"))); | 
					
						
							| 
									
										
										
										
											2023-08-13 02:33:39 +02:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2019-01-26 19:07:32 -02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		c_text->set_editable(false); | 
					
						
							| 
									
										
										
										
											2023-04-10 21:06:02 +02:00
										 |  |  | 		c_text->set_tooltip_text(RTR("Copy this constructor in a script.")); | 
					
						
							| 
									
										
										
										
											2016-01-26 19:10:56 -03:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		text_type->set_text("#"); | 
					
						
							| 
									
										
										
										
											2024-10-09 15:21:47 -07:00
										 |  |  | 		text_type->set_button_icon(nullptr); | 
					
						
							| 
									
										
										
										
											2019-01-26 19:07:32 -02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		c_text->set_editable(true); | 
					
						
							| 
									
										
										
										
											2023-12-15 20:56:06 -03:00
										 |  |  | 		c_text->set_tooltip_text(ETR("Enter a hex code (\"#ff0000\") or named color (\"red\").")); | 
					
						
							| 
									
										
										
										
											2016-01-26 19:10:56 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	_update_color(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-14 11:07:57 -03:00
										 |  |  | Color ColorPicker::get_pick_color() const { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	return color; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-02-22 18:01:28 -06:00
										 |  |  | Color ColorPicker::get_old_color() const { | 
					
						
							|  |  |  | 	return old_color; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | void ColorPicker::set_picker_shape(PickerShapeType p_shape) { | 
					
						
							|  |  |  | 	ERR_FAIL_INDEX(p_shape, SHAPE_MAX); | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 	if (p_shape == current_shape) { | 
					
						
							| 
									
										
										
										
											2022-03-16 15:50:48 +08:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-10-21 23:20:28 -04:00
										 |  |  | 	if (current_shape != SHAPE_NONE) { | 
					
						
							|  |  |  | 		shape_popup->set_item_checked(current_shape, false); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (p_shape != SHAPE_NONE) { | 
					
						
							|  |  |  | 		shape_popup->set_item_checked(p_shape, true); | 
					
						
							| 
									
										
										
										
											2024-10-09 15:21:47 -07:00
										 |  |  | 		btn_shape->set_button_icon(shape_popup->get_item_icon(p_shape)); | 
					
						
							| 
									
										
										
										
											2022-10-21 23:20:28 -04:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 	current_shape = p_shape; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-13 20:05:20 +00:00
										 |  |  | #ifdef TOOLS_ENABLED
 | 
					
						
							|  |  |  | 	if (editor_settings) { | 
					
						
							|  |  |  | 		editor_settings->call(SNAME("set_project_metadata"), "color_picker", "picker_shape", current_shape); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-01 22:54:33 +02:00
										 |  |  | 	_copy_color_to_hsv(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 	_update_controls(); | 
					
						
							|  |  |  | 	_update_color(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ColorPicker::PickerShapeType ColorPicker::get_picker_shape() const { | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 	return current_shape; | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-18 02:09:48 +02:00
										 |  |  | inline int ColorPicker::_get_preset_size() { | 
					
						
							| 
									
										
										
										
											2023-09-12 15:01:42 +02:00
										 |  |  | 	return (int(get_minimum_size().width) - (preset_container->get_h_separation() * (PRESET_COLUMN_COUNT - 1))) / PRESET_COLUMN_COUNT; | 
					
						
							| 
									
										
										
										
											2021-08-18 02:09:48 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ColorPicker::_add_preset_button(int p_size, const Color &p_color) { | 
					
						
							| 
									
										
										
										
											2022-09-29 12:53:28 +03:00
										 |  |  | 	ColorPresetButton *btn_preset_new = memnew(ColorPresetButton(p_color, p_size)); | 
					
						
							| 
									
										
										
										
											2023-12-15 20:56:06 -03:00
										 |  |  | 	btn_preset_new->set_tooltip_text(vformat(atr(ETR("Color: #%s\nLMB: Apply color\nRMB: Remove preset")), p_color.to_html(p_color.a < 1))); | 
					
						
							| 
									
										
										
										
											2023-01-14 03:37:19 +01:00
										 |  |  | 	SET_DRAG_FORWARDING_GCDU(btn_preset_new, ColorPicker); | 
					
						
							| 
									
										
										
										
											2022-09-29 12:53:28 +03:00
										 |  |  | 	btn_preset_new->set_button_group(preset_group); | 
					
						
							|  |  |  | 	preset_container->add_child(btn_preset_new); | 
					
						
							|  |  |  | 	btn_preset_new->set_pressed(true); | 
					
						
							| 
									
										
										
										
											2024-05-13 16:56:03 +02:00
										 |  |  | 	btn_preset_new->connect(SceneStringName(gui_input), callable_mp(this, &ColorPicker::_preset_input).bind(p_color)); | 
					
						
							| 
									
										
										
										
											2021-08-18 02:09:48 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | void ColorPicker::_add_recent_preset_button(int p_size, const Color &p_color) { | 
					
						
							| 
									
										
										
										
											2022-09-29 12:53:28 +03:00
										 |  |  | 	ColorPresetButton *btn_preset_new = memnew(ColorPresetButton(p_color, p_size)); | 
					
						
							| 
									
										
										
										
											2023-12-15 20:56:06 -03:00
										 |  |  | 	btn_preset_new->set_tooltip_text(vformat(atr(ETR("Color: #%s\nLMB: Apply color")), p_color.to_html(p_color.a < 1))); | 
					
						
							| 
									
										
										
										
											2022-09-29 12:53:28 +03:00
										 |  |  | 	btn_preset_new->set_button_group(recent_preset_group); | 
					
						
							|  |  |  | 	recent_preset_hbc->add_child(btn_preset_new); | 
					
						
							|  |  |  | 	recent_preset_hbc->move_child(btn_preset_new, 0); | 
					
						
							|  |  |  | 	btn_preset_new->set_pressed(true); | 
					
						
							| 
									
										
										
										
											2024-06-01 13:15:13 +03:00
										 |  |  | 	btn_preset_new->connect(SceneStringName(toggled), callable_mp(this, &ColorPicker::_recent_preset_pressed).bind(btn_preset_new)); | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ColorPicker::_show_hide_preset(const bool &p_is_btn_pressed, Button *p_btn_preset, Container *p_preset_container) { | 
					
						
							|  |  |  | 	if (p_is_btn_pressed) { | 
					
						
							|  |  |  | 		p_preset_container->show(); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		p_preset_container->hide(); | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 	_update_drop_down_arrow(p_is_btn_pressed, p_btn_preset); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | void ColorPicker::_update_drop_down_arrow(const bool &p_is_btn_pressed, Button *p_btn_preset) { | 
					
						
							|  |  |  | 	if (p_is_btn_pressed) { | 
					
						
							| 
									
										
										
										
											2024-10-09 15:21:47 -07:00
										 |  |  | 		p_btn_preset->set_button_icon(theme_cache.expanded_arrow); | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2024-10-09 15:21:47 -07:00
										 |  |  | 		p_btn_preset->set_button_icon(theme_cache.folded_arrow); | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | void ColorPicker::_set_mode_popup_value(ColorModeType p_mode) { | 
					
						
							|  |  |  | 	ERR_FAIL_INDEX(p_mode, MODE_MAX + 1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (p_mode == MODE_MAX) { | 
					
						
							|  |  |  | 		set_colorize_sliders(!colorize_sliders); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		set_color_mode(p_mode); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Variant ColorPicker::_get_drag_data_fw(const Point2 &p_point, Control *p_from_control) { | 
					
						
							|  |  |  | 	ColorPresetButton *dragged_preset_button = Object::cast_to<ColorPresetButton>(p_from_control); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!dragged_preset_button) { | 
					
						
							|  |  |  | 		return Variant(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ColorPresetButton *drag_preview = memnew(ColorPresetButton(dragged_preset_button->get_preset_color(), _get_preset_size())); | 
					
						
							|  |  |  | 	set_drag_preview(drag_preview); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Dictionary drag_data; | 
					
						
							|  |  |  | 	drag_data["type"] = "color_preset"; | 
					
						
							|  |  |  | 	drag_data["color_preset"] = dragged_preset_button->get_index(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return drag_data; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool ColorPicker::_can_drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_from_control) const { | 
					
						
							|  |  |  | 	Dictionary d = p_data; | 
					
						
							|  |  |  | 	if (!d.has("type") || String(d["type"]) != "color_preset") { | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ColorPicker::_drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_from_control) { | 
					
						
							|  |  |  | 	Dictionary d = p_data; | 
					
						
							|  |  |  | 	if (!d.has("type")) { | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 	if (String(d["type"]) == "color_preset") { | 
					
						
							|  |  |  | 		int preset_from_id = d["color_preset"]; | 
					
						
							|  |  |  | 		int hover_now = p_from_control->get_index(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (preset_from_id == hover_now || hover_now == -1) { | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		preset_container->move_child(preset_container->get_child(preset_from_id), hover_now); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-23 23:17:09 -03:00
										 |  |  | void ColorPicker::add_preset(const Color &p_color) { | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 	List<Color>::Element *e = presets.find(p_color); | 
					
						
							|  |  |  | 	if (e) { | 
					
						
							|  |  |  | 		presets.move_to_back(e); | 
					
						
							|  |  |  | 		preset_cache.move_to_back(preset_cache.find(p_color)); | 
					
						
							| 
									
										
										
										
											2021-08-18 02:09:48 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 		preset_container->move_child(preset_group->get_pressed_button(), preset_container->get_child_count() - 1); | 
					
						
							| 
									
										
										
										
											2015-12-23 23:17:09 -03:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		presets.push_back(p_color); | 
					
						
							| 
									
										
										
										
											2021-07-07 14:17:44 -04:00
										 |  |  | 		preset_cache.push_back(p_color); | 
					
						
							| 
									
										
										
										
											2021-08-18 02:09:48 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		_add_preset_button(_get_preset_size(), p_color); | 
					
						
							| 
									
										
										
										
											2015-12-23 23:17:09 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-12-12 21:55:29 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifdef TOOLS_ENABLED
 | 
					
						
							| 
									
										
										
										
											2022-10-11 14:57:20 +02:00
										 |  |  | 	if (editor_settings) { | 
					
						
							| 
									
										
										
										
											2020-02-17 18:06:54 -03:00
										 |  |  | 		PackedColorArray arr_to_save = get_presets(); | 
					
						
							| 
									
										
										
										
											2022-10-11 14:57:20 +02:00
										 |  |  | 		editor_settings->call(SNAME("set_project_metadata"), "color_picker", "presets", arr_to_save); | 
					
						
							| 
									
										
										
										
											2018-12-12 21:55:29 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2015-12-23 23:17:09 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | void ColorPicker::add_recent_preset(const Color &p_color) { | 
					
						
							|  |  |  | 	if (!_select_from_recent_preset_hbc(p_color)) { | 
					
						
							|  |  |  | 		if (recent_preset_hbc->get_child_count() >= PRESET_COLUMN_COUNT) { | 
					
						
							|  |  |  | 			recent_preset_cache.pop_front(); | 
					
						
							|  |  |  | 			recent_presets.pop_front(); | 
					
						
							| 
									
										
										
										
											2022-10-24 22:07:02 +01:00
										 |  |  | 			recent_preset_hbc->get_child(PRESET_COLUMN_COUNT - 1)->queue_free(); | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 		} | 
					
						
							|  |  |  | 		recent_presets.push_back(p_color); | 
					
						
							|  |  |  | 		recent_preset_cache.push_back(p_color); | 
					
						
							|  |  |  | 		_add_recent_preset_button(_get_preset_size(), p_color); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	_select_from_preset_container(p_color); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef TOOLS_ENABLED
 | 
					
						
							| 
									
										
										
										
											2022-10-11 14:57:20 +02:00
										 |  |  | 	if (editor_settings) { | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 		PackedColorArray arr_to_save = get_recent_presets(); | 
					
						
							| 
									
										
										
										
											2022-10-11 14:57:20 +02:00
										 |  |  | 		editor_settings->call(SNAME("set_project_metadata"), "color_picker", "recent_presets", arr_to_save); | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 	} | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-03 16:12:38 +02:00
										 |  |  | void ColorPicker::erase_preset(const Color &p_color) { | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 	List<Color>::Element *e = presets.find(p_color); | 
					
						
							|  |  |  | 	if (e) { | 
					
						
							|  |  |  | 		presets.erase(e); | 
					
						
							| 
									
										
										
										
											2021-07-07 14:17:44 -04:00
										 |  |  | 		preset_cache.erase(preset_cache.find(p_color)); | 
					
						
							| 
									
										
										
										
											2021-08-18 02:09:48 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// Find preset button to remove.
 | 
					
						
							|  |  |  | 		for (int i = 1; i < preset_container->get_child_count(); i++) { | 
					
						
							|  |  |  | 			ColorPresetButton *current_btn = Object::cast_to<ColorPresetButton>(preset_container->get_child(i)); | 
					
						
							|  |  |  | 			if (current_btn && p_color == current_btn->get_preset_color()) { | 
					
						
							| 
									
										
										
										
											2022-10-24 22:07:02 +01:00
										 |  |  | 				current_btn->queue_free(); | 
					
						
							| 
									
										
										
										
											2021-08-18 02:09:48 +02:00
										 |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-12-12 21:55:29 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifdef TOOLS_ENABLED
 | 
					
						
							| 
									
										
										
										
											2022-10-11 14:57:20 +02:00
										 |  |  | 		if (editor_settings) { | 
					
						
							| 
									
										
										
										
											2020-02-17 18:06:54 -03:00
										 |  |  | 			PackedColorArray arr_to_save = get_presets(); | 
					
						
							| 
									
										
										
										
											2022-10-11 14:57:20 +02:00
										 |  |  | 			editor_settings->call(SNAME("set_project_metadata"), "color_picker", "presets", arr_to_save); | 
					
						
							| 
									
										
										
										
											2018-12-12 21:55:29 +01:00
										 |  |  | 		} | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-10-03 16:12:38 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | void ColorPicker::erase_recent_preset(const Color &p_color) { | 
					
						
							|  |  |  | 	List<Color>::Element *e = recent_presets.find(p_color); | 
					
						
							|  |  |  | 	if (e) { | 
					
						
							|  |  |  | 		recent_presets.erase(e); | 
					
						
							|  |  |  | 		recent_preset_cache.erase(recent_preset_cache.find(p_color)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Find recent preset button to remove.
 | 
					
						
							|  |  |  | 		for (int i = 1; i < recent_preset_hbc->get_child_count(); i++) { | 
					
						
							|  |  |  | 			ColorPresetButton *current_btn = Object::cast_to<ColorPresetButton>(recent_preset_hbc->get_child(i)); | 
					
						
							|  |  |  | 			if (current_btn && p_color == current_btn->get_preset_color()) { | 
					
						
							| 
									
										
										
										
											2022-10-24 22:07:02 +01:00
										 |  |  | 				current_btn->queue_free(); | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef TOOLS_ENABLED
 | 
					
						
							| 
									
										
										
										
											2022-10-11 14:57:20 +02:00
										 |  |  | 		if (editor_settings) { | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 			PackedColorArray arr_to_save = get_recent_presets(); | 
					
						
							| 
									
										
										
										
											2022-10-11 14:57:20 +02:00
										 |  |  | 			editor_settings->call(SNAME("set_project_metadata"), "color_picker", "recent_presets", arr_to_save); | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 		} | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-17 18:06:54 -03:00
										 |  |  | PackedColorArray ColorPicker::get_presets() const { | 
					
						
							|  |  |  | 	PackedColorArray arr; | 
					
						
							| 
									
										
										
										
											2018-10-03 16:12:38 +02:00
										 |  |  | 	arr.resize(presets.size()); | 
					
						
							| 
									
										
										
										
											2024-04-15 15:18:34 +02:00
										 |  |  | 	int i = 0; | 
					
						
							|  |  |  | 	for (List<Color>::ConstIterator itr = presets.begin(); itr != presets.end(); ++itr, ++i) { | 
					
						
							|  |  |  | 		arr.set(i, *itr); | 
					
						
							| 
									
										
										
										
											2018-10-03 16:12:38 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return arr; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | PackedColorArray ColorPicker::get_recent_presets() const { | 
					
						
							|  |  |  | 	PackedColorArray arr; | 
					
						
							|  |  |  | 	arr.resize(recent_presets.size()); | 
					
						
							| 
									
										
										
										
											2024-04-15 15:18:34 +02:00
										 |  |  | 	int i = 0; | 
					
						
							|  |  |  | 	for (List<Color>::ConstIterator itr = recent_presets.begin(); itr != recent_presets.end(); ++itr, ++i) { | 
					
						
							|  |  |  | 		arr.set(i, *itr); | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 	} | 
					
						
							|  |  |  | 	return arr; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | void ColorPicker::set_color_mode(ColorModeType p_mode) { | 
					
						
							|  |  |  | 	ERR_FAIL_INDEX(p_mode, MODE_MAX); | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (current_mode == p_mode) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (slider_theme_modified) { | 
					
						
							| 
									
										
										
										
											2023-04-03 18:01:11 +02:00
										 |  |  | 		_reset_sliders_theme(); | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mode_popup->set_item_checked(current_mode, false); | 
					
						
							|  |  |  | 	mode_popup->set_item_checked(p_mode, true); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (p_mode < MODE_BUTTON_COUNT) { | 
					
						
							|  |  |  | 		mode_btns[p_mode]->set_pressed(true); | 
					
						
							|  |  |  | 	} else if (current_mode < MODE_BUTTON_COUNT) { | 
					
						
							|  |  |  | 		mode_btns[current_mode]->set_pressed(false); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	current_mode = p_mode; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-13 20:05:20 +00:00
										 |  |  | #ifdef TOOLS_ENABLED
 | 
					
						
							|  |  |  | 	if (editor_settings) { | 
					
						
							|  |  |  | 		editor_settings->call(SNAME("set_project_metadata"), "color_picker", "color_mode", current_mode); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 	if (!is_inside_tree()) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	_update_controls(); | 
					
						
							|  |  |  | 	_update_color(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | ColorPicker::ColorModeType ColorPicker::get_color_mode() const { | 
					
						
							|  |  |  | 	return current_mode; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | void ColorPicker::set_colorize_sliders(bool p_colorize_sliders) { | 
					
						
							|  |  |  | 	if (colorize_sliders == p_colorize_sliders) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	colorize_sliders = p_colorize_sliders; | 
					
						
							|  |  |  | 	mode_popup->set_item_checked(MODE_MAX + 1, colorize_sliders); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (colorize_sliders) { | 
					
						
							|  |  |  | 		Ref<StyleBoxEmpty> style_box_empty(memnew(StyleBoxEmpty)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (!slider_theme_modified) { | 
					
						
							|  |  |  | 			for (int i = 0; i < SLIDER_COUNT; i++) { | 
					
						
							|  |  |  | 				sliders[i]->add_theme_style_override("slider", style_box_empty); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		alpha_slider->add_theme_style_override("slider", style_box_empty); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		Ref<StyleBoxFlat> style_box_flat(memnew(StyleBoxFlat)); | 
					
						
							| 
									
										
										
										
											2023-04-03 18:01:11 +02:00
										 |  |  | 		style_box_flat->set_content_margin(SIDE_TOP, 16 * theme_cache.base_scale); | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 		style_box_flat->set_bg_color(Color(0.2, 0.23, 0.31).lerp(Color(0, 0, 0, 1), 0.3).clamp()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (!slider_theme_modified) { | 
					
						
							|  |  |  | 			for (int i = 0; i < SLIDER_COUNT; i++) { | 
					
						
							|  |  |  | 				sliders[i]->add_theme_style_override("slider", style_box_flat); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		alpha_slider->add_theme_style_override("slider", style_box_flat); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool ColorPicker::is_colorizing_sliders() const { | 
					
						
							|  |  |  | 	return colorize_sliders; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-29 15:21:06 +03:00
										 |  |  | void ColorPicker::set_deferred_mode(bool p_enabled) { | 
					
						
							|  |  |  | 	deferred_mode_enabled = p_enabled; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool ColorPicker::is_deferred_mode() const { | 
					
						
							|  |  |  | 	return deferred_mode_enabled; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-02 20:08:25 -05:00
										 |  |  | void ColorPicker::_update_text_value() { | 
					
						
							| 
									
										
										
										
											2022-09-29 12:53:28 +03:00
										 |  |  | 	bool text_visible = true; | 
					
						
							| 
									
										
										
										
											2016-07-02 20:08:25 -05:00
										 |  |  | 	if (text_is_constructor) { | 
					
						
							| 
									
										
										
										
											2023-04-10 20:49:30 +02:00
										 |  |  | 		String t = "Color(" + String::num(color.r, 3) + ", " + String::num(color.g, 3) + ", " + String::num(color.b, 3); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (edit_alpha && color.a < 1) { | 
					
						
							| 
									
										
										
										
											2023-04-10 20:49:30 +02:00
										 |  |  | 			t += ", " + String::num(color.a, 3) + ")"; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2016-07-02 20:08:25 -05:00
										 |  |  | 			t += ")"; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-07-02 20:08:25 -05:00
										 |  |  | 		c_text->set_text(t); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-01-26 19:07:32 -02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (color.r > 1 || color.g > 1 || color.b > 1 || color.r < 0 || color.g < 0 || color.b < 0) { | 
					
						
							| 
									
										
										
										
											2022-09-29 12:53:28 +03:00
										 |  |  | 		text_visible = false; | 
					
						
							| 
									
										
										
										
											2019-01-26 19:07:32 -02:00
										 |  |  | 	} else if (!text_is_constructor) { | 
					
						
							|  |  |  | 		c_text->set_text(color.to_html(edit_alpha && color.a < 1)); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-29 12:53:28 +03:00
										 |  |  | 	text_type->set_visible(text_visible); | 
					
						
							|  |  |  | 	c_text->set_visible(text_visible); | 
					
						
							| 
									
										
										
										
											2016-07-02 20:08:25 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-10 16:59:46 +02:00
										 |  |  | void ColorPicker::_sample_input(const Ref<InputEvent> &p_event) { | 
					
						
							|  |  |  | 	const Ref<InputEventMouseButton> mb = p_event; | 
					
						
							| 
									
										
										
										
											2021-08-13 16:31:57 -05:00
										 |  |  | 	if (mb.is_valid() && mb->is_pressed() && mb->get_button_index() == MouseButton::LEFT) { | 
					
						
							| 
									
										
										
										
											2021-05-10 16:59:46 +02:00
										 |  |  | 		const Rect2 rect_old = Rect2(Point2(), Size2(sample->get_size().width * 0.5, sample->get_size().height * 0.95)); | 
					
						
							|  |  |  | 		if (rect_old.has_point(mb->get_position())) { | 
					
						
							|  |  |  | 			// Revert to the old color when left-clicking the old color sample.
 | 
					
						
							| 
									
										
										
										
											2022-08-01 22:54:33 +02:00
										 |  |  | 			set_pick_color(old_color); | 
					
						
							| 
									
										
										
										
											2021-07-17 18:22:52 -03:00
										 |  |  | 			emit_signal(SNAME("color_changed"), color); | 
					
						
							| 
									
										
										
										
											2021-05-10 16:59:46 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-21 02:51:42 -03:00
										 |  |  | void ColorPicker::_sample_draw() { | 
					
						
							| 
									
										
										
										
											2020-01-05 18:01:24 +01:00
										 |  |  | 	// Covers the right half of the sample if the old color is being displayed,
 | 
					
						
							|  |  |  | 	// or the whole sample if it's not being displayed.
 | 
					
						
							|  |  |  | 	Rect2 rect_new; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (display_old_color) { | 
					
						
							|  |  |  | 		rect_new = Rect2(Point2(sample->get_size().width * 0.5, 0), Size2(sample->get_size().width * 0.5, sample->get_size().height * 0.95)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Draw both old and new colors for easier comparison (only if spawned from a ColorPickerButton).
 | 
					
						
							|  |  |  | 		const Rect2 rect_old = Rect2(Point2(), Size2(sample->get_size().width * 0.5, sample->get_size().height * 0.95)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-28 01:39:28 +02:00
										 |  |  | 		if (old_color.a < 1.0) { | 
					
						
							| 
									
										
										
										
											2023-09-12 15:01:42 +02:00
										 |  |  | 			sample->draw_texture_rect(theme_cache.sample_bg, rect_old, true); | 
					
						
							| 
									
										
										
										
											2020-01-05 18:01:24 +01:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		sample->draw_rect(rect_old, old_color); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-06 14:53:52 +01:00
										 |  |  | 		if (!old_color.is_equal_approx(color)) { | 
					
						
							|  |  |  | 			// Draw a revert indicator to indicate that the old sample can be clicked to revert to this old color.
 | 
					
						
							|  |  |  | 			// Adapt icon color to the background color (taking alpha checkerboard into account) so that it's always visible.
 | 
					
						
							|  |  |  | 			sample->draw_texture(theme_cache.sample_revert, | 
					
						
							|  |  |  | 					rect_old.size * 0.5 - theme_cache.sample_revert->get_size() * 0.5, | 
					
						
							|  |  |  | 					Math::lerp(0.75f, old_color.get_luminance(), old_color.a) < 0.455 ? Color(1, 1, 1) : (Color(0.01, 0.01, 0.01))); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-05 18:01:24 +01:00
										 |  |  | 		if (old_color.r > 1 || old_color.g > 1 || old_color.b > 1) { | 
					
						
							|  |  |  | 			// Draw an indicator to denote that the old color is "overbright" and can't be displayed accurately in the preview.
 | 
					
						
							| 
									
										
										
										
											2023-04-03 18:01:11 +02:00
										 |  |  | 			sample->draw_texture(theme_cache.overbright_indicator, Point2()); | 
					
						
							| 
									
										
										
										
											2020-01-05 18:01:24 +01:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		rect_new = Rect2(Point2(), Size2(sample->get_size().width, sample->get_size().height * 0.95)); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-09-27 01:07:41 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-27 14:44:48 -05:00
										 |  |  | 	if (color.a < 1.0) { | 
					
						
							| 
									
										
										
										
											2023-09-12 15:01:42 +02:00
										 |  |  | 		sample->draw_texture_rect(theme_cache.sample_bg, rect_new, true); | 
					
						
							| 
									
										
										
										
											2017-09-27 14:44:48 -05:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-09-27 01:07:41 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-05 18:01:24 +01:00
										 |  |  | 	sample->draw_rect(rect_new, color); | 
					
						
							| 
									
										
										
										
											2019-09-27 01:07:41 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (color.r > 1 || color.g > 1 || color.b > 1) { | 
					
						
							| 
									
										
										
										
											2020-01-05 18:01:24 +01:00
										 |  |  | 		// Draw an indicator to denote that the new color is "overbright" and can't be displayed accurately in the preview.
 | 
					
						
							| 
									
										
										
										
											2023-04-03 18:01:11 +02:00
										 |  |  | 		sample->draw_texture(theme_cache.overbright_indicator, Point2(uv_edit->get_size().width * 0.5, 0)); | 
					
						
							| 
									
										
										
										
											2019-09-27 01:07:41 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-11-21 02:51:42 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-04 05:52:45 +07:00
										 |  |  | void ColorPicker::_hsv_draw(int p_which, Control *c) { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!c) { | 
					
						
							| 
									
										
										
										
											2015-12-25 17:59:23 -03:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | 	PickerShapeType actual_shape = _get_actual_shape(); | 
					
						
							| 
									
										
										
										
											2017-07-04 05:52:45 +07:00
										 |  |  | 	if (p_which == 0) { | 
					
						
							| 
									
										
										
										
											2016-10-19 19:43:49 -03:00
										 |  |  | 		Vector<Point2> points; | 
					
						
							|  |  |  | 		Vector<Color> colors; | 
					
						
							|  |  |  | 		Vector<Color> colors2; | 
					
						
							|  |  |  | 		Color col = color; | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 		Vector2 center = c->get_size() / 2.0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 		switch (actual_shape) { | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 			case SHAPE_HSV_WHEEL: { | 
					
						
							|  |  |  | 				points.resize(4); | 
					
						
							|  |  |  | 				colors.resize(4); | 
					
						
							|  |  |  | 				colors2.resize(4); | 
					
						
							|  |  |  | 				real_t ring_radius_x = Math_SQRT12 * c->get_size().width * 0.42; | 
					
						
							|  |  |  | 				real_t ring_radius_y = Math_SQRT12 * c->get_size().height * 0.42; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				points.set(0, center - Vector2(ring_radius_x, ring_radius_y)); | 
					
						
							|  |  |  | 				points.set(1, center + Vector2(ring_radius_x, -ring_radius_y)); | 
					
						
							|  |  |  | 				points.set(2, center + Vector2(ring_radius_x, ring_radius_y)); | 
					
						
							|  |  |  | 				points.set(3, center + Vector2(-ring_radius_x, ring_radius_y)); | 
					
						
							|  |  |  | 				colors.set(0, Color(1, 1, 1, 1)); | 
					
						
							|  |  |  | 				colors.set(1, Color(1, 1, 1, 1)); | 
					
						
							|  |  |  | 				colors.set(2, Color(0, 0, 0, 1)); | 
					
						
							|  |  |  | 				colors.set(3, Color(0, 0, 0, 1)); | 
					
						
							|  |  |  | 				c->draw_polygon(points, colors); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				col.set_hsv(h, 1, 1); | 
					
						
							|  |  |  | 				col.a = 0; | 
					
						
							|  |  |  | 				colors2.set(0, col); | 
					
						
							|  |  |  | 				col.a = 1; | 
					
						
							|  |  |  | 				colors2.set(1, col); | 
					
						
							|  |  |  | 				col.set_hsv(h, 1, 0); | 
					
						
							|  |  |  | 				colors2.set(2, col); | 
					
						
							|  |  |  | 				col.a = 0; | 
					
						
							|  |  |  | 				colors2.set(3, col); | 
					
						
							|  |  |  | 				c->draw_polygon(points, colors2); | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			case SHAPE_HSV_RECTANGLE: { | 
					
						
							|  |  |  | 				points.resize(4); | 
					
						
							|  |  |  | 				colors.resize(4); | 
					
						
							|  |  |  | 				colors2.resize(4); | 
					
						
							|  |  |  | 				points.set(0, Vector2()); | 
					
						
							|  |  |  | 				points.set(1, Vector2(c->get_size().x, 0)); | 
					
						
							|  |  |  | 				points.set(2, c->get_size()); | 
					
						
							|  |  |  | 				points.set(3, Vector2(0, c->get_size().y)); | 
					
						
							|  |  |  | 				colors.set(0, Color(1, 1, 1, 1)); | 
					
						
							|  |  |  | 				colors.set(1, Color(1, 1, 1, 1)); | 
					
						
							|  |  |  | 				colors.set(2, Color(0, 0, 0, 1)); | 
					
						
							|  |  |  | 				colors.set(3, Color(0, 0, 0, 1)); | 
					
						
							|  |  |  | 				c->draw_polygon(points, colors); | 
					
						
							|  |  |  | 				col = color; | 
					
						
							|  |  |  | 				col.set_hsv(h, 1, 1); | 
					
						
							|  |  |  | 				col.a = 0; | 
					
						
							|  |  |  | 				colors2.set(0, col); | 
					
						
							|  |  |  | 				col.a = 1; | 
					
						
							|  |  |  | 				colors2.set(1, col); | 
					
						
							|  |  |  | 				col.set_hsv(h, 1, 0); | 
					
						
							|  |  |  | 				colors2.set(2, col); | 
					
						
							|  |  |  | 				col.a = 0; | 
					
						
							|  |  |  | 				colors2.set(3, col); | 
					
						
							|  |  |  | 				c->draw_polygon(points, colors2); | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			default: { | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2023-04-03 18:01:11 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 		int x; | 
					
						
							|  |  |  | 		int y; | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 		if (actual_shape == SHAPE_VHS_CIRCLE || actual_shape == SHAPE_OKHSL_CIRCLE) { | 
					
						
							| 
									
										
										
										
											2024-11-20 19:34:31 +08:00
										 |  |  | 			x = center.x + (center.x * Math::cos((actual_shape == SHAPE_OKHSL_CIRCLE ? ok_hsl_h : h) * Math_TAU) * s) - (theme_cache.picker_cursor->get_width() / 2); | 
					
						
							|  |  |  | 			y = center.y + (center.y * Math::sin((actual_shape == SHAPE_OKHSL_CIRCLE ? ok_hsl_h : h) * Math_TAU) * s) - (theme_cache.picker_cursor->get_height() / 2); | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 		} else { | 
					
						
							|  |  |  | 			real_t corner_x = (c == wheel_uv) ? center.x - Math_SQRT12 * c->get_size().width * 0.42 : 0; | 
					
						
							|  |  |  | 			real_t corner_y = (c == wheel_uv) ? center.y - Math_SQRT12 * c->get_size().height * 0.42 : 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			Size2 real_size(c->get_size().x - corner_x * 2, c->get_size().y - corner_y * 2); | 
					
						
							| 
									
										
										
										
											2023-04-03 18:01:11 +02:00
										 |  |  | 			x = CLAMP(real_size.x * s, 0, real_size.x) + corner_x - (theme_cache.picker_cursor->get_width() / 2); | 
					
						
							|  |  |  | 			y = CLAMP(real_size.y - real_size.y * v, 0, real_size.y) + corner_y - (theme_cache.picker_cursor->get_height() / 2); | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2023-04-03 18:01:11 +02:00
										 |  |  | 		c->draw_texture(theme_cache.picker_cursor, Point2(x, y)); | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-18 21:00:36 +07:00
										 |  |  | 		col.set_hsv(h, 1, 1); | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 		if (actual_shape == SHAPE_HSV_WHEEL) { | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 			points.resize(4); | 
					
						
							|  |  |  | 			double h1 = h - (0.5 / 360); | 
					
						
							|  |  |  | 			double h2 = h + (0.5 / 360); | 
					
						
							|  |  |  | 			points.set(0, Point2(center.x + (center.x * Math::cos(h1 * Math_TAU)), center.y + (center.y * Math::sin(h1 * Math_TAU)))); | 
					
						
							|  |  |  | 			points.set(1, Point2(center.x + (center.x * Math::cos(h1 * Math_TAU) * 0.84), center.y + (center.y * Math::sin(h1 * Math_TAU) * 0.84))); | 
					
						
							|  |  |  | 			points.set(2, Point2(center.x + (center.x * Math::cos(h2 * Math_TAU)), center.y + (center.y * Math::sin(h2 * Math_TAU)))); | 
					
						
							|  |  |  | 			points.set(3, Point2(center.x + (center.x * Math::cos(h2 * Math_TAU) * 0.84), center.y + (center.y * Math::sin(h2 * Math_TAU) * 0.84))); | 
					
						
							|  |  |  | 			c->draw_multiline(points, col.inverted()); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-04 05:52:45 +07:00
										 |  |  | 	} else if (p_which == 1) { | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 		if (actual_shape == SHAPE_HSV_RECTANGLE) { | 
					
						
							| 
									
										
										
										
											2022-11-19 09:26:39 +13:00
										 |  |  | 			c->draw_set_transform(Point2(), -Math_PI / 2, Size2(c->get_size().x, -c->get_size().y)); | 
					
						
							| 
									
										
										
										
											2023-09-12 15:01:42 +02:00
										 |  |  | 			c->draw_texture_rect(theme_cache.color_hue, Rect2(Point2(), Size2(1, 1))); | 
					
						
							| 
									
										
										
										
											2022-11-19 09:26:39 +13:00
										 |  |  | 			c->draw_set_transform(Point2(), 0, Size2(1, 1)); | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 			int y = c->get_size().y - c->get_size().y * (1.0 - h); | 
					
						
							|  |  |  | 			Color col; | 
					
						
							|  |  |  | 			col.set_hsv(h, 1, 1); | 
					
						
							|  |  |  | 			c->draw_line(Point2(0, y), Point2(c->get_size().x, y), col.inverted()); | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 		} else if (actual_shape == SHAPE_OKHSL_CIRCLE) { | 
					
						
							| 
									
										
										
										
											2022-04-18 11:29:29 -07:00
										 |  |  | 			Vector<Point2> points; | 
					
						
							|  |  |  | 			Vector<Color> colors; | 
					
						
							|  |  |  | 			Color col; | 
					
						
							| 
									
										
										
										
											2024-11-20 19:34:31 +08:00
										 |  |  | 			col.set_ok_hsl(ok_hsl_h, ok_hsl_s, 1); | 
					
						
							| 
									
										
										
										
											2022-10-17 13:59:25 +02:00
										 |  |  | 			Color col2; | 
					
						
							| 
									
										
										
										
											2024-11-20 19:34:31 +08:00
										 |  |  | 			col2.set_ok_hsl(ok_hsl_h, ok_hsl_s, 0.5); | 
					
						
							| 
									
										
										
										
											2022-10-17 13:59:25 +02:00
										 |  |  | 			Color col3; | 
					
						
							| 
									
										
										
										
											2024-11-20 19:34:31 +08:00
										 |  |  | 			col3.set_ok_hsl(ok_hsl_h, ok_hsl_s, 0); | 
					
						
							| 
									
										
										
										
											2022-10-17 13:59:25 +02:00
										 |  |  | 			points.resize(6); | 
					
						
							|  |  |  | 			colors.resize(6); | 
					
						
							|  |  |  | 			points.set(0, Vector2(c->get_size().x, 0)); | 
					
						
							|  |  |  | 			points.set(1, Vector2(c->get_size().x, c->get_size().y * 0.5)); | 
					
						
							| 
									
										
										
										
											2022-04-18 11:29:29 -07:00
										 |  |  | 			points.set(2, c->get_size()); | 
					
						
							|  |  |  | 			points.set(3, Vector2(0, c->get_size().y)); | 
					
						
							| 
									
										
										
										
											2022-10-17 13:59:25 +02:00
										 |  |  | 			points.set(4, Vector2(0, c->get_size().y * 0.5)); | 
					
						
							|  |  |  | 			points.set(5, Vector2()); | 
					
						
							| 
									
										
										
										
											2022-04-18 11:29:29 -07:00
										 |  |  | 			colors.set(0, col); | 
					
						
							| 
									
										
										
										
											2022-10-17 13:59:25 +02:00
										 |  |  | 			colors.set(1, col2); | 
					
						
							|  |  |  | 			colors.set(2, col3); | 
					
						
							|  |  |  | 			colors.set(3, col3); | 
					
						
							|  |  |  | 			colors.set(4, col2); | 
					
						
							|  |  |  | 			colors.set(5, col); | 
					
						
							| 
									
										
										
										
											2022-04-18 11:29:29 -07:00
										 |  |  | 			c->draw_polygon(points, colors); | 
					
						
							| 
									
										
										
										
											2024-11-20 19:34:31 +08:00
										 |  |  | 			int y = c->get_size().y - c->get_size().y * CLAMP(ok_hsl_l, 0, 1); | 
					
						
							|  |  |  | 			col.set_ok_hsl(ok_hsl_h, 1, ok_hsl_l); | 
					
						
							| 
									
										
										
										
											2022-04-18 11:29:29 -07:00
										 |  |  | 			c->draw_line(Point2(0, y), Point2(c->get_size().x, y), col.inverted()); | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 		} else if (actual_shape == SHAPE_VHS_CIRCLE) { | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 			Vector<Point2> points; | 
					
						
							|  |  |  | 			Vector<Color> colors; | 
					
						
							|  |  |  | 			Color col; | 
					
						
							|  |  |  | 			col.set_hsv(h, s, 1); | 
					
						
							|  |  |  | 			points.resize(4); | 
					
						
							|  |  |  | 			colors.resize(4); | 
					
						
							|  |  |  | 			points.set(0, Vector2()); | 
					
						
							|  |  |  | 			points.set(1, Vector2(c->get_size().x, 0)); | 
					
						
							|  |  |  | 			points.set(2, c->get_size()); | 
					
						
							|  |  |  | 			points.set(3, Vector2(0, c->get_size().y)); | 
					
						
							|  |  |  | 			colors.set(0, col); | 
					
						
							|  |  |  | 			colors.set(1, col); | 
					
						
							|  |  |  | 			colors.set(2, Color(0, 0, 0)); | 
					
						
							|  |  |  | 			colors.set(3, Color(0, 0, 0)); | 
					
						
							|  |  |  | 			c->draw_polygon(points, colors); | 
					
						
							|  |  |  | 			int y = c->get_size().y - c->get_size().y * CLAMP(v, 0, 1); | 
					
						
							|  |  |  | 			col.set_hsv(h, 1, v); | 
					
						
							|  |  |  | 			c->draw_line(Point2(0, y), Point2(c->get_size().x, y), col.inverted()); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} else if (p_which == 2) { | 
					
						
							|  |  |  | 		c->draw_rect(Rect2(Point2(), c->get_size()), Color(1, 1, 1)); | 
					
						
							| 
									
										
										
										
											2024-11-20 19:34:31 +08:00
										 |  |  | 		if (actual_shape == SHAPE_VHS_CIRCLE) { | 
					
						
							| 
									
										
										
										
											2022-08-27 12:22:43 +03:00
										 |  |  | 			circle_mat->set_shader_parameter("v", v); | 
					
						
							| 
									
										
										
										
											2024-11-20 19:34:31 +08:00
										 |  |  | 		} else if (actual_shape == SHAPE_OKHSL_CIRCLE) { | 
					
						
							|  |  |  | 			circle_mat->set_shader_parameter("ok_hsl_l", ok_hsl_l); | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-12-25 17:59:23 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-17 12:30:56 +07:00
										 |  |  | void ColorPicker::_slider_draw(int p_which) { | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 	if (colorize_sliders) { | 
					
						
							|  |  |  | 		modes[current_mode]->slider_draw(p_which); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-02-17 12:30:56 +07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | void ColorPicker::_uv_input(const Ref<InputEvent> &p_event, Control *c) { | 
					
						
							| 
									
										
										
										
											2017-08-11 15:10:05 -04:00
										 |  |  | 	Ref<InputEventMouseButton> bev = p_event; | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 	PickerShapeType actual_shape = _get_actual_shape(); | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (bev.is_valid()) { | 
					
						
							| 
									
										
										
										
											2021-08-13 16:31:57 -05:00
										 |  |  | 		if (bev->is_pressed() && bev->get_button_index() == MouseButton::LEFT) { | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 			Vector2 center = c->get_size() / 2.0; | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 			if (actual_shape == SHAPE_VHS_CIRCLE || actual_shape == SHAPE_OKHSL_CIRCLE) { | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 				real_t dist = center.distance_to(bev->get_position()); | 
					
						
							|  |  |  | 				if (dist <= center.x) { | 
					
						
							| 
									
										
										
										
											2021-11-17 20:21:53 +03:00
										 |  |  | 					real_t rad = center.angle_to_point(bev->get_position()); | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 					h = ((rad >= 0) ? rad : (Math_TAU + rad)) / Math_TAU; | 
					
						
							|  |  |  | 					s = CLAMP(dist / center.x, 0, 1); | 
					
						
							| 
									
										
										
										
											2024-11-20 19:34:31 +08:00
										 |  |  | 					ok_hsl_h = h; | 
					
						
							|  |  |  | 					ok_hsl_s = s; | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 				} else { | 
					
						
							|  |  |  | 					return; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				real_t corner_x = (c == wheel_uv) ? center.x - Math_SQRT12 * c->get_size().width * 0.42 : 0; | 
					
						
							|  |  |  | 				real_t corner_y = (c == wheel_uv) ? center.y - Math_SQRT12 * c->get_size().height * 0.42 : 0; | 
					
						
							|  |  |  | 				Size2 real_size(c->get_size().x - corner_x * 2, c->get_size().y - corner_y * 2); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				if (bev->get_position().x < corner_x || bev->get_position().x > c->get_size().x - corner_x || | 
					
						
							|  |  |  | 						bev->get_position().y < corner_y || bev->get_position().y > c->get_size().y - corner_y) { | 
					
						
							|  |  |  | 					{ | 
					
						
							|  |  |  | 						real_t dist = center.distance_to(bev->get_position()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 						if (dist >= center.x * 0.84 && dist <= center.x) { | 
					
						
							| 
									
										
										
										
											2021-11-17 20:21:53 +03:00
										 |  |  | 							real_t rad = center.angle_to_point(bev->get_position()); | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 							h = ((rad >= 0) ? rad : (Math_TAU + rad)) / Math_TAU; | 
					
						
							|  |  |  | 							spinning = true; | 
					
						
							|  |  |  | 						} else { | 
					
						
							|  |  |  | 							return; | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				if (!spinning) { | 
					
						
							| 
									
										
										
										
											2023-02-13 01:18:44 +01:00
										 |  |  | 					real_t x = CLAMP(bev->get_position().x - corner_x, 0, real_size.x); | 
					
						
							|  |  |  | 					real_t y = CLAMP(bev->get_position().y - corner_y, 0, real_size.y); | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-13 01:18:44 +01:00
										 |  |  | 					s = x / real_size.x; | 
					
						
							|  |  |  | 					v = 1.0 - y / real_size.y; | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2022-08-01 22:54:33 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-21 02:51:42 -03:00
										 |  |  | 			changing_color = true; | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-01 22:54:33 +02:00
										 |  |  | 			_copy_hsv_to_color(); | 
					
						
							| 
									
										
										
										
											2022-04-18 11:29:29 -07:00
										 |  |  | 			last_color = color; | 
					
						
							| 
									
										
										
										
											2017-01-14 11:07:57 -03:00
										 |  |  | 			set_pick_color(color); | 
					
						
							| 
									
										
										
										
											2022-08-01 22:54:33 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			if (!deferred_mode_enabled) { | 
					
						
							| 
									
										
										
										
											2021-07-17 18:22:52 -03:00
										 |  |  | 				emit_signal(SNAME("color_changed"), color); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 		} else if (!bev->is_pressed() && bev->get_button_index() == MouseButton::LEFT) { | 
					
						
							|  |  |  | 			if (deferred_mode_enabled) { | 
					
						
							|  |  |  | 				emit_signal(SNAME("color_changed"), color); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			add_recent_preset(color); | 
					
						
							| 
									
										
										
										
											2018-05-29 15:21:06 +03:00
										 |  |  | 			changing_color = false; | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 			spinning = false; | 
					
						
							| 
									
										
										
										
											2015-11-21 02:51:42 -03:00
										 |  |  | 		} else { | 
					
						
							|  |  |  | 			changing_color = false; | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 			spinning = false; | 
					
						
							| 
									
										
										
										
											2015-11-21 02:51:42 -03:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-11 15:10:05 -04:00
										 |  |  | 	Ref<InputEventMouseMotion> mev = p_event; | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (mev.is_valid()) { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (!changing_color) { | 
					
						
							| 
									
										
										
										
											2015-11-21 02:51:42 -03:00
										 |  |  | 			return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		Vector2 center = c->get_size() / 2.0; | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 		if (actual_shape == SHAPE_VHS_CIRCLE || actual_shape == SHAPE_OKHSL_CIRCLE) { | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 			real_t dist = center.distance_to(mev->get_position()); | 
					
						
							| 
									
										
										
										
											2021-11-17 20:21:53 +03:00
										 |  |  | 			real_t rad = center.angle_to_point(mev->get_position()); | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 			h = ((rad >= 0) ? rad : (Math_TAU + rad)) / Math_TAU; | 
					
						
							|  |  |  | 			s = CLAMP(dist / center.x, 0, 1); | 
					
						
							| 
									
										
										
										
											2024-11-20 19:34:31 +08:00
										 |  |  | 			ok_hsl_h = h; | 
					
						
							|  |  |  | 			ok_hsl_s = s; | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 		} else { | 
					
						
							|  |  |  | 			if (spinning) { | 
					
						
							| 
									
										
										
										
											2021-11-17 20:21:53 +03:00
										 |  |  | 				real_t rad = center.angle_to_point(mev->get_position()); | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 				h = ((rad >= 0) ? rad : (Math_TAU + rad)) / Math_TAU; | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				real_t corner_x = (c == wheel_uv) ? center.x - Math_SQRT12 * c->get_size().width * 0.42 : 0; | 
					
						
							|  |  |  | 				real_t corner_y = (c == wheel_uv) ? center.y - Math_SQRT12 * c->get_size().height * 0.42 : 0; | 
					
						
							|  |  |  | 				Size2 real_size(c->get_size().x - corner_x * 2, c->get_size().y - corner_y * 2); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-13 01:18:44 +01:00
										 |  |  | 				real_t x = CLAMP(mev->get_position().x - corner_x, 0, real_size.x); | 
					
						
							|  |  |  | 				real_t y = CLAMP(mev->get_position().y - corner_y, 0, real_size.y); | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-13 01:18:44 +01:00
										 |  |  | 				s = x / real_size.x; | 
					
						
							|  |  |  | 				v = 1.0 - y / real_size.y; | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2022-08-01 22:54:33 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		_copy_hsv_to_color(); | 
					
						
							| 
									
										
										
										
											2022-04-18 11:29:29 -07:00
										 |  |  | 		last_color = color; | 
					
						
							| 
									
										
										
										
											2017-01-14 11:07:57 -03:00
										 |  |  | 		set_pick_color(color); | 
					
						
							| 
									
										
										
										
											2022-08-01 22:54:33 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (!deferred_mode_enabled) { | 
					
						
							| 
									
										
										
										
											2021-07-17 18:22:52 -03:00
										 |  |  | 			emit_signal(SNAME("color_changed"), color); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-11-21 02:51:42 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-11 15:10:05 -04:00
										 |  |  | void ColorPicker::_w_input(const Ref<InputEvent> &p_event) { | 
					
						
							|  |  |  | 	Ref<InputEventMouseButton> bev = p_event; | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 	PickerShapeType actual_shape = _get_actual_shape(); | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (bev.is_valid()) { | 
					
						
							| 
									
										
										
										
											2021-08-13 16:31:57 -05:00
										 |  |  | 		if (bev->is_pressed() && bev->get_button_index() == MouseButton::LEFT) { | 
					
						
							| 
									
										
										
										
											2015-11-21 02:51:42 -03:00
										 |  |  | 			changing_color = true; | 
					
						
							| 
									
										
										
										
											2017-06-18 21:00:36 +07:00
										 |  |  | 			float y = CLAMP((float)bev->get_position().y, 0, w_edit->get_size().height); | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 			if (actual_shape == SHAPE_VHS_CIRCLE || actual_shape == SHAPE_OKHSL_CIRCLE) { | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 				v = 1.0 - (y / w_edit->get_size().height); | 
					
						
							| 
									
										
										
										
											2024-11-20 19:34:31 +08:00
										 |  |  | 				ok_hsl_l = v; | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 			} else { | 
					
						
							|  |  |  | 				h = y / w_edit->get_size().height; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-11-21 02:51:42 -03:00
										 |  |  | 		} else { | 
					
						
							|  |  |  | 			changing_color = false; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2022-08-01 22:54:33 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		_copy_hsv_to_color(); | 
					
						
							| 
									
										
										
										
											2022-04-18 11:29:29 -07:00
										 |  |  | 		last_color = color; | 
					
						
							| 
									
										
										
										
											2017-01-14 11:07:57 -03:00
										 |  |  | 		set_pick_color(color); | 
					
						
							| 
									
										
										
										
											2022-08-01 22:54:33 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 		if (!bev->is_pressed() && bev->get_button_index() == MouseButton::LEFT) { | 
					
						
							|  |  |  | 			add_recent_preset(color); | 
					
						
							| 
									
										
										
										
											2021-07-17 18:22:52 -03:00
										 |  |  | 			emit_signal(SNAME("color_changed"), color); | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 		} else if (!deferred_mode_enabled) { | 
					
						
							| 
									
										
										
										
											2021-07-17 18:22:52 -03:00
										 |  |  | 			emit_signal(SNAME("color_changed"), color); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-11 15:10:05 -04:00
										 |  |  | 	Ref<InputEventMouseMotion> mev = p_event; | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (mev.is_valid()) { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (!changing_color) { | 
					
						
							| 
									
										
										
										
											2015-11-21 02:51:42 -03:00
										 |  |  | 			return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-06-18 21:00:36 +07:00
										 |  |  | 		float y = CLAMP((float)mev->get_position().y, 0, w_edit->get_size().height); | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 		if (actual_shape == SHAPE_VHS_CIRCLE || actual_shape == SHAPE_OKHSL_CIRCLE) { | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 			v = 1.0 - (y / w_edit->get_size().height); | 
					
						
							| 
									
										
										
										
											2024-11-20 19:34:31 +08:00
										 |  |  | 			ok_hsl_l = v; | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 		} else { | 
					
						
							|  |  |  | 			h = y / w_edit->get_size().height; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-01 22:54:33 +02:00
										 |  |  | 		_copy_hsv_to_color(); | 
					
						
							| 
									
										
										
										
											2022-04-18 11:29:29 -07:00
										 |  |  | 		last_color = color; | 
					
						
							| 
									
										
										
										
											2017-01-14 11:07:57 -03:00
										 |  |  | 		set_pick_color(color); | 
					
						
							| 
									
										
										
										
											2022-08-01 22:54:33 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (!deferred_mode_enabled) { | 
					
						
							| 
									
										
										
										
											2021-07-17 18:22:52 -03:00
										 |  |  | 			emit_signal(SNAME("color_changed"), color); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-11-21 02:51:42 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-12-23 23:17:09 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | void ColorPicker::_slider_or_spin_input(const Ref<InputEvent> &p_event) { | 
					
						
							|  |  |  | 	if (line_edit_mouse_release) { | 
					
						
							|  |  |  | 		line_edit_mouse_release = false; | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	Ref<InputEventMouseButton> bev = p_event; | 
					
						
							|  |  |  | 	if (bev.is_valid() && !bev->is_pressed() && bev->get_button_index() == MouseButton::LEFT) { | 
					
						
							|  |  |  | 		add_recent_preset(color); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ColorPicker::_line_edit_input(const Ref<InputEvent> &p_event) { | 
					
						
							|  |  |  | 	Ref<InputEventMouseButton> bev = p_event; | 
					
						
							|  |  |  | 	if (bev.is_valid() && !bev->is_pressed() && bev->get_button_index() == MouseButton::LEFT) { | 
					
						
							|  |  |  | 		line_edit_mouse_release = true; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-18 02:09:48 +02:00
										 |  |  | void ColorPicker::_preset_input(const Ref<InputEvent> &p_event, const Color &p_color) { | 
					
						
							| 
									
										
										
										
											2017-08-11 15:10:05 -04:00
										 |  |  | 	Ref<InputEventMouseButton> bev = p_event; | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (bev.is_valid()) { | 
					
						
							| 
									
										
										
										
											2021-08-13 16:31:57 -05:00
										 |  |  | 		if (bev->is_pressed() && bev->get_button_index() == MouseButton::LEFT) { | 
					
						
							| 
									
										
										
										
											2021-08-18 02:09:48 +02:00
										 |  |  | 			set_pick_color(p_color); | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 			add_recent_preset(color); | 
					
						
							| 
									
										
										
										
											2021-08-18 02:09:48 +02:00
										 |  |  | 			emit_signal(SNAME("color_changed"), p_color); | 
					
						
							| 
									
										
										
										
											2022-10-21 23:20:28 -04:00
										 |  |  | 		} else if (bev->is_pressed() && bev->get_button_index() == MouseButton::RIGHT && can_add_swatches) { | 
					
						
							| 
									
										
										
										
											2021-08-18 02:09:48 +02:00
										 |  |  | 			erase_preset(p_color); | 
					
						
							|  |  |  | 			emit_signal(SNAME("preset_removed"), p_color); | 
					
						
							| 
									
										
										
										
											2015-12-23 23:17:09 -03:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-12-23 23:17:09 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | void ColorPicker::_recent_preset_pressed(const bool p_pressed, ColorPresetButton *p_preset) { | 
					
						
							|  |  |  | 	if (!p_pressed) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	set_pick_color(p_preset->get_preset_color()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	recent_presets.move_to_back(recent_presets.find(p_preset->get_preset_color())); | 
					
						
							|  |  |  | 	List<Color>::Element *e = recent_preset_cache.find(p_preset->get_preset_color()); | 
					
						
							|  |  |  | 	if (e) { | 
					
						
							|  |  |  | 		recent_preset_cache.move_to_back(e); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	recent_preset_hbc->move_child(p_preset, 0); | 
					
						
							|  |  |  | 	emit_signal(SNAME("color_changed"), p_preset->get_preset_color()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ColorPicker::_text_changed(const String &) { | 
					
						
							|  |  |  | 	text_changed = true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-23 23:17:09 -03:00
										 |  |  | void ColorPicker::_add_preset_pressed() { | 
					
						
							|  |  |  | 	add_preset(color); | 
					
						
							| 
									
										
										
										
											2021-07-17 18:22:52 -03:00
										 |  |  | 	emit_signal(SNAME("preset_added"), color); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-05 17:35:39 +01:00
										 |  |  | void ColorPicker::_pick_button_pressed() { | 
					
						
							| 
									
										
										
										
											2023-03-15 23:30:42 +01:00
										 |  |  | 	is_picking_color = true; | 
					
						
							|  |  |  | 	set_process_internal(true); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!picker_window) { | 
					
						
							|  |  |  | 		picker_window = memnew(Popup); | 
					
						
							|  |  |  | 		picker_window->set_size(Vector2i(1, 1)); | 
					
						
							| 
									
										
										
										
											2024-05-13 16:56:03 +02:00
										 |  |  | 		picker_window->connect(SceneStringName(visibility_changed), callable_mp(this, &ColorPicker::_pick_finished)); | 
					
						
							| 
									
										
										
										
											2023-06-20 12:47:52 +02:00
										 |  |  | 		add_child(picker_window, false, INTERNAL_MODE_FRONT); | 
					
						
							| 
									
										
										
										
											2023-03-15 23:30:42 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	picker_window->popup(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ColorPicker::_pick_finished() { | 
					
						
							|  |  |  | 	if (picker_window->is_visible()) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-02-22 18:01:28 -06:00
										 |  |  | 	if (Input::get_singleton()->is_action_just_pressed(SNAME("ui_cancel"))) { | 
					
						
							| 
									
										
										
										
											2023-03-15 23:30:42 +01:00
										 |  |  | 		set_pick_color(old_color); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		emit_signal(SNAME("color_changed"), color); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	is_picking_color = false; | 
					
						
							|  |  |  | 	set_process_internal(false); | 
					
						
							|  |  |  | 	picker_window->hide(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ColorPicker::_pick_button_pressed_legacy() { | 
					
						
							| 
									
										
										
										
											2021-02-18 19:53:32 +07:00
										 |  |  | 	if (!is_inside_tree()) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-05 17:35:39 +01:00
										 |  |  | 	if (!picker_window) { | 
					
						
							|  |  |  | 		picker_window = memnew(Popup); | 
					
						
							|  |  |  | 		picker_window->hide(); | 
					
						
							|  |  |  | 		picker_window->set_transient(true); | 
					
						
							| 
									
										
										
										
											2023-06-20 12:47:52 +02:00
										 |  |  | 		add_child(picker_window, false, INTERNAL_MODE_FRONT); | 
					
						
							| 
									
										
										
										
											2023-02-05 17:35:39 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		picker_texture_rect = memnew(TextureRect); | 
					
						
							|  |  |  | 		picker_texture_rect->set_anchors_preset(Control::PRESET_FULL_RECT); | 
					
						
							| 
									
										
										
										
											2024-09-20 01:50:31 +02:00
										 |  |  | 		picker_texture_rect->set_expand_mode(TextureRect::EXPAND_IGNORE_SIZE); | 
					
						
							| 
									
										
										
										
											2023-02-05 17:35:39 +01:00
										 |  |  | 		picker_window->add_child(picker_texture_rect); | 
					
						
							|  |  |  | 		picker_texture_rect->set_default_cursor_shape(CURSOR_POINTING_HAND); | 
					
						
							| 
									
										
										
										
											2024-05-13 16:56:03 +02:00
										 |  |  | 		picker_texture_rect->connect(SceneStringName(gui_input), callable_mp(this, &ColorPicker::_picker_texture_input)); | 
					
						
							| 
									
										
										
										
											2023-02-05 17:35:39 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		picker_preview_label = memnew(Label); | 
					
						
							| 
									
										
										
										
											2024-10-20 22:59:39 +02:00
										 |  |  | 		picker_preview_label->set_anchors_preset(Control::PRESET_CENTER_TOP); | 
					
						
							| 
									
										
										
										
											2024-09-24 15:49:30 +08:00
										 |  |  | 		picker_preview_label->set_text(ETR("Color Picking active")); | 
					
						
							| 
									
										
										
										
											2023-02-05 17:35:39 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-10-20 22:59:39 +02:00
										 |  |  | 		picker_preview_style_box.instantiate(); | 
					
						
							| 
									
										
										
										
											2023-02-05 17:35:39 +01:00
										 |  |  | 		picker_preview_style_box->set_bg_color(Color(1.0, 1.0, 1.0)); | 
					
						
							| 
									
										
										
										
											2024-10-20 22:59:39 +02:00
										 |  |  | 		picker_preview_style_box->set_content_margin_all(4.0); | 
					
						
							|  |  |  | 		picker_preview_label->add_theme_style_override(CoreStringName(normal), picker_preview_style_box); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		picker_window->add_child(picker_preview_label); | 
					
						
							| 
									
										
										
										
											2023-02-05 17:35:39 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Rect2i screen_rect; | 
					
						
							|  |  |  | 	if (picker_window->is_embedded()) { | 
					
						
							|  |  |  | 		screen_rect = picker_window->get_embedder()->get_visible_rect(); | 
					
						
							|  |  |  | 		picker_window->set_position(Point2i()); | 
					
						
							|  |  |  | 		picker_texture_rect->set_texture(ImageTexture::create_from_image(picker_window->get_embedder()->get_texture()->get_image())); | 
					
						
							| 
									
										
										
										
											2022-06-13 18:54:48 +08:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2023-02-05 17:35:39 +01:00
										 |  |  | 		screen_rect = picker_window->get_parent_rect(); | 
					
						
							|  |  |  | 		picker_window->set_position(screen_rect.position); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		Ref<Image> target_image = Image::create_empty(screen_rect.size.x, screen_rect.size.y, false, Image::FORMAT_RGB8); | 
					
						
							|  |  |  | 		DisplayServer *ds = DisplayServer::get_singleton(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Add the Texture of each Window to the Image.
 | 
					
						
							|  |  |  | 		Vector<DisplayServer::WindowID> wl = ds->get_window_list(); | 
					
						
							|  |  |  | 		// FIXME: sort windows by visibility.
 | 
					
						
							| 
									
										
										
										
											2024-11-29 21:15:23 +01:00
										 |  |  | 		for (const DisplayServer::WindowID &window_id : wl) { | 
					
						
							|  |  |  | 			Window *w = Window::get_from_id(window_id); | 
					
						
							|  |  |  | 			if (!w) { | 
					
						
							| 
									
										
										
										
											2023-02-05 17:35:39 +01:00
										 |  |  | 				continue; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			Ref<Image> img = w->get_texture()->get_image(); | 
					
						
							|  |  |  | 			if (!img.is_valid() || img->is_empty()) { | 
					
						
							|  |  |  | 				continue; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			img->convert(Image::FORMAT_RGB8); | 
					
						
							|  |  |  | 			target_image->blit_rect(img, Rect2i(Point2i(0, 0), img->get_size()), w->get_position()); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		picker_texture_rect->set_texture(ImageTexture::create_from_image(target_image)); | 
					
						
							| 
									
										
										
										
											2015-12-25 11:08:02 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2023-02-05 17:35:39 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	picker_window->set_size(screen_rect.size); | 
					
						
							| 
									
										
										
										
											2024-10-20 22:59:39 +02:00
										 |  |  | 	picker_preview_label->set_custom_minimum_size(screen_rect.size / 10); // 10% of size in each axis.
 | 
					
						
							| 
									
										
										
										
											2023-02-05 17:35:39 +01:00
										 |  |  | 	picker_window->popup(); | 
					
						
							| 
									
										
										
										
											2015-12-25 11:08:02 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-15 23:30:42 +01:00
										 |  |  | void ColorPicker::_picker_texture_input(const Ref<InputEvent> &p_event) { | 
					
						
							|  |  |  | 	if (!is_inside_tree()) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Ref<InputEventMouseButton> bev = p_event; | 
					
						
							|  |  |  | 	if (bev.is_valid() && bev->get_button_index() == MouseButton::LEFT && !bev->is_pressed()) { | 
					
						
							|  |  |  | 		set_pick_color(picker_color); | 
					
						
							|  |  |  | 		emit_signal(SNAME("color_changed"), color); | 
					
						
							|  |  |  | 		picker_window->hide(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Ref<InputEventMouseMotion> mev = p_event; | 
					
						
							|  |  |  | 	if (mev.is_valid()) { | 
					
						
							|  |  |  | 		Ref<Image> img = picker_texture_rect->get_texture()->get_image(); | 
					
						
							|  |  |  | 		if (img.is_valid() && !img->is_empty()) { | 
					
						
							|  |  |  | 			Vector2 ofs = mev->get_position(); | 
					
						
							|  |  |  | 			picker_color = img->get_pixel(ofs.x, ofs.y); | 
					
						
							|  |  |  | 			picker_preview_style_box->set_bg_color(picker_color); | 
					
						
							| 
									
										
										
										
											2024-10-20 22:59:39 +02:00
										 |  |  | 			picker_preview_label->add_theme_color_override(SceneStringName(font_color), picker_color.get_luminance() < 0.5 ? Color(1.0f, 1.0f, 1.0f) : Color(0.0f, 0.0f, 0.0f)); | 
					
						
							| 
									
										
										
										
											2023-03-15 23:30:42 +01:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-09 21:02:58 +01:00
										 |  |  | void ColorPicker::_html_focus_exit() { | 
					
						
							| 
									
										
										
										
											2021-07-16 18:36:05 -03:00
										 |  |  | 	if (c_text->is_menu_visible()) { | 
					
						
							| 
									
										
										
										
											2020-03-24 17:11:09 +05:30
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2024-02-22 18:01:28 -06:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (is_visible_in_tree()) { | 
					
						
							|  |  |  | 		_html_submitted(c_text->get_text()); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		_update_text_value(); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-03-09 21:02:58 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-21 23:20:28 -04:00
										 |  |  | void ColorPicker::set_can_add_swatches(bool p_enabled) { | 
					
						
							|  |  |  | 	if (can_add_swatches == p_enabled) { | 
					
						
							| 
									
										
										
										
											2022-03-16 15:50:48 +08:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-10-21 23:20:28 -04:00
										 |  |  | 	can_add_swatches = p_enabled; | 
					
						
							| 
									
										
										
										
											2019-02-24 14:42:46 -06:00
										 |  |  | 	if (!p_enabled) { | 
					
						
							| 
									
										
										
										
											2021-08-18 02:09:48 +02:00
										 |  |  | 		btn_add_preset->set_disabled(true); | 
					
						
							|  |  |  | 		btn_add_preset->set_focus_mode(FOCUS_NONE); | 
					
						
							| 
									
										
										
										
											2019-02-24 14:42:46 -06:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2021-08-18 02:09:48 +02:00
										 |  |  | 		btn_add_preset->set_disabled(false); | 
					
						
							|  |  |  | 		btn_add_preset->set_focus_mode(FOCUS_ALL); | 
					
						
							| 
									
										
										
										
											2019-02-24 14:42:46 -06:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-21 23:20:28 -04:00
										 |  |  | bool ColorPicker::are_swatches_enabled() const { | 
					
						
							|  |  |  | 	return can_add_swatches; | 
					
						
							| 
									
										
										
										
											2019-02-24 14:42:46 -06:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ColorPicker::set_presets_visible(bool p_visible) { | 
					
						
							| 
									
										
										
										
											2022-03-16 15:50:48 +08:00
										 |  |  | 	if (presets_visible == p_visible) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-02-24 14:42:46 -06:00
										 |  |  | 	presets_visible = p_visible; | 
					
						
							| 
									
										
										
										
											2022-10-21 23:20:28 -04:00
										 |  |  | 	btn_preset->set_visible(p_visible); | 
					
						
							|  |  |  | 	btn_recent_preset->set_visible(p_visible); | 
					
						
							| 
									
										
										
										
											2019-02-24 14:42:46 -06:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool ColorPicker::are_presets_visible() const { | 
					
						
							|  |  |  | 	return presets_visible; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-21 23:20:28 -04:00
										 |  |  | void ColorPicker::set_modes_visible(bool p_visible) { | 
					
						
							|  |  |  | 	if (color_modes_visible == p_visible) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	color_modes_visible = p_visible; | 
					
						
							|  |  |  | 	mode_hbc->set_visible(p_visible); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool ColorPicker::are_modes_visible() const { | 
					
						
							|  |  |  | 	return color_modes_visible; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ColorPicker::set_sampler_visible(bool p_visible) { | 
					
						
							|  |  |  | 	if (sampler_visible == p_visible) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	sampler_visible = p_visible; | 
					
						
							|  |  |  | 	sample_hbc->set_visible(p_visible); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool ColorPicker::is_sampler_visible() const { | 
					
						
							|  |  |  | 	return sampler_visible; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ColorPicker::set_sliders_visible(bool p_visible) { | 
					
						
							|  |  |  | 	if (sliders_visible == p_visible) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	sliders_visible = p_visible; | 
					
						
							|  |  |  | 	slider_gc->set_visible(p_visible); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool ColorPicker::are_sliders_visible() const { | 
					
						
							|  |  |  | 	return sliders_visible; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ColorPicker::set_hex_visible(bool p_visible) { | 
					
						
							|  |  |  | 	if (hex_visible == p_visible) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	hex_visible = p_visible; | 
					
						
							|  |  |  | 	hex_hbc->set_visible(p_visible); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool ColorPicker::is_hex_visible() const { | 
					
						
							|  |  |  | 	return hex_visible; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | void ColorPicker::_bind_methods() { | 
					
						
							| 
									
										
										
										
											2017-02-13 12:47:24 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_pick_color", "color"), &ColorPicker::set_pick_color); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_pick_color"), &ColorPicker::get_pick_color); | 
					
						
							| 
									
										
										
										
											2018-05-29 15:21:06 +03:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_deferred_mode", "mode"), &ColorPicker::set_deferred_mode); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("is_deferred_mode"), &ColorPicker::is_deferred_mode); | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_color_mode", "color_mode"), &ColorPicker::set_color_mode); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_color_mode"), &ColorPicker::get_color_mode); | 
					
						
							| 
									
										
										
										
											2017-02-13 12:47:24 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_edit_alpha", "show"), &ColorPicker::set_edit_alpha); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("is_editing_alpha"), &ColorPicker::is_editing_alpha); | 
					
						
							| 
									
										
										
										
											2022-10-21 23:20:28 -04:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_can_add_swatches", "enabled"), &ColorPicker::set_can_add_swatches); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("are_swatches_enabled"), &ColorPicker::are_swatches_enabled); | 
					
						
							| 
									
										
										
										
											2019-02-24 14:42:46 -06:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_presets_visible", "visible"), &ColorPicker::set_presets_visible); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("are_presets_visible"), &ColorPicker::are_presets_visible); | 
					
						
							| 
									
										
										
										
											2022-10-21 23:20:28 -04:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_modes_visible", "visible"), &ColorPicker::set_modes_visible); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("are_modes_visible"), &ColorPicker::are_modes_visible); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_sampler_visible", "visible"), &ColorPicker::set_sampler_visible); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("is_sampler_visible"), &ColorPicker::is_sampler_visible); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_sliders_visible", "visible"), &ColorPicker::set_sliders_visible); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("are_sliders_visible"), &ColorPicker::are_sliders_visible); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_hex_visible", "visible"), &ColorPicker::set_hex_visible); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("is_hex_visible"), &ColorPicker::is_hex_visible); | 
					
						
							| 
									
										
										
										
											2017-07-19 02:03:34 +07:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("add_preset", "color"), &ColorPicker::add_preset); | 
					
						
							| 
									
										
										
										
											2018-10-03 16:12:38 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("erase_preset", "color"), &ColorPicker::erase_preset); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_presets"), &ColorPicker::get_presets); | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 	ClassDB::bind_method(D_METHOD("add_recent_preset", "color"), &ColorPicker::add_recent_preset); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("erase_recent_preset", "color"), &ColorPicker::erase_recent_preset); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_recent_presets"), &ColorPicker::get_recent_presets); | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_picker_shape", "shape"), &ColorPicker::set_picker_shape); | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("get_picker_shape"), &ColorPicker::get_picker_shape); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-12 00:35:12 +02:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::COLOR, "color"), "set_pick_color", "get_pick_color"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::BOOL, "edit_alpha"), "set_edit_alpha", "is_editing_alpha"); | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::INT, "color_mode", PROPERTY_HINT_ENUM, "RGB,HSV,RAW,OKHSL"), "set_color_mode", "get_color_mode"); | 
					
						
							| 
									
										
										
										
											2018-05-29 15:21:06 +03:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::BOOL, "deferred_mode"), "set_deferred_mode", "is_deferred_mode"); | 
					
						
							| 
									
										
										
										
											2022-10-21 23:20:28 -04:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::INT, "picker_shape", PROPERTY_HINT_ENUM, "HSV Rectangle,HSV Rectangle Wheel,VHS Circle,OKHSL Circle,None"), "set_picker_shape", "get_picker_shape"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::BOOL, "can_add_swatches"), "set_can_add_swatches", "are_swatches_enabled"); | 
					
						
							|  |  |  | 	ADD_GROUP("Customization", ""); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::BOOL, "sampler_visible"), "set_sampler_visible", "is_sampler_visible"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::BOOL, "color_modes_visible"), "set_modes_visible", "are_modes_visible"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::BOOL, "sliders_visible"), "set_sliders_visible", "are_sliders_visible"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::BOOL, "hex_visible"), "set_hex_visible", "is_hex_visible"); | 
					
						
							| 
									
										
										
										
											2019-02-24 14:42:46 -06:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::BOOL, "presets_visible"), "set_presets_visible", "are_presets_visible"); | 
					
						
							| 
									
										
										
										
											2018-01-12 00:35:12 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	ADD_SIGNAL(MethodInfo("color_changed", PropertyInfo(Variant::COLOR, "color"))); | 
					
						
							| 
									
										
										
										
											2018-10-03 16:12:38 +02:00
										 |  |  | 	ADD_SIGNAL(MethodInfo("preset_added", PropertyInfo(Variant::COLOR, "color"))); | 
					
						
							|  |  |  | 	ADD_SIGNAL(MethodInfo("preset_removed", PropertyInfo(Variant::COLOR, "color"))); | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 	BIND_ENUM_CONSTANT(MODE_RGB); | 
					
						
							|  |  |  | 	BIND_ENUM_CONSTANT(MODE_HSV); | 
					
						
							|  |  |  | 	BIND_ENUM_CONSTANT(MODE_RAW); | 
					
						
							|  |  |  | 	BIND_ENUM_CONSTANT(MODE_OKHSL); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 	BIND_ENUM_CONSTANT(SHAPE_HSV_RECTANGLE); | 
					
						
							|  |  |  | 	BIND_ENUM_CONSTANT(SHAPE_HSV_WHEEL); | 
					
						
							|  |  |  | 	BIND_ENUM_CONSTANT(SHAPE_VHS_CIRCLE); | 
					
						
							| 
									
										
										
										
											2022-04-18 11:29:29 -07:00
										 |  |  | 	BIND_ENUM_CONSTANT(SHAPE_OKHSL_CIRCLE); | 
					
						
							| 
									
										
										
										
											2022-10-21 23:20:28 -04:00
										 |  |  | 	BIND_ENUM_CONSTANT(SHAPE_NONE); | 
					
						
							| 
									
										
										
										
											2023-09-08 21:00:10 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	BIND_THEME_ITEM_CUSTOM(Theme::DATA_TYPE_CONSTANT, ColorPicker, content_margin, "margin"); | 
					
						
							|  |  |  | 	BIND_THEME_ITEM(Theme::DATA_TYPE_CONSTANT, ColorPicker, label_width); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BIND_THEME_ITEM(Theme::DATA_TYPE_CONSTANT, ColorPicker, sv_width); | 
					
						
							|  |  |  | 	BIND_THEME_ITEM(Theme::DATA_TYPE_CONSTANT, ColorPicker, sv_height); | 
					
						
							|  |  |  | 	BIND_THEME_ITEM(Theme::DATA_TYPE_CONSTANT, ColorPicker, h_width); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BIND_THEME_ITEM(Theme::DATA_TYPE_CONSTANT, ColorPicker, center_slider_grabbers); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BIND_THEME_ITEM(Theme::DATA_TYPE_ICON, ColorPicker, screen_picker); | 
					
						
							|  |  |  | 	BIND_THEME_ITEM(Theme::DATA_TYPE_ICON, ColorPicker, expanded_arrow); | 
					
						
							|  |  |  | 	BIND_THEME_ITEM(Theme::DATA_TYPE_ICON, ColorPicker, folded_arrow); | 
					
						
							|  |  |  | 	BIND_THEME_ITEM(Theme::DATA_TYPE_ICON, ColorPicker, add_preset); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BIND_THEME_ITEM(Theme::DATA_TYPE_ICON, ColorPicker, shape_rect); | 
					
						
							|  |  |  | 	BIND_THEME_ITEM(Theme::DATA_TYPE_ICON, ColorPicker, shape_rect_wheel); | 
					
						
							|  |  |  | 	BIND_THEME_ITEM(Theme::DATA_TYPE_ICON, ColorPicker, shape_circle); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BIND_THEME_ITEM(Theme::DATA_TYPE_ICON, ColorPicker, bar_arrow); | 
					
						
							| 
									
										
										
										
											2023-09-12 15:01:42 +02:00
										 |  |  | 	BIND_THEME_ITEM(Theme::DATA_TYPE_ICON, ColorPicker, sample_bg); | 
					
						
							| 
									
										
										
										
											2023-11-06 14:53:52 +01:00
										 |  |  | 	BIND_THEME_ITEM(Theme::DATA_TYPE_ICON, ColorPicker, sample_revert); | 
					
						
							| 
									
										
										
										
											2023-09-08 21:00:10 +02:00
										 |  |  | 	BIND_THEME_ITEM(Theme::DATA_TYPE_ICON, ColorPicker, overbright_indicator); | 
					
						
							|  |  |  | 	BIND_THEME_ITEM(Theme::DATA_TYPE_ICON, ColorPicker, picker_cursor); | 
					
						
							| 
									
										
										
										
											2023-09-12 15:01:42 +02:00
										 |  |  | 	BIND_THEME_ITEM(Theme::DATA_TYPE_ICON, ColorPicker, color_hue); | 
					
						
							|  |  |  | 	BIND_THEME_ITEM(Theme::DATA_TYPE_ICON, ColorPicker, color_okhsl_hue); | 
					
						
							| 
									
										
										
										
											2023-09-08 21:00:10 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	BIND_THEME_ITEM_EXT(Theme::DATA_TYPE_STYLEBOX, ColorPicker, mode_button_normal, "tab_unselected", "TabContainer"); | 
					
						
							|  |  |  | 	BIND_THEME_ITEM_EXT(Theme::DATA_TYPE_STYLEBOX, ColorPicker, mode_button_pressed, "tab_selected", "TabContainer"); | 
					
						
							|  |  |  | 	BIND_THEME_ITEM_EXT(Theme::DATA_TYPE_STYLEBOX, ColorPicker, mode_button_hover, "tab_selected", "TabContainer"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-04 09:46:13 -04:00
										 |  |  | ColorPicker::ColorPicker() { | 
					
						
							| 
									
										
										
										
											2023-06-20 12:47:52 +02:00
										 |  |  | 	internal_margin = memnew(MarginContainer); | 
					
						
							|  |  |  | 	add_child(internal_margin, false, INTERNAL_MODE_FRONT); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	VBoxContainer *real_vbox = memnew(VBoxContainer); | 
					
						
							|  |  |  | 	internal_margin->add_child(real_vbox); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-21 02:51:42 -03:00
										 |  |  | 	HBoxContainer *hb_edit = memnew(HBoxContainer); | 
					
						
							| 
									
										
										
										
											2023-06-20 12:47:52 +02:00
										 |  |  | 	real_vbox->add_child(hb_edit); | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 	hb_edit->set_v_size_flags(SIZE_SHRINK_BEGIN); | 
					
						
							| 
									
										
										
										
											2016-10-03 16:33:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 	uv_edit = memnew(Control); | 
					
						
							| 
									
										
										
										
											2019-01-26 19:07:32 -02:00
										 |  |  | 	hb_edit->add_child(uv_edit); | 
					
						
							| 
									
										
										
										
											2024-05-13 16:56:03 +02:00
										 |  |  | 	uv_edit->connect(SceneStringName(gui_input), callable_mp(this, &ColorPicker::_uv_input).bind(uv_edit)); | 
					
						
							| 
									
										
										
										
											2017-01-08 19:54:19 -03:00
										 |  |  | 	uv_edit->set_mouse_filter(MOUSE_FILTER_PASS); | 
					
						
							| 
									
										
										
										
											2017-06-18 21:00:36 +07:00
										 |  |  | 	uv_edit->set_h_size_flags(SIZE_EXPAND_FILL); | 
					
						
							|  |  |  | 	uv_edit->set_v_size_flags(SIZE_EXPAND_FILL); | 
					
						
							| 
									
										
										
										
											2024-05-13 16:56:03 +02:00
										 |  |  | 	uv_edit->connect(SceneStringName(draw), callable_mp(this, &ColorPicker::_hsv_draw).bind(0, uv_edit)); | 
					
						
							| 
									
										
										
										
											2015-12-23 23:17:09 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-21 23:20:28 -04:00
										 |  |  | 	sample_hbc = memnew(HBoxContainer); | 
					
						
							| 
									
										
										
										
											2023-06-20 12:47:52 +02:00
										 |  |  | 	real_vbox->add_child(sample_hbc); | 
					
						
							| 
									
										
										
										
											2019-12-28 18:08:16 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 	btn_pick = memnew(Button); | 
					
						
							| 
									
										
										
										
											2024-11-30 19:50:53 +01:00
										 |  |  | 	btn_pick->set_icon_alignment(HORIZONTAL_ALIGNMENT_CENTER); | 
					
						
							| 
									
										
										
										
											2022-10-21 23:20:28 -04:00
										 |  |  | 	sample_hbc->add_child(btn_pick); | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 	sample = memnew(TextureRect); | 
					
						
							| 
									
										
										
										
											2022-10-21 23:20:28 -04:00
										 |  |  | 	sample_hbc->add_child(sample); | 
					
						
							| 
									
										
										
										
											2019-12-28 18:08:16 +01:00
										 |  |  | 	sample->set_h_size_flags(SIZE_EXPAND_FILL); | 
					
						
							| 
									
										
										
										
											2024-05-13 16:56:03 +02:00
										 |  |  | 	sample->connect(SceneStringName(gui_input), callable_mp(this, &ColorPicker::_sample_input)); | 
					
						
							|  |  |  | 	sample->connect(SceneStringName(draw), callable_mp(this, &ColorPicker::_sample_draw)); | 
					
						
							| 
									
										
										
										
											2019-12-28 18:08:16 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 	btn_shape = memnew(MenuButton); | 
					
						
							|  |  |  | 	btn_shape->set_flat(false); | 
					
						
							| 
									
										
										
										
											2022-10-21 23:20:28 -04:00
										 |  |  | 	sample_hbc->add_child(btn_shape); | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 	btn_shape->set_toggle_mode(true); | 
					
						
							| 
									
										
										
										
											2023-12-15 20:56:06 -03:00
										 |  |  | 	btn_shape->set_tooltip_text(ETR("Select a picker shape.")); | 
					
						
							| 
									
										
										
										
											2024-11-30 19:50:53 +01:00
										 |  |  | 	btn_shape->set_icon_alignment(HORIZONTAL_ALIGNMENT_CENTER); | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | 	current_shape = SHAPE_HSV_RECTANGLE; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	shape_popup = btn_shape->get_popup(); | 
					
						
							| 
									
										
										
										
											2023-04-03 18:01:11 +02:00
										 |  |  | 	shape_popup->add_radio_check_item("HSV Rectangle", SHAPE_HSV_RECTANGLE); | 
					
						
							|  |  |  | 	shape_popup->add_radio_check_item("HSV Wheel", SHAPE_HSV_WHEEL); | 
					
						
							|  |  |  | 	shape_popup->add_radio_check_item("VHS Circle", SHAPE_VHS_CIRCLE); | 
					
						
							|  |  |  | 	shape_popup->add_radio_check_item("OKHSL Circle", SHAPE_OKHSL_CIRCLE); | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 	shape_popup->set_item_checked(current_shape, true); | 
					
						
							| 
									
										
										
										
											2024-05-14 14:13:31 +02:00
										 |  |  | 	shape_popup->connect(SceneStringName(id_pressed), callable_mp(this, &ColorPicker::set_picker_shape)); | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | 	add_mode(new ColorModeRGB(this)); | 
					
						
							|  |  |  | 	add_mode(new ColorModeHSV(this)); | 
					
						
							|  |  |  | 	add_mode(new ColorModeRAW(this)); | 
					
						
							|  |  |  | 	add_mode(new ColorModeOKHSL(this)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-21 23:20:28 -04:00
										 |  |  | 	mode_hbc = memnew(HBoxContainer); | 
					
						
							| 
									
										
										
										
											2023-06-20 12:47:52 +02:00
										 |  |  | 	real_vbox->add_child(mode_hbc); | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | 	mode_group.instantiate(); | 
					
						
							| 
									
										
										
										
											2019-12-28 18:08:16 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 	for (int i = 0; i < MODE_BUTTON_COUNT; i++) { | 
					
						
							|  |  |  | 		mode_btns[i] = memnew(Button); | 
					
						
							|  |  |  | 		mode_hbc->add_child(mode_btns[i]); | 
					
						
							|  |  |  | 		mode_btns[i]->set_focus_mode(FOCUS_NONE); | 
					
						
							|  |  |  | 		mode_btns[i]->set_h_size_flags(SIZE_EXPAND_FILL); | 
					
						
							|  |  |  | 		mode_btns[i]->set_toggle_mode(true); | 
					
						
							|  |  |  | 		mode_btns[i]->set_text(modes[i]->get_name()); | 
					
						
							|  |  |  | 		mode_btns[i]->set_button_group(mode_group); | 
					
						
							| 
									
										
										
										
											2024-05-14 09:40:21 +02:00
										 |  |  | 		mode_btns[i]->connect(SceneStringName(pressed), callable_mp(this, &ColorPicker::set_color_mode).bind((ColorModeType)i)); | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 	} | 
					
						
							|  |  |  | 	mode_btns[0]->set_pressed(true); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	btn_mode = memnew(MenuButton); | 
					
						
							|  |  |  | 	btn_mode->set_text("..."); | 
					
						
							|  |  |  | 	btn_mode->set_flat(false); | 
					
						
							|  |  |  | 	mode_hbc->add_child(btn_mode); | 
					
						
							|  |  |  | 	btn_mode->set_toggle_mode(true); | 
					
						
							| 
									
										
										
										
											2023-12-15 20:56:06 -03:00
										 |  |  | 	btn_mode->set_tooltip_text(ETR("Select a picker mode.")); | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | 	current_mode = MODE_RGB; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mode_popup = btn_mode->get_popup(); | 
					
						
							|  |  |  | 	for (int i = 0; i < modes.size(); i++) { | 
					
						
							|  |  |  | 		mode_popup->add_radio_check_item(modes[i]->get_name(), i); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	mode_popup->add_separator(); | 
					
						
							| 
									
										
										
										
											2024-09-24 15:49:30 +08:00
										 |  |  | 	mode_popup->add_check_item(ETR("Colorized Sliders"), MODE_MAX); | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 	mode_popup->set_item_checked(current_mode, true); | 
					
						
							|  |  |  | 	mode_popup->set_item_checked(MODE_MAX + 1, true); | 
					
						
							| 
									
										
										
										
											2024-05-14 14:13:31 +02:00
										 |  |  | 	mode_popup->connect(SceneStringName(id_pressed), callable_mp(this, &ColorPicker::_set_mode_popup_value)); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	VBoxContainer *vbl = memnew(VBoxContainer); | 
					
						
							| 
									
										
										
										
											2023-06-20 12:47:52 +02:00
										 |  |  | 	real_vbox->add_child(vbl); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	VBoxContainer *vbr = memnew(VBoxContainer); | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-20 12:47:52 +02:00
										 |  |  | 	real_vbox->add_child(vbr); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	vbr->set_h_size_flags(SIZE_EXPAND_FILL); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-21 23:20:28 -04:00
										 |  |  | 	slider_gc = memnew(GridContainer); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-21 23:20:28 -04:00
										 |  |  | 	vbr->add_child(slider_gc); | 
					
						
							|  |  |  | 	slider_gc->set_h_size_flags(SIZE_EXPAND_FILL); | 
					
						
							|  |  |  | 	slider_gc->set_columns(3); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 	for (int i = 0; i < SLIDER_COUNT + 1; i++) { | 
					
						
							| 
									
										
										
										
											2022-10-21 23:20:28 -04:00
										 |  |  | 		create_slider(slider_gc, i); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-04-07 18:15:29 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 	alpha_label->set_text("A"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-21 23:20:28 -04:00
										 |  |  | 	hex_hbc = memnew(HBoxContainer); | 
					
						
							|  |  |  | 	hex_hbc->set_alignment(ALIGNMENT_BEGIN); | 
					
						
							|  |  |  | 	vbr->add_child(hex_hbc); | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-24 15:49:30 +08:00
										 |  |  | 	hex_hbc->add_child(memnew(Label(ETR("Hex")))); | 
					
						
							| 
									
										
										
										
											2019-01-26 19:07:32 -02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 	text_type = memnew(Button); | 
					
						
							| 
									
										
										
										
											2022-10-21 23:20:28 -04:00
										 |  |  | 	hex_hbc->add_child(text_type); | 
					
						
							| 
									
										
										
										
											2019-01-26 19:07:32 -02:00
										 |  |  | 	text_type->set_text("#"); | 
					
						
							| 
									
										
										
										
											2022-08-25 12:42:17 +02:00
										 |  |  | 	text_type->set_tooltip_text(RTR("Switch between hexadecimal and code values.")); | 
					
						
							| 
									
										
										
										
											2019-01-26 19:07:32 -02:00
										 |  |  | 	if (Engine::get_singleton()->is_editor_hint()) { | 
					
						
							| 
									
										
										
										
											2024-05-14 09:40:21 +02:00
										 |  |  | 		text_type->connect(SceneStringName(pressed), callable_mp(this, &ColorPicker::_text_type_toggled)); | 
					
						
							| 
									
										
										
										
											2019-01-26 19:07:32 -02:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		text_type->set_flat(true); | 
					
						
							|  |  |  | 		text_type->set_mouse_filter(MOUSE_FILTER_IGNORE); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-01-26 19:10:56 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 	c_text = memnew(LineEdit); | 
					
						
							| 
									
										
										
										
											2022-10-21 23:20:28 -04:00
										 |  |  | 	hex_hbc->add_child(c_text); | 
					
						
							| 
									
										
										
										
											2023-04-10 21:06:02 +02:00
										 |  |  | 	c_text->set_h_size_flags(SIZE_EXPAND_FILL); | 
					
						
							| 
									
										
										
										
											2022-10-16 20:37:35 +08:00
										 |  |  | 	c_text->set_select_all_on_focus(true); | 
					
						
							| 
									
										
										
										
											2023-12-15 20:56:06 -03:00
										 |  |  | 	c_text->set_tooltip_text(ETR("Enter a hex code (\"#ff0000\") or named color (\"red\").")); | 
					
						
							|  |  |  | 	c_text->set_placeholder(ETR("Hex code or named color")); | 
					
						
							| 
									
										
										
										
											2024-11-02 16:15:39 +01:00
										 |  |  | 	c_text->connect(SceneStringName(text_submitted), callable_mp(this, &ColorPicker::_html_submitted)); | 
					
						
							| 
									
										
										
										
											2024-05-14 11:42:00 +02:00
										 |  |  | 	c_text->connect(SceneStringName(text_changed), callable_mp(this, &ColorPicker::_text_changed)); | 
					
						
							| 
									
										
										
										
											2024-05-13 16:56:03 +02:00
										 |  |  | 	c_text->connect(SceneStringName(focus_exited), callable_mp(this, &ColorPicker::_html_focus_exit)); | 
					
						
							| 
									
										
										
										
											2018-03-09 21:02:58 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 	wheel_edit = memnew(AspectRatioContainer); | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 	wheel_edit->set_h_size_flags(SIZE_EXPAND_FILL); | 
					
						
							|  |  |  | 	wheel_edit->set_v_size_flags(SIZE_EXPAND_FILL); | 
					
						
							|  |  |  | 	hb_edit->add_child(wheel_edit); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-17 16:03:09 -06:00
										 |  |  | 	wheel_mat.instantiate(); | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 	wheel_mat->set_shader(wheel_shader); | 
					
						
							| 
									
										
										
										
											2021-06-17 16:03:09 -06:00
										 |  |  | 	circle_mat.instantiate(); | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 	circle_mat->set_shader(circle_shader); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 	wheel_margin = memnew(MarginContainer); | 
					
						
							| 
									
										
										
										
											2022-02-08 10:14:58 +01:00
										 |  |  | 	wheel_margin->add_theme_constant_override("margin_bottom", 8); | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 	wheel_edit->add_child(wheel_margin); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 	wheel = memnew(Control); | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 	wheel_margin->add_child(wheel); | 
					
						
							|  |  |  | 	wheel->set_mouse_filter(MOUSE_FILTER_PASS); | 
					
						
							| 
									
										
										
										
											2024-05-13 16:56:03 +02:00
										 |  |  | 	wheel->connect(SceneStringName(draw), callable_mp(this, &ColorPicker::_hsv_draw).bind(2, wheel)); | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 	wheel_uv = memnew(Control); | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 	wheel_margin->add_child(wheel_uv); | 
					
						
							| 
									
										
										
										
											2024-05-13 16:56:03 +02:00
										 |  |  | 	wheel_uv->connect(SceneStringName(gui_input), callable_mp(this, &ColorPicker::_uv_input).bind(wheel_uv)); | 
					
						
							|  |  |  | 	wheel_uv->connect(SceneStringName(draw), callable_mp(this, &ColorPicker::_hsv_draw).bind(0, wheel_uv)); | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 	w_edit = memnew(Control); | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 	hb_edit->add_child(w_edit); | 
					
						
							|  |  |  | 	w_edit->set_h_size_flags(SIZE_FILL); | 
					
						
							|  |  |  | 	w_edit->set_v_size_flags(SIZE_EXPAND_FILL); | 
					
						
							| 
									
										
										
										
											2024-05-13 16:56:03 +02:00
										 |  |  | 	w_edit->connect(SceneStringName(gui_input), callable_mp(this, &ColorPicker::_w_input)); | 
					
						
							|  |  |  | 	w_edit->connect(SceneStringName(draw), callable_mp(this, &ColorPicker::_hsv_draw).bind(1, w_edit)); | 
					
						
							| 
									
										
										
										
											2021-02-23 17:22:46 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	_update_controls(); | 
					
						
							|  |  |  | 	updating = false; | 
					
						
							| 
									
										
										
										
											2015-12-23 23:17:09 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 	preset_container = memnew(GridContainer); | 
					
						
							| 
									
										
										
										
											2019-07-30 12:03:00 +01:00
										 |  |  | 	preset_container->set_h_size_flags(SIZE_EXPAND_FILL); | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 	preset_container->set_columns(PRESET_COLUMN_COUNT); | 
					
						
							|  |  |  | 	preset_container->hide(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	preset_group.instantiate(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-24 15:49:30 +08:00
										 |  |  | 	btn_preset = memnew(Button(ETR("Swatches"))); | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 	btn_preset->set_flat(true); | 
					
						
							|  |  |  | 	btn_preset->set_toggle_mode(true); | 
					
						
							|  |  |  | 	btn_preset->set_focus_mode(FOCUS_NONE); | 
					
						
							|  |  |  | 	btn_preset->set_text_alignment(HORIZONTAL_ALIGNMENT_LEFT); | 
					
						
							| 
									
										
										
										
											2024-06-01 13:15:13 +03:00
										 |  |  | 	btn_preset->connect(SceneStringName(toggled), callable_mp(this, &ColorPicker::_show_hide_preset).bind(btn_preset, preset_container)); | 
					
						
							| 
									
										
										
										
											2023-06-20 12:47:52 +02:00
										 |  |  | 	real_vbox->add_child(btn_preset); | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-20 12:47:52 +02:00
										 |  |  | 	real_vbox->add_child(preset_container); | 
					
						
							| 
									
										
										
										
											2015-12-23 23:17:09 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 	recent_preset_hbc = memnew(HBoxContainer); | 
					
						
							|  |  |  | 	recent_preset_hbc->set_v_size_flags(SIZE_SHRINK_BEGIN); | 
					
						
							|  |  |  | 	recent_preset_hbc->hide(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	recent_preset_group.instantiate(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-24 15:49:30 +08:00
										 |  |  | 	btn_recent_preset = memnew(Button(ETR("Recent Colors"))); | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 	btn_recent_preset->set_flat(true); | 
					
						
							|  |  |  | 	btn_recent_preset->set_toggle_mode(true); | 
					
						
							|  |  |  | 	btn_recent_preset->set_focus_mode(FOCUS_NONE); | 
					
						
							|  |  |  | 	btn_recent_preset->set_text_alignment(HORIZONTAL_ALIGNMENT_LEFT); | 
					
						
							| 
									
										
										
										
											2024-06-01 13:15:13 +03:00
										 |  |  | 	btn_recent_preset->connect(SceneStringName(toggled), callable_mp(this, &ColorPicker::_show_hide_preset).bind(btn_recent_preset, recent_preset_hbc)); | 
					
						
							| 
									
										
										
										
											2023-06-20 12:47:52 +02:00
										 |  |  | 	real_vbox->add_child(btn_recent_preset); | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-20 12:47:52 +02:00
										 |  |  | 	real_vbox->add_child(recent_preset_hbc); | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | 	set_pick_color(Color(1, 1, 1)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | 	btn_add_preset = memnew(Button); | 
					
						
							| 
									
										
										
										
											2021-11-24 20:58:47 -06:00
										 |  |  | 	btn_add_preset->set_icon_alignment(HORIZONTAL_ALIGNMENT_CENTER); | 
					
						
							| 
									
										
										
										
											2023-12-15 20:56:06 -03:00
										 |  |  | 	btn_add_preset->set_tooltip_text(ETR("Add current color as a preset.")); | 
					
						
							| 
									
										
										
										
											2024-05-14 09:40:21 +02:00
										 |  |  | 	btn_add_preset->connect(SceneStringName(pressed), callable_mp(this, &ColorPicker::_add_preset_pressed)); | 
					
						
							| 
									
										
										
										
											2021-08-18 02:09:48 +02:00
										 |  |  | 	preset_container->add_child(btn_add_preset); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-29 20:47:37 +05:30
										 |  |  | ColorPicker::~ColorPicker() { | 
					
						
							|  |  |  | 	for (int i = 0; i < modes.size(); i++) { | 
					
						
							|  |  |  | 		delete modes[i]; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /////////////////
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-02-22 18:01:28 -06:00
										 |  |  | void ColorPickerPopupPanel::_input_from_window(const Ref<InputEvent> &p_event) { | 
					
						
							|  |  |  | 	if (p_event->is_action_pressed(SNAME("ui_accept"), false, true)) { | 
					
						
							|  |  |  | 		_close_pressed(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	PopupPanel::_input_from_window(p_event); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /////////////////
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-05 18:01:24 +01:00
										 |  |  | void ColorPickerButton::_about_to_popup() { | 
					
						
							|  |  |  | 	set_pressed(true); | 
					
						
							| 
									
										
										
										
											2021-05-10 16:59:46 +02:00
										 |  |  | 	if (picker) { | 
					
						
							|  |  |  | 		picker->set_old_color(color); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-01-05 18:01:24 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | void ColorPickerButton::_color_changed(const Color &p_color) { | 
					
						
							| 
									
										
										
										
											2018-05-15 17:12:35 -03:00
										 |  |  | 	color = p_color; | 
					
						
							| 
									
										
										
										
											2022-08-13 23:21:24 +02:00
										 |  |  | 	queue_redraw(); | 
					
						
							| 
									
										
										
										
											2021-07-17 18:22:52 -03:00
										 |  |  | 	emit_signal(SNAME("color_changed"), color); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-12 16:47:53 -05:00
										 |  |  | void ColorPickerButton::_modal_closed() { | 
					
						
							| 
									
										
										
										
											2024-02-22 18:01:28 -06:00
										 |  |  | 	if (Input::get_singleton()->is_action_just_pressed(SNAME("ui_cancel"))) { | 
					
						
							|  |  |  | 		set_pick_color(picker->get_old_color()); | 
					
						
							|  |  |  | 		emit_signal(SNAME("color_changed"), color); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-07-17 18:22:52 -03:00
										 |  |  | 	emit_signal(SNAME("popup_closed")); | 
					
						
							| 
									
										
										
										
											2020-09-09 21:38:29 +03:00
										 |  |  | 	set_pressed(false); | 
					
						
							| 
									
										
										
										
											2018-04-12 16:47:53 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | void ColorPickerButton::pressed() { | 
					
						
							| 
									
										
										
										
											2018-05-15 17:12:35 -03:00
										 |  |  | 	_update_picker(); | 
					
						
							| 
									
										
										
										
											2020-03-19 23:32:09 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-30 13:27:15 +01:00
										 |  |  | 	Size2 minsize = popup->get_contents_minimum_size(); | 
					
						
							|  |  |  | 	float viewport_height = get_viewport_rect().size.y; | 
					
						
							| 
									
										
										
										
											2021-08-30 08:42:33 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-06 00:57:42 +01:00
										 |  |  | 	popup->reset_size(); | 
					
						
							| 
									
										
										
										
											2021-08-18 02:09:48 +02:00
										 |  |  | 	picker->_update_presets(); | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 	picker->_update_recent_presets(); | 
					
						
							| 
									
										
										
										
											2020-03-19 23:32:09 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-30 13:27:15 +01:00
										 |  |  | 	// Determine in which direction to show the popup. By default popup horizontally centered below the button.
 | 
					
						
							|  |  |  | 	// But if the popup doesn't fit below and the button is in the bottom half of the viewport, show above.
 | 
					
						
							|  |  |  | 	bool show_above = false; | 
					
						
							|  |  |  | 	if (get_global_position().y + get_size().y + minsize.y > viewport_height && get_global_position().y * 2 + get_size().y > viewport_height) { | 
					
						
							|  |  |  | 		show_above = true; | 
					
						
							| 
									
										
										
										
											2020-03-19 23:32:09 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2023-01-30 13:27:15 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	float h_offset = (get_size().x - minsize.x) / 2; | 
					
						
							|  |  |  | 	float v_offset = show_above ? -minsize.y : get_size().y; | 
					
						
							|  |  |  | 	popup->set_position(get_screen_position() + Vector2(h_offset, v_offset)); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	popup->popup(); | 
					
						
							| 
									
										
										
										
											2024-10-04 15:43:55 +05:30
										 |  |  | 	if (DisplayServer::get_singleton()->has_hardware_keyboard()) { | 
					
						
							|  |  |  | 		picker->set_focus_on_line_edit(); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ColorPickerButton::_notification(int p_what) { | 
					
						
							| 
									
										
										
										
											2019-04-22 22:28:38 -03:00
										 |  |  | 	switch (p_what) { | 
					
						
							|  |  |  | 		case NOTIFICATION_DRAW: { | 
					
						
							| 
									
										
										
										
											2023-04-03 18:01:11 +02:00
										 |  |  | 			const Rect2 r = Rect2(theme_cache.normal_style->get_offset(), get_size() - theme_cache.normal_style->get_minimum_size()); | 
					
						
							|  |  |  | 			draw_texture_rect(theme_cache.background_icon, r, true); | 
					
						
							| 
									
										
										
										
											2019-04-22 22:28:38 -03:00
										 |  |  | 			draw_rect(r, color); | 
					
						
							| 
									
										
										
										
											2019-09-27 01:07:41 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			if (color.r > 1 || color.g > 1 || color.b > 1) { | 
					
						
							|  |  |  | 				// Draw an indicator to denote that the color is "overbright" and can't be displayed accurately in the preview
 | 
					
						
							| 
									
										
										
										
											2023-04-03 18:01:11 +02:00
										 |  |  | 				draw_texture(theme_cache.overbright_indicator, theme_cache.normal_style->get_offset()); | 
					
						
							| 
									
										
										
										
											2019-09-27 01:07:41 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2019-04-22 22:28:38 -03:00
										 |  |  | 		} break; | 
					
						
							| 
									
										
										
										
											2022-02-15 18:06:48 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-04 13:36:09 -03:00
										 |  |  | 		case NOTIFICATION_WM_CLOSE_REQUEST: { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			if (popup) { | 
					
						
							| 
									
										
										
										
											2019-04-22 22:28:38 -03:00
										 |  |  | 				popup->hide(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2019-04-22 22:28:38 -03:00
										 |  |  | 		} break; | 
					
						
							| 
									
										
										
										
											2019-04-18 15:50:35 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-15 18:06:48 +01:00
										 |  |  | 		case NOTIFICATION_VISIBILITY_CHANGED: { | 
					
						
							|  |  |  | 			if (popup && !is_visible_in_tree()) { | 
					
						
							|  |  |  | 				popup->hide(); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} break; | 
					
						
							| 
									
										
										
										
											2019-04-18 15:50:35 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-14 11:07:57 -03:00
										 |  |  | void ColorPickerButton::set_pick_color(const Color &p_color) { | 
					
						
							| 
									
										
										
										
											2022-03-16 15:50:48 +08:00
										 |  |  | 	if (color == p_color) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-05-15 17:12:35 -03:00
										 |  |  | 	color = p_color; | 
					
						
							|  |  |  | 	if (picker) { | 
					
						
							|  |  |  | 		picker->set_pick_color(p_color); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-13 23:21:24 +02:00
										 |  |  | 	queue_redraw(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2020-05-14 14:29:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-14 11:07:57 -03:00
										 |  |  | Color ColorPickerButton::get_pick_color() const { | 
					
						
							| 
									
										
										
										
											2018-05-15 17:12:35 -03:00
										 |  |  | 	return color; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ColorPickerButton::set_edit_alpha(bool p_show) { | 
					
						
							| 
									
										
										
										
											2022-03-16 15:50:48 +08:00
										 |  |  | 	if (edit_alpha == p_show) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-05-15 17:12:35 -03:00
										 |  |  | 	edit_alpha = p_show; | 
					
						
							|  |  |  | 	if (picker) { | 
					
						
							|  |  |  | 		picker->set_edit_alpha(p_show); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool ColorPickerButton::is_editing_alpha() const { | 
					
						
							| 
									
										
										
										
											2018-05-15 17:12:35 -03:00
										 |  |  | 	return edit_alpha; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-15 17:12:35 -03:00
										 |  |  | ColorPicker *ColorPickerButton::get_picker() { | 
					
						
							|  |  |  | 	_update_picker(); | 
					
						
							| 
									
										
										
										
											2016-06-19 02:08:22 -03:00
										 |  |  | 	return picker; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-10 15:06:36 +02:00
										 |  |  | PopupPanel *ColorPickerButton::get_popup() { | 
					
						
							|  |  |  | 	_update_picker(); | 
					
						
							| 
									
										
										
										
											2017-12-01 22:58:53 +02:00
										 |  |  | 	return popup; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-15 17:12:35 -03:00
										 |  |  | void ColorPickerButton::_update_picker() { | 
					
						
							|  |  |  | 	if (!picker) { | 
					
						
							| 
									
										
										
										
											2024-02-22 18:01:28 -06:00
										 |  |  | 		popup = memnew(ColorPickerPopupPanel); | 
					
						
							| 
									
										
										
										
											2020-03-19 23:32:09 -03:00
										 |  |  | 		popup->set_wrap_controls(true); | 
					
						
							| 
									
										
										
										
											2018-05-15 17:12:35 -03:00
										 |  |  | 		picker = memnew(ColorPicker); | 
					
						
							| 
									
										
										
										
											2022-03-18 19:02:57 -05:00
										 |  |  | 		picker->set_anchors_and_offsets_preset(PRESET_FULL_RECT); | 
					
						
							| 
									
										
										
										
											2018-05-15 17:12:35 -03:00
										 |  |  | 		popup->add_child(picker); | 
					
						
							| 
									
										
										
										
											2021-08-25 15:49:30 +02:00
										 |  |  | 		add_child(popup, false, INTERNAL_MODE_FRONT); | 
					
						
							| 
									
										
										
										
											2020-02-21 18:28:45 +01:00
										 |  |  | 		picker->connect("color_changed", callable_mp(this, &ColorPickerButton::_color_changed)); | 
					
						
							| 
									
										
										
										
											2020-01-05 18:01:24 +01:00
										 |  |  | 		popup->connect("about_to_popup", callable_mp(this, &ColorPickerButton::_about_to_popup)); | 
					
						
							| 
									
										
										
										
											2020-09-09 21:38:29 +03:00
										 |  |  | 		popup->connect("popup_hide", callable_mp(this, &ColorPickerButton::_modal_closed)); | 
					
						
							| 
									
										
										
										
											2024-05-13 16:56:03 +02:00
										 |  |  | 		picker->connect(SceneStringName(minimum_size_changed), callable_mp((Window *)popup, &Window::reset_size)); | 
					
						
							| 
									
										
										
										
											2018-05-15 17:12:35 -03:00
										 |  |  | 		picker->set_pick_color(color); | 
					
						
							|  |  |  | 		picker->set_edit_alpha(edit_alpha); | 
					
						
							| 
									
										
										
										
											2020-01-05 18:01:24 +01:00
										 |  |  | 		picker->set_display_old_color(true); | 
					
						
							| 
									
										
										
										
											2021-07-17 18:22:52 -03:00
										 |  |  | 		emit_signal(SNAME("picker_created")); | 
					
						
							| 
									
										
										
										
											2018-05-15 17:12:35 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | void ColorPickerButton::_bind_methods() { | 
					
						
							| 
									
										
										
										
											2017-02-12 01:11:37 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_pick_color", "color"), &ColorPickerButton::set_pick_color); | 
					
						
							| 
									
										
										
										
											2017-02-13 12:47:24 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("get_pick_color"), &ColorPickerButton::get_pick_color); | 
					
						
							| 
									
										
										
										
											2017-08-09 13:19:41 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("get_picker"), &ColorPickerButton::get_picker); | 
					
						
							| 
									
										
										
										
											2017-12-01 22:58:53 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("get_popup"), &ColorPickerButton::get_popup); | 
					
						
							| 
									
										
										
										
											2017-02-12 01:11:37 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_edit_alpha", "show"), &ColorPickerButton::set_edit_alpha); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("is_editing_alpha"), &ColorPickerButton::is_editing_alpha); | 
					
						
							| 
									
										
										
										
											2020-01-05 18:01:24 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("_about_to_popup"), &ColorPickerButton::_about_to_popup); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ADD_SIGNAL(MethodInfo("color_changed", PropertyInfo(Variant::COLOR, "color"))); | 
					
						
							| 
									
										
										
										
											2018-04-12 16:47:53 -05:00
										 |  |  | 	ADD_SIGNAL(MethodInfo("popup_closed")); | 
					
						
							| 
									
										
										
										
											2019-08-30 16:25:15 -04:00
										 |  |  | 	ADD_SIGNAL(MethodInfo("picker_created")); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::COLOR, "color"), "set_pick_color", "get_pick_color"); | 
					
						
							| 
									
										
										
										
											2017-02-13 12:47:24 +01:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::BOOL, "edit_alpha"), "set_edit_alpha", "is_editing_alpha"); | 
					
						
							| 
									
										
										
										
											2023-09-08 21:00:10 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	BIND_THEME_ITEM_CUSTOM(Theme::DATA_TYPE_STYLEBOX, ColorPickerButton, normal_style, "normal"); | 
					
						
							|  |  |  | 	BIND_THEME_ITEM_CUSTOM(Theme::DATA_TYPE_ICON, ColorPickerButton, background_icon, "bg"); | 
					
						
							|  |  |  | 	BIND_THEME_ITEM_EXT(Theme::DATA_TYPE_ICON, ColorPickerButton, overbright_indicator, "overbright_indicator", "ColorPicker"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-04 09:18:44 +01:00
										 |  |  | ColorPickerButton::ColorPickerButton(const String &p_text) : | 
					
						
							|  |  |  | 		Button(p_text) { | 
					
						
							| 
									
										
										
										
											2018-09-21 02:18:40 -03:00
										 |  |  | 	set_toggle_mode(true); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2021-08-18 02:09:48 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | /////////////////
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ColorPresetButton::_notification(int p_what) { | 
					
						
							|  |  |  | 	switch (p_what) { | 
					
						
							|  |  |  | 		case NOTIFICATION_DRAW: { | 
					
						
							|  |  |  | 			const Rect2 r = Rect2(Point2(0, 0), get_size()); | 
					
						
							| 
									
										
										
										
											2023-04-03 18:01:11 +02:00
										 |  |  | 			Ref<StyleBox> sb_raw = theme_cache.foreground_style->duplicate(); | 
					
						
							| 
									
										
										
										
											2021-08-18 02:09:48 +02:00
										 |  |  | 			Ref<StyleBoxFlat> sb_flat = sb_raw; | 
					
						
							|  |  |  | 			Ref<StyleBoxTexture> sb_texture = sb_raw; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (sb_flat.is_valid()) { | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 				sb_flat->set_border_width(SIDE_BOTTOM, 2); | 
					
						
							|  |  |  | 				if (get_draw_mode() == DRAW_PRESSED || get_draw_mode() == DRAW_HOVER_PRESSED) { | 
					
						
							|  |  |  | 					sb_flat->set_border_color(Color(1, 1, 1, 1)); | 
					
						
							|  |  |  | 				} else { | 
					
						
							|  |  |  | 					sb_flat->set_border_color(Color(0, 0, 0, 1)); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-18 02:09:48 +02:00
										 |  |  | 				if (preset_color.a < 1) { | 
					
						
							|  |  |  | 					// Draw a background pattern when the color is transparent.
 | 
					
						
							|  |  |  | 					sb_flat->set_bg_color(Color(1, 1, 1)); | 
					
						
							|  |  |  | 					sb_flat->draw(get_canvas_item(), r); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					Rect2 bg_texture_rect = r.grow_side(SIDE_LEFT, -sb_flat->get_margin(SIDE_LEFT)); | 
					
						
							|  |  |  | 					bg_texture_rect = bg_texture_rect.grow_side(SIDE_RIGHT, -sb_flat->get_margin(SIDE_RIGHT)); | 
					
						
							|  |  |  | 					bg_texture_rect = bg_texture_rect.grow_side(SIDE_TOP, -sb_flat->get_margin(SIDE_TOP)); | 
					
						
							|  |  |  | 					bg_texture_rect = bg_texture_rect.grow_side(SIDE_BOTTOM, -sb_flat->get_margin(SIDE_BOTTOM)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-03 18:01:11 +02:00
										 |  |  | 					draw_texture_rect(theme_cache.background_icon, bg_texture_rect, true); | 
					
						
							| 
									
										
										
										
											2021-08-18 02:09:48 +02:00
										 |  |  | 					sb_flat->set_bg_color(preset_color); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				sb_flat->set_bg_color(preset_color); | 
					
						
							|  |  |  | 				sb_flat->draw(get_canvas_item(), r); | 
					
						
							|  |  |  | 			} else if (sb_texture.is_valid()) { | 
					
						
							|  |  |  | 				if (preset_color.a < 1) { | 
					
						
							|  |  |  | 					// Draw a background pattern when the color is transparent.
 | 
					
						
							|  |  |  | 					bool use_tile_texture = (sb_texture->get_h_axis_stretch_mode() == StyleBoxTexture::AxisStretchMode::AXIS_STRETCH_MODE_TILE) || (sb_texture->get_h_axis_stretch_mode() == StyleBoxTexture::AxisStretchMode::AXIS_STRETCH_MODE_TILE_FIT); | 
					
						
							| 
									
										
										
										
											2023-04-03 18:01:11 +02:00
										 |  |  | 					draw_texture_rect(theme_cache.background_icon, r, use_tile_texture); | 
					
						
							| 
									
										
										
										
											2021-08-18 02:09:48 +02:00
										 |  |  | 				} | 
					
						
							|  |  |  | 				sb_texture->set_modulate(preset_color); | 
					
						
							|  |  |  | 				sb_texture->draw(get_canvas_item(), r); | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				WARN_PRINT("Unsupported StyleBox used for ColorPresetButton. Use StyleBoxFlat or StyleBoxTexture instead."); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			if (preset_color.r > 1 || preset_color.g > 1 || preset_color.b > 1) { | 
					
						
							|  |  |  | 				// Draw an indicator to denote that the color is "overbright" and can't be displayed accurately in the preview
 | 
					
						
							| 
									
										
										
										
											2023-04-03 18:01:11 +02:00
										 |  |  | 				draw_texture(theme_cache.overbright_indicator, Vector2(0, 0)); | 
					
						
							| 
									
										
										
										
											2021-08-18 02:09:48 +02:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ColorPresetButton::set_preset_color(const Color &p_color) { | 
					
						
							|  |  |  | 	preset_color = p_color; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Color ColorPresetButton::get_preset_color() const { | 
					
						
							|  |  |  | 	return preset_color; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-08 21:00:10 +02:00
										 |  |  | void ColorPresetButton::_bind_methods() { | 
					
						
							|  |  |  | 	BIND_THEME_ITEM_CUSTOM(Theme::DATA_TYPE_STYLEBOX, ColorPresetButton, foreground_style, "preset_fg"); | 
					
						
							|  |  |  | 	BIND_THEME_ITEM_CUSTOM(Theme::DATA_TYPE_ICON, ColorPresetButton, background_icon, "preset_bg"); | 
					
						
							|  |  |  | 	BIND_THEME_ITEM(Theme::DATA_TYPE_ICON, ColorPresetButton, overbright_indicator); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | ColorPresetButton::ColorPresetButton(Color p_color, int p_size) { | 
					
						
							| 
									
										
										
										
											2021-08-18 02:09:48 +02:00
										 |  |  | 	preset_color = p_color; | 
					
						
							| 
									
										
										
										
											2022-06-30 17:04:32 +05:30
										 |  |  | 	set_toggle_mode(true); | 
					
						
							|  |  |  | 	set_custom_minimum_size(Size2(p_size, p_size)); | 
					
						
							| 
									
										
										
										
											2021-08-18 02:09:48 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ColorPresetButton::~ColorPresetButton() { | 
					
						
							|  |  |  | } |