PopupMenu.get_current_index() bound to ClassDB
This commit is contained in:
parent
804ee245a7
commit
35f30086de
|
@ -1079,6 +1079,11 @@ bool PopupMenu::is_item_shortcut_disabled(int p_idx) const {
|
||||||
return items[p_idx].shortcut_is_disabled;
|
return items[p_idx].shortcut_is_disabled;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int PopupMenu::get_current_index() const {
|
||||||
|
|
||||||
|
return mouse_over;
|
||||||
|
}
|
||||||
|
|
||||||
int PopupMenu::get_item_count() const {
|
int PopupMenu::get_item_count() const {
|
||||||
|
|
||||||
return items.size();
|
return items.size();
|
||||||
|
@ -1457,6 +1462,7 @@ void PopupMenu::_bind_methods() {
|
||||||
ClassDB::bind_method(D_METHOD("get_item_tooltip", "idx"), &PopupMenu::get_item_tooltip);
|
ClassDB::bind_method(D_METHOD("get_item_tooltip", "idx"), &PopupMenu::get_item_tooltip);
|
||||||
ClassDB::bind_method(D_METHOD("get_item_shortcut", "idx"), &PopupMenu::get_item_shortcut);
|
ClassDB::bind_method(D_METHOD("get_item_shortcut", "idx"), &PopupMenu::get_item_shortcut);
|
||||||
|
|
||||||
|
ClassDB::bind_method(D_METHOD("get_current_index"), &PopupMenu::get_current_index);
|
||||||
ClassDB::bind_method(D_METHOD("get_item_count"), &PopupMenu::get_item_count);
|
ClassDB::bind_method(D_METHOD("get_item_count"), &PopupMenu::get_item_count);
|
||||||
|
|
||||||
ClassDB::bind_method(D_METHOD("remove_item", "idx"), &PopupMenu::remove_item);
|
ClassDB::bind_method(D_METHOD("remove_item", "idx"), &PopupMenu::remove_item);
|
||||||
|
|
|
@ -178,6 +178,7 @@ public:
|
||||||
Ref<ShortCut> get_item_shortcut(int p_idx) const;
|
Ref<ShortCut> get_item_shortcut(int p_idx) const;
|
||||||
int get_item_state(int p_idx) const;
|
int get_item_state(int p_idx) const;
|
||||||
|
|
||||||
|
int get_current_index() const;
|
||||||
int get_item_count() const;
|
int get_item_count() const;
|
||||||
|
|
||||||
bool activate_item_by_event(const Ref<InputEvent> &p_event, bool p_for_global_only = false);
|
bool activate_item_by_event(const Ref<InputEvent> &p_event, bool p_for_global_only = false);
|
||||||
|
|
Loading…
Reference in New Issue