Fixes and modifications for some dialogs.

This commit is contained in:
Michael Alexsander Silva Dias 2017-12-21 13:00:25 -02:00
parent 1fa9aac3e4
commit e86454fb38
3 changed files with 35 additions and 23 deletions

View file

@ -267,7 +267,6 @@ void CreateDialog::_update_search() {
if (EditorNode::get_editor_data().get_custom_types().has(type) && ClassDB::is_parent_class(type, base_type)) { if (EditorNode::get_editor_data().get_custom_types().has(type) && ClassDB::is_parent_class(type, base_type)) {
//there are custom types based on this... cool. //there are custom types based on this... cool.
//print_line("there are custom types");
const Vector<EditorData::CustomType> &ct = EditorNode::get_editor_data().get_custom_types()[type]; const Vector<EditorData::CustomType> &ct = EditorNode::get_editor_data().get_custom_types()[type];
for (int i = 0; i < ct.size(); i++) { for (int i = 0; i < ct.size(); i++) {
@ -630,31 +629,44 @@ CreateDialog::CreateDialog() {
set_resizable(true); set_resizable(true);
HSplitContainer *hbc = memnew(HSplitContainer); HSplitContainer *hsc = memnew(HSplitContainer);
add_child(hsc);
add_child(hbc); VSplitContainer *vsc = memnew(VSplitContainer);
hsc->add_child(vsc);
VBoxContainer *lvbc = memnew(VBoxContainer); {
hbc->add_child(lvbc); VBoxContainer *lvbc = memnew(VBoxContainer);
lvbc->set_custom_minimum_size(Size2(150, 0) * EDSCALE); vsc->add_child(lvbc);
lvbc->set_custom_minimum_size(Size2(150, 100) * EDSCALE);
lvbc->set_v_size_flags(SIZE_EXPAND_FILL);
favorites = memnew(Tree); favorites = memnew(Tree);
lvbc->add_margin_child(TTR("Favorites:"), favorites, true); lvbc->add_margin_child(TTR("Favorites:"), favorites, true);
favorites->set_hide_root(true); favorites->set_hide_root(true);
favorites->set_hide_folding(true); favorites->set_hide_folding(true);
favorites->connect("cell_selected", this, "_favorite_selected"); favorites->connect("cell_selected", this, "_favorite_selected");
favorites->connect("item_activated", this, "_favorite_activated"); favorites->connect("item_activated", this, "_favorite_activated");
favorites->set_drag_forwarding(this); favorites->set_drag_forwarding(this);
}
recent = memnew(Tree); {
lvbc->add_margin_child(TTR("Recent:"), recent, true); VBoxContainer *lvbc = memnew(VBoxContainer);
recent->set_hide_root(true); vsc->add_child(lvbc);
recent->set_hide_folding(true); lvbc->set_custom_minimum_size(Size2(150, 100) * EDSCALE);
recent->connect("cell_selected", this, "_history_selected"); lvbc->set_v_size_flags(SIZE_EXPAND_FILL);
recent->connect("item_activated", this, "_history_activated");
recent = memnew(Tree);
lvbc->add_margin_child(TTR("Recent:"), recent, true);
recent->set_hide_root(true);
recent->set_hide_folding(true);
recent->connect("cell_selected", this, "_history_selected");
recent->connect("item_activated", this, "_history_activated");
}
VBoxContainer *vbc = memnew(VBoxContainer); VBoxContainer *vbc = memnew(VBoxContainer);
hbc->add_child(vbc); hsc->add_child(vbc);
vbc->set_custom_minimum_size(Size2(300, 0) * EDSCALE);
vbc->set_h_size_flags(SIZE_EXPAND_FILL); vbc->set_h_size_flags(SIZE_EXPAND_FILL);
HBoxContainer *search_hb = memnew(HBoxContainer); HBoxContainer *search_hb = memnew(HBoxContainer);
search_box = memnew(LineEdit); search_box = memnew(LineEdit);
@ -676,7 +688,6 @@ CreateDialog::CreateDialog() {
set_hide_on_ok(false); set_hide_on_ok(false);
search_options->connect("item_activated", this, "_confirmed"); search_options->connect("item_activated", this, "_confirmed");
search_options->connect("cell_selected", this, "_item_selected"); search_options->connect("cell_selected", this, "_item_selected");
//search_options->set_hide_root(true);
base_type = "Object"; base_type = "Object";
preferred_search_result_type = ""; preferred_search_result_type = "";

View file

@ -1460,7 +1460,6 @@ void ProjectSettingsEditor::_update_translations() {
t2->set_editable(1, true); t2->set_editable(1, true);
t2->set_metadata(1, path); t2->set_metadata(1, path);
int idx = langs.find(locale); int idx = langs.find(locale);
//print_line("find " + locale + " at " + itos(idx));
if (idx < 0) if (idx < 0)
idx = 0; idx = 0;
@ -1709,7 +1708,6 @@ ProjectSettingsEditor::ProjectSettingsEditor(EditorData *p_data) {
add = memnew(Button); add = memnew(Button);
hbc->add_child(add); hbc->add_child(add);
add->set_custom_minimum_size(Size2(150, 0) * EDSCALE);
add->set_text(TTR("Add")); add->set_text(TTR("Add"));
add->set_disabled(true); add->set_disabled(true);
add->connect("pressed", this, "_action_add"); add->connect("pressed", this, "_action_add");

View file

@ -4591,6 +4591,8 @@ SectionedPropertyEditor::SectionedPropertyEditor() {
search_box = NULL; search_box = NULL;
add_constant_override("autohide", 1); // Fixes the dragger always showing up
VBoxContainer *left_vb = memnew(VBoxContainer); VBoxContainer *left_vb = memnew(VBoxContainer);
left_vb->set_custom_minimum_size(Size2(170, 0) * EDSCALE); left_vb->set_custom_minimum_size(Size2(170, 0) * EDSCALE);
add_child(left_vb); add_child(left_vb);
@ -4602,6 +4604,7 @@ SectionedPropertyEditor::SectionedPropertyEditor() {
left_vb->add_child(sections, true); left_vb->add_child(sections, true);
VBoxContainer *right_vb = memnew(VBoxContainer); VBoxContainer *right_vb = memnew(VBoxContainer);
right_vb->set_custom_minimum_size(Size2(300, 0) * EDSCALE);
right_vb->set_h_size_flags(SIZE_EXPAND_FILL); right_vb->set_h_size_flags(SIZE_EXPAND_FILL);
add_child(right_vb); add_child(right_vb);