mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Improve Editor Layout dialog (clarity, editor sizing changes)
- include editor scale for changing custom minimum size - add placeholder text to clarify purpose - fix squashed itemlist - remove awkward spacing when dialog box longer than expected - scale editor layout dialog based on itemlist minimum size - fix scale initializing incorrectly if opening > Delete Layout before > Save Layout
This commit is contained in:
parent
c9c09ad608
commit
ddbb243a64
1 changed files with 6 additions and 0 deletions
|
@ -33,6 +33,7 @@
|
||||||
#include "core/io/config_file.h"
|
#include "core/io/config_file.h"
|
||||||
#include "core/object/class_db.h"
|
#include "core/object/class_db.h"
|
||||||
#include "core/os/keyboard.h"
|
#include "core/os/keyboard.h"
|
||||||
|
#include "editor/editor_scale.h"
|
||||||
#include "editor/editor_settings.h"
|
#include "editor/editor_settings.h"
|
||||||
#include "scene/gui/item_list.h"
|
#include "scene/gui/item_list.h"
|
||||||
#include "scene/gui/line_edit.h"
|
#include "scene/gui/line_edit.h"
|
||||||
|
@ -106,7 +107,10 @@ EditorLayoutsDialog::EditorLayoutsDialog() {
|
||||||
makevb->set_anchor_and_offset(SIDE_RIGHT, Control::ANCHOR_END, -5);
|
makevb->set_anchor_and_offset(SIDE_RIGHT, Control::ANCHOR_END, -5);
|
||||||
|
|
||||||
layout_names = memnew(ItemList);
|
layout_names = memnew(ItemList);
|
||||||
|
layout_names->set_auto_height(true);
|
||||||
|
makevb->add_margin_child(TTR("Select existing layout:"), layout_names);
|
||||||
makevb->add_child(layout_names);
|
makevb->add_child(layout_names);
|
||||||
|
layout_names->set_custom_minimum_size(Size2(300 * EDSCALE, 1));
|
||||||
layout_names->set_visible(true);
|
layout_names->set_visible(true);
|
||||||
layout_names->set_offset(SIDE_TOP, 5);
|
layout_names->set_offset(SIDE_TOP, 5);
|
||||||
layout_names->set_anchor_and_offset(SIDE_LEFT, Control::ANCHOR_BEGIN, 5);
|
layout_names->set_anchor_and_offset(SIDE_LEFT, Control::ANCHOR_BEGIN, 5);
|
||||||
|
@ -116,8 +120,10 @@ EditorLayoutsDialog::EditorLayoutsDialog() {
|
||||||
layout_names->set_allow_rmb_select(true);
|
layout_names->set_allow_rmb_select(true);
|
||||||
|
|
||||||
name = memnew(LineEdit);
|
name = memnew(LineEdit);
|
||||||
|
name->set_placeholder("Or enter new layout name");
|
||||||
makevb->add_child(name);
|
makevb->add_child(name);
|
||||||
name->set_offset(SIDE_TOP, 5);
|
name->set_offset(SIDE_TOP, 5);
|
||||||
|
name->set_custom_minimum_size(Size2(300 * EDSCALE, 1));
|
||||||
name->set_anchor_and_offset(SIDE_LEFT, Control::ANCHOR_BEGIN, 5);
|
name->set_anchor_and_offset(SIDE_LEFT, Control::ANCHOR_BEGIN, 5);
|
||||||
name->set_anchor_and_offset(SIDE_RIGHT, Control::ANCHOR_END, -5);
|
name->set_anchor_and_offset(SIDE_RIGHT, Control::ANCHOR_END, -5);
|
||||||
name->connect("gui_input", callable_mp(this, &EditorLayoutsDialog::_line_gui_input));
|
name->connect("gui_input", callable_mp(this, &EditorLayoutsDialog::_line_gui_input));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue