summaryrefslogtreecommitdiffstats
path: root/editor/editor_node.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2020-04-03 17:39:30 +0200
committerGitHub <noreply@github.com>2020-04-03 17:39:30 +0200
commit4a0e99f19746d726a2d9282cc52879c95c5c4ae3 (patch)
tree28e380c5fbd701120624b30c4331e07a6c8a91db /editor/editor_node.cpp
parentaeb95ef006109cbebc1a7d1e15f09e509c864583 (diff)
parent805ee0ee6cc582979013e56689a3b818d1e0d5d6 (diff)
downloadredot-engine-4a0e99f19746d726a2d9282cc52879c95c5c4ae3.tar.gz
Merge pull request #37363 from YeldhamDev/floating_dock_enhancements
General enhancements to floating docks
Diffstat (limited to 'editor/editor_node.cpp')
-rw-r--r--editor/editor_node.cpp20
1 files changed, 16 insertions, 4 deletions
diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp
index aeb3737120..205d5f2944 100644
--- a/editor/editor_node.cpp
+++ b/editor/editor_node.cpp
@@ -3953,11 +3953,14 @@ void EditorNode::_copy_warning(const String &p_str) {
}
void EditorNode::_dock_floating_close_request(Control *p_control) {
- Window *window = (Window *)p_control->get_parent();
+ // Through the MarginContainer to the Window.
+ Window *window = (Window *)p_control->get_parent()->get_parent();
int window_slot = window->get_meta("dock_slot");
- window->remove_child(p_control);
+ p_control->get_parent()->remove_child(p_control);
dock_slot[window_slot]->add_child(p_control);
+ dock_slot[window_slot]->move_child(p_control, MIN((int)window->get_meta("dock_index"), dock_slot[window_slot]->get_child_count()));
+ dock_slot[window_slot]->set_current_tab(window->get_meta("dock_index"));
window->queue_delete();
@@ -3974,6 +3977,7 @@ void EditorNode::_dock_make_float() {
Point2 dock_screen_pos = dock->get_global_position() + get_tree()->get_root()->get_position();
print_line("dock pos: " + dock->get_global_position() + " window pos: " + get_tree()->get_root()->get_position());
+ int dock_index = dock->get_index();
dock_slot[dock_popup_selected]->remove_child(dock);
Window *window = memnew(Window);
@@ -3982,14 +3986,22 @@ void EditorNode::_dock_make_float() {
p->set_mode(Panel::MODE_FOREGROUND);
p->set_anchors_and_margins_preset(Control::PRESET_WIDE);
window->add_child(p);
+ MarginContainer *margin = memnew(MarginContainer);
+ margin->set_anchors_and_margins_preset(Control::PRESET_WIDE);
+ margin->add_theme_constant_override("margin_right", 4 * EDSCALE);
+ margin->add_theme_constant_override("margin_top", 4 * EDSCALE);
+ margin->add_theme_constant_override("margin_left", 4 * EDSCALE);
+ margin->add_theme_constant_override("margin_bottom", 4 * EDSCALE);
+ window->add_child(margin);
dock->set_anchors_and_margins_preset(Control::PRESET_WIDE);
- window->add_child(dock);
+ margin->add_child(dock);
window->set_wrap_controls(true);
window->set_size(dock_size);
window->set_position(dock_screen_pos);
window->set_transient(true);
window->connect("close_requested", callable_mp(this, &EditorNode::_dock_floating_close_request), varray(dock));
window->set_meta("dock_slot", dock_popup_selected);
+ window->set_meta("dock_index", dock_index);
gui_base->add_child(window);
dock_select_popup->hide();
@@ -5914,7 +5926,7 @@ EditorNode::EditorNode() {
dock_vb->add_child(dock_select);
dock_float = memnew(Button);
- dock_float->set_text("Make Floating");
+ dock_float->set_text(TTR("Make Floating"));
dock_float->set_focus_mode(Control::FOCUS_NONE);
dock_float->set_h_size_flags(Control::SIZE_SHRINK_CENTER);
dock_float->connect("pressed", callable_mp(this, &EditorNode::_dock_make_float));