mirror of
https://github.com/godotengine/godot.git
synced 2025-12-07 22:00:10 +00:00
Add switch on hover to TabBar
This commit is contained in:
parent
c7b1767560
commit
682b0f7c54
12 changed files with 110 additions and 8 deletions
|
|
@ -1025,6 +1025,14 @@ Popup *TabContainer::get_popup() const {
|
|||
return nullptr;
|
||||
}
|
||||
|
||||
void TabContainer::set_switch_on_drag_hover(bool p_enabled) {
|
||||
tab_bar->set_switch_on_drag_hover(p_enabled);
|
||||
}
|
||||
|
||||
bool TabContainer::get_switch_on_drag_hover() const {
|
||||
return tab_bar->get_switch_on_drag_hover();
|
||||
}
|
||||
|
||||
void TabContainer::set_drag_to_rearrange_enabled(bool p_enabled) {
|
||||
drag_to_rearrange_enabled = p_enabled;
|
||||
}
|
||||
|
|
@ -1102,6 +1110,8 @@ void TabContainer::_bind_methods() {
|
|||
ClassDB::bind_method(D_METHOD("get_tab_idx_from_control", "control"), &TabContainer::get_tab_idx_from_control);
|
||||
ClassDB::bind_method(D_METHOD("set_popup", "popup"), &TabContainer::set_popup);
|
||||
ClassDB::bind_method(D_METHOD("get_popup"), &TabContainer::get_popup);
|
||||
ClassDB::bind_method(D_METHOD("set_switch_on_drag_hover", "enabled"), &TabContainer::set_switch_on_drag_hover);
|
||||
ClassDB::bind_method(D_METHOD("get_switch_on_drag_hover"), &TabContainer::get_switch_on_drag_hover);
|
||||
ClassDB::bind_method(D_METHOD("set_drag_to_rearrange_enabled", "enabled"), &TabContainer::set_drag_to_rearrange_enabled);
|
||||
ClassDB::bind_method(D_METHOD("get_drag_to_rearrange_enabled"), &TabContainer::get_drag_to_rearrange_enabled);
|
||||
ClassDB::bind_method(D_METHOD("set_tabs_rearrange_group", "group_id"), &TabContainer::set_tabs_rearrange_group);
|
||||
|
|
@ -1127,6 +1137,7 @@ void TabContainer::_bind_methods() {
|
|||
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "clip_tabs"), "set_clip_tabs", "get_clip_tabs");
|
||||
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "tabs_visible"), "set_tabs_visible", "are_tabs_visible");
|
||||
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "all_tabs_in_front"), "set_all_tabs_in_front", "is_all_tabs_in_front");
|
||||
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "switch_on_drag_hover"), "set_switch_on_drag_hover", "get_switch_on_drag_hover");
|
||||
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "drag_to_rearrange_enabled"), "set_drag_to_rearrange_enabled", "get_drag_to_rearrange_enabled");
|
||||
ADD_PROPERTY(PropertyInfo(Variant::INT, "tabs_rearrange_group"), "set_tabs_rearrange_group", "get_tabs_rearrange_group");
|
||||
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "use_hidden_tabs_for_min_size"), "set_use_hidden_tabs_for_min_size", "get_use_hidden_tabs_for_min_size");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue