Add button_down and button_up signals

This commit is contained in:
George Marques 2016-06-17 20:21:14 -03:00
parent ec49f41e19
commit 8a1b1ab6d6
No known key found for this signature in database
GPG key ID: 046BD46A3201E43D

View file

@ -55,6 +55,8 @@ void BaseButton::_input_event(InputEvent p_event) {
if (b.pressed) {
emit_signal("button_down");
if (!toggle_mode) { //mouse press attempt
status.press_attempt=true;
@ -86,6 +88,8 @@ void BaseButton::_input_event(InputEvent p_event) {
} else {
emit_signal("button_up");
if (status.press_attempt && status.pressing_inside) {
// released();
emit_signal("released");
@ -100,9 +104,11 @@ void BaseButton::_input_event(InputEvent p_event) {
status.press_attempt=true;
status.pressing_inside=true;
emit_signal("button_down");
} else {
emit_signal("button_up");
if (status.press_attempt &&status.pressing_inside) {
@ -173,6 +179,7 @@ void BaseButton::_input_event(InputEvent p_event) {
status.pressing_button++;
status.press_attempt=true;
status.pressing_inside=true;
emit_signal("button_down");
} else if (status.press_attempt) {
@ -185,6 +192,8 @@ void BaseButton::_input_event(InputEvent p_event) {
status.press_attempt=false;
status.pressing_inside=false;
emit_signal("button_up");
if (!toggle_mode) { //mouse press attempt
pressed();
@ -467,6 +476,8 @@ void BaseButton::_bind_methods() {
ADD_SIGNAL( MethodInfo("pressed" ) );
ADD_SIGNAL( MethodInfo("released" ) );
ADD_SIGNAL( MethodInfo("button_up") );
ADD_SIGNAL( MethodInfo("button_down") );
ADD_SIGNAL( MethodInfo("toggled", PropertyInfo( Variant::BOOL,"pressed") ) );
ADD_PROPERTYNZ( PropertyInfo( Variant::BOOL, "disabled"), _SCS("set_disabled"), _SCS("is_disabled"));
ADD_PROPERTY( PropertyInfo( Variant::BOOL, "toggle_mode"), _SCS("set_toggle_mode"), _SCS("is_toggle_mode"));