Files
engine/editor/editor_dir_dialog.cpp
T

210 lines
7.3 KiB
C++
Raw Normal View History

2014-02-09 22:10:30 -03:00
/*************************************************************************/
/* editor_dir_dialog.cpp */
/*************************************************************************/
/* This file is part of: */
/* GODOT ENGINE */
/* https://godotengine.org */
2014-02-09 22:10:30 -03:00
/*************************************************************************/
2022-01-03 21:27:34 +01:00
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
2014-02-09 22:10:30 -03:00
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */
/* "Software"), to deal in the Software without restriction, including */
/* without limitation the rights to use, copy, modify, merge, publish, */
/* distribute, sublicense, and/or sell copies of the Software, and to */
/* permit persons to whom the Software is furnished to do so, subject to */
/* the following conditions: */
/* */
/* The above copyright notice and this permission notice shall be */
/* included in all copies or substantial portions of the Software. */
/* */
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
/*************************************************************************/
2014-02-09 22:10:30 -03:00
#include "editor_dir_dialog.h"
#include "core/os/keyboard.h"
#include "core/os/os.h"
#include "editor/editor_file_system.h"
2017-03-05 16:44:50 +01:00
#include "editor/editor_settings.h"
#include "editor_scale.h"
#include "servers/display_server.h"
void EditorDirDialog::_update_dir(TreeItem *p_item, EditorFileSystemDirectory *p_dir, const String &p_select_path) {
2017-03-05 16:44:50 +01:00
updating = true;
2015-03-21 18:33:32 +01:00
String path = p_dir->get_path();
2015-03-21 18:33:32 +01:00
p_item->set_metadata(0, p_dir->get_path());
2021-07-17 18:22:52 -03:00
p_item->set_icon(0, tree->get_theme_icon(SNAME("Folder"), SNAME("EditorIcons")));
2021-09-27 19:10:20 +01:00
p_item->set_icon_modulate(0, tree->get_theme_color(SNAME("folder_icon_modulate"), SNAME("FileDialog")));
2015-03-21 18:33:32 +01:00
if (!p_item->get_parent()) {
p_item->set_text(0, "res://");
} else {
if (!opened_paths.has(path) && (p_select_path.is_empty() || !p_select_path.begins_with(path))) {
p_item->set_collapsed(true);
2014-02-09 22:10:30 -03:00
}
p_item->set_text(0, p_dir->get_name());
2014-02-09 22:10:30 -03:00
}
//this should be handled by EditorFileSystem already
//bool show_hidden = EditorSettings::get_singleton()->get("filesystem/file_dialog/show_hidden_files");
updating = false;
for (int i = 0; i < p_dir->get_subdir_count(); i++) {
2015-06-06 09:44:38 -03:00
TreeItem *ti = tree->create_item(p_item);
_update_dir(ti, p_dir->get_subdir(i));
2015-06-06 09:44:38 -03:00
}
2014-02-09 22:10:30 -03:00
}
void EditorDirDialog::reload(const String &p_path) {
if (!is_visible()) {
2017-03-05 16:44:50 +01:00
must_reload = true;
return;
}
2014-02-09 22:10:30 -03:00
tree->clear();
TreeItem *root = tree->create_item();
_update_dir(root, EditorFileSystem::get_singleton()->get_filesystem(), p_path);
2014-02-09 22:10:30 -03:00
_item_collapsed(root);
2017-03-05 16:44:50 +01:00
must_reload = false;
2014-02-09 22:10:30 -03:00
}
void EditorDirDialog::_notification(int p_what) {
2017-03-05 16:44:50 +01:00
if (p_what == NOTIFICATION_ENTER_TREE) {
EditorFileSystem::get_singleton()->connect("filesystem_changed", callable_mp(this, &EditorDirDialog::reload), make_binds(""));
2014-02-09 22:10:30 -03:00
reload();
if (!tree->is_connected("item_collapsed", callable_mp(this, &EditorDirDialog::_item_collapsed))) {
tree->connect("item_collapsed", callable_mp(this, &EditorDirDialog::_item_collapsed), varray(), CONNECT_DEFERRED);
}
if (!EditorFileSystem::get_singleton()->is_connected("filesystem_changed", callable_mp(this, &EditorDirDialog::reload))) {
EditorFileSystem::get_singleton()->connect("filesystem_changed", callable_mp(this, &EditorDirDialog::reload), make_binds(""));
}
2014-02-09 22:10:30 -03:00
}
if (p_what == NOTIFICATION_EXIT_TREE) {
if (EditorFileSystem::get_singleton()->is_connected("filesystem_changed", callable_mp(this, &EditorDirDialog::reload))) {
EditorFileSystem::get_singleton()->disconnect("filesystem_changed", callable_mp(this, &EditorDirDialog::reload));
2019-10-29 00:40:36 +01:00
}
}
2017-03-05 16:44:50 +01:00
if (p_what == NOTIFICATION_VISIBILITY_CHANGED) {
if (must_reload && is_visible()) {
reload();
}
}
2014-02-09 22:10:30 -03:00
}
2017-08-12 12:52:50 -04:00
void EditorDirDialog::_item_collapsed(Object *p_item) {
TreeItem *item = Object::cast_to<TreeItem>(p_item);
2014-02-09 22:10:30 -03:00
if (updating) {
2014-02-09 22:10:30 -03:00
return;
}
2014-02-09 22:10:30 -03:00
if (item->is_collapsed()) {
opened_paths.erase(item->get_metadata(0));
} else {
opened_paths.insert(item->get_metadata(0));
}
2014-02-09 22:10:30 -03:00
}
2020-02-27 22:49:16 +01:00
void EditorDirDialog::_item_activated() {
_ok_pressed(); // From AcceptDialog.
}
2014-02-09 22:10:30 -03:00
void EditorDirDialog::ok_pressed() {
2017-03-05 16:44:50 +01:00
TreeItem *ti = tree->get_selected();
if (!ti) {
2014-02-09 22:10:30 -03:00
return;
}
2014-02-09 22:10:30 -03:00
String dir = ti->get_metadata(0);
2021-07-17 18:22:52 -03:00
emit_signal(SNAME("dir_selected"), dir);
2014-02-09 22:10:30 -03:00
hide();
}
void EditorDirDialog::_make_dir() {
2017-03-05 16:44:50 +01:00
TreeItem *ti = tree->get_selected();
2016-06-30 18:23:39 -03:00
if (!ti) {
mkdirerr->set_text(TTR("Please select a base directory first."));
mkdirerr->popup_centered();
2014-02-09 22:10:30 -03:00
return;
2016-06-30 18:23:39 -03:00
}
2014-02-09 22:10:30 -03:00
makedialog->popup_centered(Size2(250, 80));
2016-06-30 18:23:39 -03:00
makedirname->grab_focus();
2014-02-09 22:10:30 -03:00
}
void EditorDirDialog::_make_dir_confirm() {
2017-03-05 16:44:50 +01:00
TreeItem *ti = tree->get_selected();
if (!ti) {
2014-02-09 22:10:30 -03:00
return;
}
2014-02-09 22:10:30 -03:00
String dir = ti->get_metadata(0);
2016-06-30 18:23:39 -03:00
DirAccessRef d = DirAccess::open(dir);
2019-09-25 10:28:50 +02:00
ERR_FAIL_COND_MSG(!d, "Cannot open directory '" + dir + "'.");
2014-02-09 22:10:30 -03:00
Error err = d->make_dir(makedirname->get_text());
2016-06-30 18:23:39 -03:00
2017-03-05 16:44:50 +01:00
if (err != OK) {
mkdirerr->popup_centered(Size2(250, 80) * EDSCALE);
2014-02-09 22:10:30 -03:00
} else {
opened_paths.insert(dir);
//reload(dir.plus_file(makedirname->get_text()));
EditorFileSystem::get_singleton()->scan_changes(); //we created a dir, so rescan changes
2014-02-09 22:10:30 -03:00
}
makedirname->set_text(""); // reset label
2014-02-09 22:10:30 -03:00
}
void EditorDirDialog::_bind_methods() {
2017-03-05 16:44:50 +01:00
ADD_SIGNAL(MethodInfo("dir_selected", PropertyInfo(Variant::STRING, "dir")));
2014-02-09 22:10:30 -03:00
}
EditorDirDialog::EditorDirDialog() {
2017-03-05 16:44:50 +01:00
updating = false;
2015-12-14 08:43:56 -03:00
set_title(TTR("Choose a Directory"));
2015-12-14 08:43:56 -03:00
set_hide_on_ok(false);
2017-03-05 16:44:50 +01:00
tree = memnew(Tree);
2014-02-09 22:10:30 -03:00
add_child(tree);
2020-02-27 22:49:16 +01:00
tree->connect("item_activated", callable_mp(this, &EditorDirDialog::_item_activated));
2014-02-09 22:10:30 -03:00
2020-07-08 18:02:38 -05:00
makedir = add_button(TTR("Create Folder"), DisplayServer::get_singleton()->get_swap_cancel_ok(), "makedir");
makedir->connect("pressed", callable_mp(this, &EditorDirDialog::_make_dir));
2014-02-09 22:10:30 -03:00
2017-03-05 16:44:50 +01:00
makedialog = memnew(ConfirmationDialog);
makedialog->set_title(TTR("Create Folder"));
2015-12-14 08:43:56 -03:00
add_child(makedialog);
2017-03-05 16:44:50 +01:00
VBoxContainer *makevb = memnew(VBoxContainer);
2014-02-09 22:10:30 -03:00
makedialog->add_child(makevb);
2017-01-14 12:26:56 +01:00
//makedialog->set_child_rect(makevb);
2015-12-14 08:43:56 -03:00
2017-03-05 16:44:50 +01:00
makedirname = memnew(LineEdit);
makevb->add_margin_child(TTR("Name:"), makedirname);
2014-02-09 22:10:30 -03:00
makedialog->register_text_enter(makedirname);
makedialog->connect("confirmed", callable_mp(this, &EditorDirDialog::_make_dir_confirm));
2015-12-14 08:43:56 -03:00
2017-03-05 16:44:50 +01:00
mkdirerr = memnew(AcceptDialog);
mkdirerr->set_text(TTR("Could not create folder."));
2014-02-09 22:10:30 -03:00
add_child(mkdirerr);
get_ok_button()->set_text(TTR("Choose"));
2015-12-14 08:43:56 -03:00
2017-03-05 16:44:50 +01:00
must_reload = false;
2014-02-09 22:10:30 -03:00
}