diff options
author | Juan Linietsky <reduzio@gmail.com> | 2024-01-29 14:36:10 +0100 |
---|---|---|
committer | Yuri Sizov <yuris@humnom.net> | 2024-01-29 15:15:38 +0100 |
commit | 000367893ad3594b8e9318b98bd96e1a6bf0f94a (patch) | |
tree | 203cf2c730614a002de03e6cda5ed22c15909bf2 /editor/editor_dock_manager.h | |
parent | fa48a51183567934984b381ad8ec281cb24d66ba (diff) | |
download | redot-engine-000367893ad3594b8e9318b98bd96e1a6bf0f94a.tar.gz |
Ability to move FileSystem dock to bottom
* Allows moving the filesystem dock to the bottom
* Added ability to drag resources across bottom docks
Diffstat (limited to 'editor/editor_dock_manager.h')
-rw-r--r-- | editor/editor_dock_manager.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/editor/editor_dock_manager.h b/editor/editor_dock_manager.h index e685fe1380..cc1a6634bc 100644 --- a/editor/editor_dock_manager.h +++ b/editor/editor_dock_manager.h @@ -77,17 +77,20 @@ private: Vector<DockSplitContainer *> hsplits; Vector<WindowWrapper *> floating_docks; + Vector<Control *> bottom_docks; TabContainer *dock_slot[DOCK_SLOT_MAX]; bool docks_visible = true; PopupPanel *dock_select_popup = nullptr; Button *dock_float = nullptr; + Button *dock_to_bottom = nullptr; Button *dock_tab_move_left = nullptr; Button *dock_tab_move_right = nullptr; Control *dock_select = nullptr; Rect2 dock_select_rect[DOCK_SLOT_MAX]; int dock_select_rect_over_idx = -1; int dock_popup_selected_idx = -1; + int dock_bottom_selected_idx = -1; void _dock_select_popup_theme_changed(); void _dock_popup_exit(); @@ -106,6 +109,8 @@ private: void _dock_make_float(Control *p_control, int p_slot_index, bool p_show_window = true); void _restore_floating_dock(const Dictionary &p_dock_dump, Control *p_wrapper, int p_slot_index); + void _dock_move_selected_to_bottom(); + protected: static void _bind_methods(); @@ -121,6 +126,8 @@ public: void load_docks_from_config(Ref<ConfigFile> p_layout, const String &p_section); void update_dock_slots_visibility(bool p_keep_selected_tabs = false); + void bottom_dock_show_placement_popup(const Rect2i &p_position, Control *p_dock); + void close_all_floating_docks(); void set_docks_visible(bool p_show); |