diff options
author | Mounir Tohami <53877170+WhalesState@users.noreply.github.com> | 2023-08-03 08:38:20 +0000 |
---|---|---|
committer | Mounir Tohami <53877170+WhalesState@users.noreply.github.com> | 2023-08-03 08:38:20 +0000 |
commit | 2cec27a3f1630a12dab94c1186fbac5620ccd12a (patch) | |
tree | 199d90e17e8f483a675249411141ab14eed022df /scene/gui/option_button.cpp | |
parent | 237bd0a615df8a0e57bc3d299894abece7b43a0c (diff) | |
download | redot-engine-2cec27a3f1630a12dab94c1186fbac5620ccd12a.tar.gz |
Add shortcut handling to OptionButton
Diffstat (limited to 'scene/gui/option_button.cpp')
-rw-r--r-- | scene/gui/option_button.cpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/scene/gui/option_button.cpp b/scene/gui/option_button.cpp index 8138a66f64..e05093b11c 100644 --- a/scene/gui/option_button.cpp +++ b/scene/gui/option_button.cpp @@ -30,10 +30,26 @@ #include "option_button.h" +#include "core/os/keyboard.h" #include "core/string/print_string.h" static const int NONE_SELECTED = -1; +void OptionButton::shortcut_input(const Ref<InputEvent> &p_event) { + ERR_FAIL_COND(p_event.is_null()); + + if (disable_shortcuts) { + return; + } + + if (p_event->is_pressed() && !p_event->is_echo() && !is_disabled() && is_visible_in_tree() && popup->activate_item_by_event(p_event, false)) { + accept_event(); + return; + } + + Button::shortcut_input(p_event); +} + Size2 OptionButton::get_minimum_size() const { Size2 minsize; if (fit_to_longest_item) { @@ -573,6 +589,7 @@ void OptionButton::_bind_methods() { ClassDB::bind_method(D_METHOD("is_fit_to_longest_item"), &OptionButton::is_fit_to_longest_item); ClassDB::bind_method(D_METHOD("set_allow_reselect", "allow"), &OptionButton::set_allow_reselect); ClassDB::bind_method(D_METHOD("get_allow_reselect"), &OptionButton::get_allow_reselect); + ClassDB::bind_method(D_METHOD("set_disable_shortcuts", "disabled"), &OptionButton::set_disable_shortcuts); // "selected" property must come after "item_count", otherwise GH-10213 occurs. ADD_ARRAY_COUNT("Items", "item_count", "set_item_count", "get_item_count", "popup/item_"); @@ -583,9 +600,14 @@ void OptionButton::_bind_methods() { ADD_SIGNAL(MethodInfo("item_focused", PropertyInfo(Variant::INT, "index"))); } +void OptionButton::set_disable_shortcuts(bool p_disabled) { + disable_shortcuts = p_disabled; +} + OptionButton::OptionButton(const String &p_text) : Button(p_text) { set_toggle_mode(true); + set_process_shortcut_input(true); set_text_alignment(HORIZONTAL_ALIGNMENT_LEFT); set_action_mode(ACTION_MODE_BUTTON_PRESS); |