| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*  base_button.cpp                                                      */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							| 
									
										
										
										
											2017-08-27 14:16:55 +02:00
										 |  |  | /*                      https://godotengine.org                          */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2017-01-01 22:01:57 +01:00
										 |  |  | /* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							| 
									
										
										
										
											2017-04-08 00:11:42 +02:00
										 |  |  | /* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md)    */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* Permission is hereby granted, free of charge, to any person obtaining */ | 
					
						
							|  |  |  | /* a copy of this software and associated documentation files (the       */ | 
					
						
							|  |  |  | /* "Software"), to deal in the Software without restriction, including   */ | 
					
						
							|  |  |  | /* without limitation the rights to use, copy, modify, merge, publish,   */ | 
					
						
							|  |  |  | /* distribute, sublicense, and/or sell copies of the Software, and to    */ | 
					
						
							|  |  |  | /* permit persons to whom the Software is furnished to do so, subject to */ | 
					
						
							|  |  |  | /* the following conditions:                                             */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* The above copyright notice and this permission notice shall be        */ | 
					
						
							|  |  |  | /* included in all copies or substantial portions of the Software.       */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,       */ | 
					
						
							|  |  |  | /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF    */ | 
					
						
							|  |  |  | /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/ | 
					
						
							|  |  |  | /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY  */ | 
					
						
							|  |  |  | /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,  */ | 
					
						
							|  |  |  | /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE     */ | 
					
						
							|  |  |  | /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | #include "base_button.h"
 | 
					
						
							|  |  |  | #include "os/keyboard.h"
 | 
					
						
							|  |  |  | #include "print_string.h"
 | 
					
						
							| 
									
										
										
										
											2016-06-27 20:14:59 -03:00
										 |  |  | #include "scene/main/viewport.h"
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | #include "scene/scene_string_names.h"
 | 
					
						
							| 
									
										
										
										
											2017-01-10 01:04:31 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | void BaseButton::_unpress_group() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!button_group.is_valid()) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-10 13:57:24 +09:00
										 |  |  | 	status.pressed = true; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	for (Set<BaseButton *>::Element *E = button_group->buttons.front(); E; E = E->next()) { | 
					
						
							|  |  |  | 		if (E->get() == this) | 
					
						
							| 
									
										
										
										
											2017-01-10 01:04:31 -03:00
										 |  |  | 			continue; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		E->get()->set_pressed(false); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | void BaseButton::_gui_input(Ref<InputEvent> p_event) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (status.disabled) // no interaction with disabled button
 | 
					
						
							|  |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 	Ref<InputEventMouseButton> b = p_event; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 	if (b.is_valid()) { | 
					
						
							|  |  |  | 		if (status.disabled || b->get_button_index() != 1) | 
					
						
							|  |  |  | 			return; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 		if (status.pressing_button) | 
					
						
							|  |  |  | 			return; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 		if (action_mode == ACTION_MODE_BUTTON_PRESS) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 			if (b->is_pressed()) { | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 				emit_signal("button_down"); | 
					
						
							| 
									
										
										
										
											2014-11-12 11:23:23 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 				if (!toggle_mode) { //mouse press attempt
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 					status.press_attempt = true; | 
					
						
							|  |  |  | 					status.pressing_inside = true; | 
					
						
							| 
									
										
										
										
											2014-12-02 17:26:56 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 					pressed(); | 
					
						
							|  |  |  | 					if (get_script_instance()) { | 
					
						
							|  |  |  | 						Variant::CallError ce; | 
					
						
							|  |  |  | 						get_script_instance()->call(SceneStringNames::get_singleton()->_pressed, NULL, 0, ce); | 
					
						
							|  |  |  | 					} | 
					
						
							| 
									
										
										
										
											2017-01-10 01:04:31 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 					emit_signal("pressed"); | 
					
						
							|  |  |  | 					_unpress_group(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 				} else { | 
					
						
							| 
									
										
										
										
											2017-01-10 01:04:31 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 					status.pressed = !status.pressed; | 
					
						
							|  |  |  | 					pressed(); | 
					
						
							|  |  |  | 					if (get_script_instance()) { | 
					
						
							|  |  |  | 						Variant::CallError ce; | 
					
						
							|  |  |  | 						get_script_instance()->call(SceneStringNames::get_singleton()->_pressed, NULL, 0, ce); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 					} | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 					emit_signal("pressed"); | 
					
						
							|  |  |  | 					_unpress_group(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 					toggled(status.pressed); | 
					
						
							|  |  |  | 					emit_signal("toggled", status.pressed); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2014-11-12 11:23:23 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 				emit_signal("button_up"); | 
					
						
							| 
									
										
										
										
											2016-06-17 20:21:14 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 				/* this is pointless		if (status.press_attempt && status.pressing_inside) {
 | 
					
						
							|  |  |  | 					//released();
 | 
					
						
							|  |  |  | 					emit_signal("released"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | */ | 
					
						
							|  |  |  | 				status.press_attempt = false; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 			update(); | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 		if (b->is_pressed()) { | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 			status.press_attempt = true; | 
					
						
							|  |  |  | 			status.pressing_inside = true; | 
					
						
							|  |  |  | 			emit_signal("button_down"); | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 			emit_signal("button_up"); | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 			if (status.press_attempt && status.pressing_inside) { | 
					
						
							| 
									
										
										
										
											2014-11-12 11:23:23 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 				if (!toggle_mode) { //mouse press attempt
 | 
					
						
							| 
									
										
										
										
											2014-11-12 11:23:23 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 					pressed(); | 
					
						
							|  |  |  | 					if (get_script_instance()) { | 
					
						
							|  |  |  | 						Variant::CallError ce; | 
					
						
							|  |  |  | 						get_script_instance()->call(SceneStringNames::get_singleton()->_pressed, NULL, 0, ce); | 
					
						
							|  |  |  | 					} | 
					
						
							| 
									
										
										
										
											2014-12-02 17:26:56 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 					emit_signal("pressed"); | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 				} else { | 
					
						
							| 
									
										
										
										
											2014-11-12 11:23:23 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 					status.pressed = !status.pressed; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 					pressed(); | 
					
						
							|  |  |  | 					emit_signal("pressed"); | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 					toggled(status.pressed); | 
					
						
							|  |  |  | 					emit_signal("toggled", status.pressed); | 
					
						
							|  |  |  | 					if (get_script_instance()) { | 
					
						
							|  |  |  | 						get_script_instance()->call(SceneStringNames::get_singleton()->_toggled, status.pressed); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2014-11-12 11:23:23 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 				_unpress_group(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 			status.press_attempt = false; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 		update(); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 	Ref<InputEventMouseMotion> mm = p_event; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 	if (mm.is_valid()) { | 
					
						
							|  |  |  | 		if (status.press_attempt && status.pressing_button == 0) { | 
					
						
							|  |  |  | 			bool last_press_inside = status.pressing_inside; | 
					
						
							| 
									
										
										
										
											2017-06-03 10:54:24 +02:00
										 |  |  | 			status.pressing_inside = has_point(mm->get_position()); | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 			if (last_press_inside != status.pressing_inside) | 
					
						
							|  |  |  | 				update(); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 	if (!mm.is_valid() && !b.is_valid()) { | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 		if (p_event->is_echo()) { | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 		if (status.disabled) { | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 		if (status.press_attempt && status.pressing_button == 0) { | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 		if (p_event->is_action("ui_accept")) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 			if (p_event->is_pressed()) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 				status.pressing_button++; | 
					
						
							|  |  |  | 				status.press_attempt = true; | 
					
						
							|  |  |  | 				status.pressing_inside = true; | 
					
						
							|  |  |  | 				emit_signal("button_down"); | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 			} else if (status.press_attempt) { | 
					
						
							| 
									
										
										
										
											2016-06-17 20:21:14 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 				if (status.pressing_button) | 
					
						
							|  |  |  | 					status.pressing_button--; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 				if (status.pressing_button) | 
					
						
							|  |  |  | 					return; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 				status.press_attempt = false; | 
					
						
							|  |  |  | 				status.pressing_inside = false; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 				emit_signal("button_up"); | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 				if (!toggle_mode) { //mouse press attempt
 | 
					
						
							| 
									
										
										
										
											2017-01-10 01:04:31 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 					pressed(); | 
					
						
							|  |  |  | 					emit_signal("pressed"); | 
					
						
							|  |  |  | 				} else { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					status.pressed = !status.pressed; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					pressed(); | 
					
						
							|  |  |  | 					emit_signal("pressed"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					toggled(status.pressed); | 
					
						
							|  |  |  | 					if (get_script_instance()) { | 
					
						
							|  |  |  | 						get_script_instance()->call(SceneStringNames::get_singleton()->_toggled, status.pressed); | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 					emit_signal("toggled", status.pressed); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 				_unpress_group(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			accept_event(); | 
					
						
							|  |  |  | 			update(); | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void BaseButton::_notification(int p_what) { | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (p_what == NOTIFICATION_MOUSE_ENTER) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		status.hovering = true; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		update(); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (p_what == NOTIFICATION_MOUSE_EXIT) { | 
					
						
							|  |  |  | 		status.hovering = false; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		update(); | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (p_what == NOTIFICATION_DRAG_BEGIN) { | 
					
						
							| 
									
										
										
										
											2016-06-23 18:20:39 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (status.press_attempt) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			status.press_attempt = false; | 
					
						
							|  |  |  | 			status.pressing_button = 0; | 
					
						
							| 
									
										
										
										
											2016-06-23 18:20:39 -03:00
										 |  |  | 			update(); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (p_what == NOTIFICATION_FOCUS_ENTER) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		status.hovering = true; | 
					
						
							| 
									
										
										
										
											2016-10-07 16:33:28 +03:00
										 |  |  | 		update(); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-06-23 18:20:39 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (p_what == NOTIFICATION_FOCUS_EXIT) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (status.pressing_button && status.press_attempt) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			status.press_attempt = false; | 
					
						
							|  |  |  | 			status.pressing_button = 0; | 
					
						
							|  |  |  | 			status.hovering = false; | 
					
						
							| 
									
										
										
										
											2016-10-07 16:33:28 +03:00
										 |  |  | 			update(); | 
					
						
							|  |  |  | 		} else if (status.hovering) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			status.hovering = false; | 
					
						
							| 
									
										
										
										
											2016-06-23 18:20:39 -03:00
										 |  |  | 			update(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (p_what == NOTIFICATION_ENTER_TREE) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (p_what == NOTIFICATION_EXIT_TREE) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (p_what == NOTIFICATION_VISIBILITY_CHANGED && !is_visible_in_tree()) { | 
					
						
							| 
									
										
										
										
											2015-09-26 03:06:42 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (!toggle_mode) { | 
					
						
							|  |  |  | 			status.pressed = false; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		status.hovering = false; | 
					
						
							|  |  |  | 		status.press_attempt = false; | 
					
						
							|  |  |  | 		status.pressing_inside = false; | 
					
						
							|  |  |  | 		status.pressing_button = 0; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void BaseButton::pressed() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (get_script_instance()) | 
					
						
							|  |  |  | 		get_script_instance()->call("pressed"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void BaseButton::toggled(bool p_pressed) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-10 01:04:31 -03:00
										 |  |  | 	if (get_script_instance()) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		get_script_instance()->call("toggled", p_pressed); | 
					
						
							| 
									
										
										
										
											2017-01-10 01:04:31 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void BaseButton::set_disabled(bool p_disabled) { | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	status.disabled = p_disabled; | 
					
						
							|  |  |  | 	update(); | 
					
						
							|  |  |  | 	_change_notify("disabled"); | 
					
						
							|  |  |  | 	if (p_disabled) | 
					
						
							|  |  |  | 		set_focus_mode(FOCUS_NONE); | 
					
						
							|  |  |  | 	else | 
					
						
							| 
									
										
										
										
											2016-04-12 17:25:17 +01:00
										 |  |  | 		set_focus_mode(enabled_focus_mode); | 
					
						
							| 
									
										
										
										
											2015-03-01 21:07:50 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | bool BaseButton::is_disabled() const { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return status.disabled; | 
					
						
							| 
									
										
										
										
											2015-03-01 21:07:50 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | void BaseButton::set_pressed(bool p_pressed) { | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	if (!toggle_mode) | 
					
						
							|  |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (status.pressed == p_pressed) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	_change_notify("pressed"); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	status.pressed = p_pressed; | 
					
						
							| 
									
										
										
										
											2017-01-10 01:04:31 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (p_pressed) { | 
					
						
							|  |  |  | 		_unpress_group(); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	update(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | bool BaseButton::is_pressing() const { | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	return status.press_attempt; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool BaseButton::is_pressed() const { | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	return toggle_mode ? status.pressed : status.press_attempt; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-29 22:41:02 -03:00
										 |  |  | bool BaseButton::is_hovered() const { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return status.hovering; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | BaseButton::DrawMode BaseButton::get_draw_mode() const { | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	if (status.disabled) { | 
					
						
							|  |  |  | 		return DRAW_DISABLED; | 
					
						
							|  |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	//print_line("press attempt: "+itos(status.press_attempt)+" hover: "+itos(status.hovering)+" pressed: "+itos(status.pressed));
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (status.press_attempt == false && status.hovering && !status.pressed) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		return DRAW_HOVER; | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		/* determine if pressed or not */ | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		bool pressing; | 
					
						
							|  |  |  | 		if (status.press_attempt) { | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			pressing = status.pressing_inside; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			if (status.pressed) | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 				pressing = !pressing; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			pressing = status.pressed; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (pressing) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			return DRAW_PRESSED; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 		else | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			return DRAW_NORMAL; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return DRAW_NORMAL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void BaseButton::set_toggle_mode(bool p_on) { | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	toggle_mode = p_on; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool BaseButton::is_toggle_mode() const { | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	return toggle_mode; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-13 14:08:30 -03:00
										 |  |  | void BaseButton::set_action_mode(ActionMode p_mode) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	action_mode = p_mode; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-13 14:08:30 -03:00
										 |  |  | BaseButton::ActionMode BaseButton::get_action_mode() const { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-13 14:08:30 -03:00
										 |  |  | 	return action_mode; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-12 17:25:17 +01:00
										 |  |  | void BaseButton::set_enabled_focus_mode(FocusMode p_mode) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-12 17:25:17 +01:00
										 |  |  | 	enabled_focus_mode = p_mode; | 
					
						
							|  |  |  | 	if (!status.disabled) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		set_focus_mode(p_mode); | 
					
						
							| 
									
										
										
										
											2016-04-12 17:25:17 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Control::FocusMode BaseButton::get_enabled_focus_mode() const { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return enabled_focus_mode; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-11-02 11:31:01 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void BaseButton::set_shortcut(const Ref<ShortCut> &p_shortcut) { | 
					
						
							| 
									
										
										
										
											2016-06-04 21:31:29 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (shortcut.is_null() == p_shortcut.is_null()) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	shortcut = p_shortcut; | 
					
						
							| 
									
										
										
										
											2016-06-04 21:31:29 -03:00
										 |  |  | 	set_process_unhandled_input(shortcut.is_valid()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | Ref<ShortCut> BaseButton::get_shortcut() const { | 
					
						
							| 
									
										
										
										
											2016-06-04 21:31:29 -03:00
										 |  |  | 	return shortcut; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | void BaseButton::_unhandled_input(Ref<InputEvent> p_event) { | 
					
						
							| 
									
										
										
										
											2016-06-04 21:31:29 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 	if (!is_disabled() && is_visible_in_tree() && p_event->is_pressed() && !p_event->is_echo() && shortcut.is_valid() && shortcut->is_shortcut(p_event)) { | 
					
						
							| 
									
										
										
										
											2016-06-27 20:14:59 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (get_viewport()->get_modal_stack_top() && !get_viewport()->get_modal_stack_top()->is_a_parent_of(this)) | 
					
						
							|  |  |  | 			return; //ignore because of modal window
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-04 21:31:29 -03:00
										 |  |  | 		if (is_toggle_mode()) { | 
					
						
							|  |  |  | 			set_pressed(!is_pressed()); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			emit_signal("toggled", is_pressed()); | 
					
						
							| 
									
										
										
										
											2016-06-04 21:31:29 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		emit_signal("pressed"); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | String BaseButton::get_tooltip(const Point2 &p_pos) const { | 
					
						
							| 
									
										
										
										
											2016-06-04 21:31:29 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	String tooltip = Control::get_tooltip(p_pos); | 
					
						
							| 
									
										
										
										
											2016-06-11 21:51:00 +02:00
										 |  |  | 	if (shortcut.is_valid() && shortcut->is_valid()) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if (tooltip.find("$sc") != -1) { | 
					
						
							|  |  |  | 			tooltip = tooltip.replace_first("$sc", "(" + shortcut->get_as_text() + ")"); | 
					
						
							| 
									
										
										
										
											2016-06-11 21:51:00 +02:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			tooltip += " (" + shortcut->get_as_text() + ")"; | 
					
						
							| 
									
										
										
										
											2016-06-11 21:51:00 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-06-04 21:31:29 -03:00
										 |  |  | 	return tooltip; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-11-02 11:31:01 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void BaseButton::set_button_group(const Ref<ButtonGroup> &p_group) { | 
					
						
							| 
									
										
										
										
											2017-01-10 01:04:31 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (button_group.is_valid()) { | 
					
						
							|  |  |  | 		button_group->buttons.erase(this); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	button_group = p_group; | 
					
						
							| 
									
										
										
										
											2017-01-10 01:04:31 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (button_group.is_valid()) { | 
					
						
							|  |  |  | 		button_group->buttons.insert(this); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	update(); //checkbox changes to radio if set a buttongroup
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Ref<ButtonGroup> BaseButton::get_button_group() const { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return button_group; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | void BaseButton::_bind_methods() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("_gui_input"), &BaseButton::_gui_input); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("_unhandled_input"), &BaseButton::_unhandled_input); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_pressed", "pressed"), &BaseButton::set_pressed); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("is_pressed"), &BaseButton::is_pressed); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("is_hovered"), &BaseButton::is_hovered); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_toggle_mode", "enabled"), &BaseButton::set_toggle_mode); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("is_toggle_mode"), &BaseButton::is_toggle_mode); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_disabled", "disabled"), &BaseButton::set_disabled); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("is_disabled"), &BaseButton::is_disabled); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_action_mode", "mode"), &BaseButton::set_action_mode); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_action_mode"), &BaseButton::get_action_mode); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_draw_mode"), &BaseButton::get_draw_mode); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_enabled_focus_mode", "mode"), &BaseButton::set_enabled_focus_mode); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_enabled_focus_mode"), &BaseButton::get_enabled_focus_mode); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-09 13:19:41 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_shortcut", "shortcut"), &BaseButton::set_shortcut); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_shortcut"), &BaseButton::get_shortcut); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-09 13:19:41 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_button_group", "button_group"), &BaseButton::set_button_group); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_button_group"), &BaseButton::get_button_group); | 
					
						
							| 
									
										
										
										
											2017-01-10 01:04:31 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-02 17:26:56 -03:00
										 |  |  | 	BIND_VMETHOD(MethodInfo("_pressed")); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND_VMETHOD(MethodInfo("_toggled", PropertyInfo(Variant::BOOL, "pressed"))); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ADD_SIGNAL(MethodInfo("pressed")); | 
					
						
							|  |  |  | 	ADD_SIGNAL(MethodInfo("button_up")); | 
					
						
							|  |  |  | 	ADD_SIGNAL(MethodInfo("button_down")); | 
					
						
							|  |  |  | 	ADD_SIGNAL(MethodInfo("toggled", PropertyInfo(Variant::BOOL, "pressed"))); | 
					
						
							|  |  |  | 	ADD_PROPERTYNZ(PropertyInfo(Variant::BOOL, "disabled"), "set_disabled", "is_disabled"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::BOOL, "toggle_mode"), "set_toggle_mode", "is_toggle_mode"); | 
					
						
							| 
									
										
										
										
											2017-08-05 22:52:58 +02:00
										 |  |  | 	ADD_PROPERTYNZ(PropertyInfo(Variant::BOOL, "pressed"), "set_pressed", "is_pressed"); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ADD_PROPERTYNO(PropertyInfo(Variant::INT, "action_mode", PROPERTY_HINT_ENUM, "Button Press,Button Release"), "set_action_mode", "get_action_mode"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::INT, "enabled_focus_mode", PROPERTY_HINT_ENUM, "None,Click,All"), "set_enabled_focus_mode", "get_enabled_focus_mode"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "shortcut", PROPERTY_HINT_RESOURCE_TYPE, "ShortCut"), "set_shortcut", "get_shortcut"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "group", PROPERTY_HINT_RESOURCE_TYPE, "ButtonGroup"), "set_button_group", "get_button_group"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-20 17:45:01 +02:00
										 |  |  | 	BIND_ENUM_CONSTANT(DRAW_NORMAL); | 
					
						
							|  |  |  | 	BIND_ENUM_CONSTANT(DRAW_PRESSED); | 
					
						
							|  |  |  | 	BIND_ENUM_CONSTANT(DRAW_HOVER); | 
					
						
							|  |  |  | 	BIND_ENUM_CONSTANT(DRAW_DISABLED); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-20 17:45:01 +02:00
										 |  |  | 	BIND_ENUM_CONSTANT(ACTION_MODE_BUTTON_PRESS); | 
					
						
							|  |  |  | 	BIND_ENUM_CONSTANT(ACTION_MODE_BUTTON_RELEASE); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | BaseButton::BaseButton() { | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	toggle_mode = false; | 
					
						
							|  |  |  | 	status.pressed = false; | 
					
						
							|  |  |  | 	status.press_attempt = false; | 
					
						
							|  |  |  | 	status.hovering = false; | 
					
						
							|  |  |  | 	status.pressing_inside = false; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	status.disabled = false; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	status.pressing_button = 0; | 
					
						
							|  |  |  | 	set_focus_mode(FOCUS_ALL); | 
					
						
							| 
									
										
										
										
											2016-04-12 17:25:17 +01:00
										 |  |  | 	enabled_focus_mode = FOCUS_ALL; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	action_mode = ACTION_MODE_BUTTON_RELEASE; | 
					
						
							| 
									
										
										
										
											2017-01-10 01:04:31 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (button_group.is_valid()) { | 
					
						
							|  |  |  | 		button_group->buttons.erase(this); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | BaseButton::~BaseButton() { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void ButtonGroup::get_buttons(List<BaseButton *> *r_buttons) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	for (Set<BaseButton *>::Element *E = buttons.front(); E; E = E->next()) { | 
					
						
							| 
									
										
										
										
											2017-01-10 01:04:31 -03:00
										 |  |  | 		r_buttons->push_back(E->get()); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | BaseButton *ButtonGroup::get_pressed_button() { | 
					
						
							| 
									
										
										
										
											2017-01-10 01:04:31 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	for (Set<BaseButton *>::Element *E = buttons.front(); E; E = E->next()) { | 
					
						
							| 
									
										
										
										
											2017-01-10 01:04:31 -03:00
										 |  |  | 		if (E->get()->is_pressed()) | 
					
						
							|  |  |  | 			return E->get(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ButtonGroup::_bind_methods() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-09 13:19:41 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("get_pressed_button"), &ButtonGroup::get_pressed_button); | 
					
						
							| 
									
										
										
										
											2017-01-10 01:04:31 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ButtonGroup::ButtonGroup() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	set_local_to_scene(true); | 
					
						
							|  |  |  | } |