2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
2017-01-16 07:04:19 +00:00
|
|
|
/* filesystem_dock.h */
|
2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 12:16:55 +00:00
|
|
|
/* https://godotengine.org */
|
2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
2018-01-01 13:40:08 +00:00
|
|
|
/* Copyright (c) 2007-2018 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2018 Godot Engine contributors (cf. AUTHORS.md) */
|
2014-02-10 01:10:30 +00: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. */
|
|
|
|
/*************************************************************************/
|
2018-01-04 23:50:27 +00:00
|
|
|
|
2016-07-21 13:34:57 +00:00
|
|
|
#ifndef FILESYSTEM_DOCK_H
|
|
|
|
#define FILESYSTEM_DOCK_H
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
#include "scene/gui/box_container.h"
|
2014-02-10 01:10:30 +00:00
|
|
|
#include "scene/gui/control.h"
|
2017-10-01 21:59:27 +00:00
|
|
|
#include "scene/gui/dialogs.h"
|
2017-03-05 15:44:50 +00:00
|
|
|
#include "scene/gui/item_list.h"
|
2014-02-10 01:10:30 +00:00
|
|
|
#include "scene/gui/label.h"
|
2015-08-23 23:15:56 +00:00
|
|
|
#include "scene/gui/menu_button.h"
|
2017-03-05 15:44:50 +00:00
|
|
|
#include "scene/gui/option_button.h"
|
2015-08-23 23:15:56 +00:00
|
|
|
#include "scene/gui/progress_bar.h"
|
2016-05-15 23:25:51 +00:00
|
|
|
#include "scene/gui/split_container.h"
|
2017-03-05 15:44:50 +00:00
|
|
|
#include "scene/gui/tool_button.h"
|
|
|
|
#include "scene/gui/tree.h"
|
|
|
|
#include "scene/main/timer.h"
|
2015-08-23 23:15:56 +00:00
|
|
|
|
2018-09-11 16:13:45 +00:00
|
|
|
#include "core/os/dir_access.h"
|
|
|
|
#include "core/os/thread.h"
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2018-07-22 15:53:40 +00:00
|
|
|
#include "create_dialog.h"
|
|
|
|
|
2015-08-23 23:15:56 +00:00
|
|
|
#include "dependency_editor.h"
|
2017-03-05 15:44:50 +00:00
|
|
|
#include "editor_dir_dialog.h"
|
|
|
|
#include "editor_file_system.h"
|
2018-04-25 07:18:10 +00:00
|
|
|
#include "script_create_dialog.h"
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
class EditorNode;
|
|
|
|
|
2016-07-21 13:34:57 +00:00
|
|
|
class FileSystemDock : public VBoxContainer {
|
2017-03-05 15:44:50 +00:00
|
|
|
GDCLASS(FileSystemDock, VBoxContainer);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-08-16 16:25:42 +00:00
|
|
|
public:
|
2018-08-13 17:05:31 +00:00
|
|
|
enum FileListDisplayMode {
|
|
|
|
FILE_LIST_DISPLAY_THUMBNAILS,
|
|
|
|
FILE_LIST_DISPLAY_LIST
|
2016-08-16 16:25:42 +00:00
|
|
|
};
|
2017-03-05 15:44:50 +00:00
|
|
|
|
2016-08-16 16:25:42 +00:00
|
|
|
private:
|
2018-09-13 15:35:44 +00:00
|
|
|
enum DisplayModeSetting {
|
|
|
|
DISPLAY_MODE_SETTING_TREE_ONLY,
|
|
|
|
DISPLAY_MODE_SETTING_SPLIT,
|
|
|
|
};
|
|
|
|
|
2018-08-13 17:05:31 +00:00
|
|
|
enum DisplayMode {
|
2018-09-13 15:35:44 +00:00
|
|
|
DISPLAY_MODE_TREE_ONLY,
|
|
|
|
DISPLAY_MODE_SPLIT,
|
2018-08-13 17:05:31 +00:00
|
|
|
};
|
|
|
|
|
2015-08-23 23:15:56 +00:00
|
|
|
enum FileMenu {
|
2016-05-15 23:25:51 +00:00
|
|
|
FILE_OPEN,
|
|
|
|
FILE_INSTANCE,
|
2018-09-13 16:11:05 +00:00
|
|
|
FILE_ADD_FAVORITE,
|
|
|
|
FILE_REMOVE_FAVORITE,
|
2015-08-23 23:15:56 +00:00
|
|
|
FILE_DEPENDENCIES,
|
|
|
|
FILE_OWNERS,
|
|
|
|
FILE_MOVE,
|
2017-10-01 21:59:27 +00:00
|
|
|
FILE_RENAME,
|
2015-08-23 23:15:56 +00:00
|
|
|
FILE_REMOVE,
|
2017-12-01 11:13:50 +00:00
|
|
|
FILE_DUPLICATE,
|
2015-08-23 23:15:56 +00:00
|
|
|
FILE_REIMPORT,
|
2016-05-18 07:37:59 +00:00
|
|
|
FILE_INFO,
|
2017-10-01 22:33:43 +00:00
|
|
|
FILE_NEW_FOLDER,
|
2018-04-25 07:18:10 +00:00
|
|
|
FILE_NEW_SCRIPT,
|
2016-06-06 15:20:03 +00:00
|
|
|
FILE_SHOW_IN_EXPLORER,
|
2018-07-22 15:53:40 +00:00
|
|
|
FILE_COPY_PATH,
|
2018-08-23 15:00:30 +00:00
|
|
|
FILE_NEW_RESOURCE,
|
2017-01-10 12:19:59 +00:00
|
|
|
FOLDER_EXPAND_ALL,
|
2017-04-24 15:54:51 +00:00
|
|
|
FOLDER_COLLAPSE_ALL,
|
2017-01-10 12:19:59 +00:00
|
|
|
};
|
|
|
|
|
2015-08-23 23:15:56 +00:00
|
|
|
VBoxContainer *scanning_vb;
|
|
|
|
ProgressBar *scanning_progress;
|
2016-05-15 23:25:51 +00:00
|
|
|
VSplitContainer *split_box;
|
|
|
|
VBoxContainer *file_list_vb;
|
2015-08-23 23:15:56 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
EditorNode *editor;
|
|
|
|
Set<String> favorites;
|
|
|
|
|
2018-09-13 22:16:43 +00:00
|
|
|
Button *button_toggle_display_mode;
|
2014-02-10 01:10:30 +00:00
|
|
|
Button *button_reload;
|
2018-08-13 17:05:31 +00:00
|
|
|
Button *button_file_list_display_mode;
|
2015-08-23 23:15:56 +00:00
|
|
|
Button *button_hist_next;
|
|
|
|
Button *button_hist_prev;
|
|
|
|
LineEdit *current_path;
|
2018-09-13 19:49:56 +00:00
|
|
|
LineEdit *tree_search_box;
|
|
|
|
LineEdit *file_list_search_box;
|
2018-09-13 21:28:21 +00:00
|
|
|
|
2018-09-13 19:49:56 +00:00
|
|
|
String searched_string;
|
2018-09-13 21:28:21 +00:00
|
|
|
Vector<String> uncollapsed_paths_before_search;
|
2018-09-13 19:49:56 +00:00
|
|
|
|
2017-01-12 21:27:27 +00:00
|
|
|
TextureRect *search_icon;
|
2015-08-23 23:15:56 +00:00
|
|
|
HBoxContainer *path_hb;
|
|
|
|
|
2018-08-13 17:05:31 +00:00
|
|
|
FileListDisplayMode file_list_display_mode;
|
2016-08-16 16:25:42 +00:00
|
|
|
DisplayMode display_mode;
|
2018-09-14 11:59:19 +00:00
|
|
|
DisplayModeSetting display_mode_setting;
|
|
|
|
DisplayModeSetting old_display_mode_setting;
|
2015-08-23 23:15:56 +00:00
|
|
|
|
2018-08-23 15:00:30 +00:00
|
|
|
PopupMenu *file_list_popup;
|
|
|
|
PopupMenu *tree_popup;
|
2015-08-23 23:15:56 +00:00
|
|
|
|
|
|
|
DependencyEditor *deps_editor;
|
|
|
|
DependencyEditorOwners *owners_editor;
|
|
|
|
DependencyRemoveDialog *remove_dialog;
|
|
|
|
|
|
|
|
EditorDirDialog *move_dialog;
|
2017-10-01 21:59:27 +00:00
|
|
|
ConfirmationDialog *rename_dialog;
|
|
|
|
LineEdit *rename_dialog_text;
|
2017-12-01 11:13:50 +00:00
|
|
|
ConfirmationDialog *duplicate_dialog;
|
|
|
|
LineEdit *duplicate_dialog_text;
|
2017-10-01 22:33:43 +00:00
|
|
|
ConfirmationDialog *make_dir_dialog;
|
|
|
|
LineEdit *make_dir_dialog_text;
|
2018-05-29 12:33:11 +00:00
|
|
|
ConfirmationDialog *overwrite_dialog;
|
2018-04-25 07:18:10 +00:00
|
|
|
ScriptCreateDialog *make_script_dialog_text;
|
2018-07-22 15:53:40 +00:00
|
|
|
CreateDialog *new_resource_dialog;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2018-08-23 15:00:30 +00:00
|
|
|
bool always_show_folders;
|
|
|
|
|
2017-10-01 21:59:27 +00:00
|
|
|
class FileOrFolder {
|
|
|
|
public:
|
|
|
|
String path;
|
|
|
|
bool is_file;
|
|
|
|
|
2017-12-06 20:36:34 +00:00
|
|
|
FileOrFolder() :
|
|
|
|
path(""),
|
|
|
|
is_file(false) {}
|
|
|
|
FileOrFolder(const String &p_path, bool p_is_file) :
|
|
|
|
path(p_path),
|
|
|
|
is_file(p_is_file) {}
|
2017-10-01 21:59:27 +00:00
|
|
|
};
|
|
|
|
FileOrFolder to_rename;
|
2017-12-01 11:13:50 +00:00
|
|
|
FileOrFolder to_duplicate;
|
2017-10-01 21:59:27 +00:00
|
|
|
Vector<FileOrFolder> to_move;
|
2018-05-29 12:33:11 +00:00
|
|
|
String to_move_path;
|
2015-08-23 23:15:56 +00:00
|
|
|
|
|
|
|
Vector<String> history;
|
|
|
|
int history_pos;
|
2017-09-03 20:35:18 +00:00
|
|
|
int history_max_size;
|
2015-08-23 23:15:56 +00:00
|
|
|
|
|
|
|
String path;
|
|
|
|
|
|
|
|
bool initialized;
|
2014-05-16 11:48:23 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
bool updating_tree;
|
2018-09-12 11:10:49 +00:00
|
|
|
int tree_update_id;
|
2017-03-05 15:44:50 +00:00
|
|
|
Tree *tree; //directories
|
2015-08-23 23:15:56 +00:00
|
|
|
ItemList *files;
|
2017-11-02 13:05:34 +00:00
|
|
|
bool import_dock_needs_update;
|
2015-08-23 23:15:56 +00:00
|
|
|
|
2018-08-23 15:00:30 +00:00
|
|
|
Ref<Texture> _get_tree_item_icon(EditorFileSystemDirectory *p_dir, int p_idx);
|
2017-09-03 20:35:18 +00:00
|
|
|
bool _create_tree(TreeItem *p_parent, EditorFileSystemDirectory *p_dir, Vector<String> &uncollapsed_paths);
|
2018-09-13 21:28:21 +00:00
|
|
|
Vector<String> _compute_uncollapsed_paths();
|
|
|
|
void _update_tree(const Vector<String> p_uncollapsed_paths = Vector<String>(), bool p_uncollapse_root = false);
|
2017-09-03 20:35:18 +00:00
|
|
|
|
2018-08-23 15:00:30 +00:00
|
|
|
void _file_list_gui_input(Ref<InputEvent> p_event);
|
|
|
|
void _tree_gui_input(Ref<InputEvent> p_event);
|
2018-01-05 19:45:54 +00:00
|
|
|
|
2018-09-28 11:26:36 +00:00
|
|
|
void _update_file_list(bool p_keep_selection);
|
2018-08-13 17:05:31 +00:00
|
|
|
void _update_file_list_display_mode_button();
|
2017-09-03 20:35:18 +00:00
|
|
|
void _change_file_display();
|
|
|
|
void _fs_changed();
|
2017-02-01 12:45:45 +00:00
|
|
|
|
2018-10-16 20:08:00 +00:00
|
|
|
void _tree_toggle_collapsed();
|
2017-09-03 20:35:18 +00:00
|
|
|
|
2018-08-23 15:00:30 +00:00
|
|
|
void _select_file(const String p_path);
|
|
|
|
void _tree_activate_file();
|
|
|
|
void _file_list_activate_file(int p_idx);
|
2017-09-03 20:35:18 +00:00
|
|
|
void _file_multi_selected(int p_index, bool p_selected);
|
2018-08-23 15:00:30 +00:00
|
|
|
void _tree_multi_selected(Object *p_item, int p_column, bool p_selected);
|
2015-08-23 23:15:56 +00:00
|
|
|
|
2018-08-23 15:00:30 +00:00
|
|
|
void _update_import_dock();
|
2015-08-23 23:15:56 +00:00
|
|
|
|
2018-02-28 23:14:12 +00:00
|
|
|
void _get_all_items_in_dir(EditorFileSystemDirectory *efsd, Vector<String> &files, Vector<String> &folders) const;
|
2017-10-01 21:59:27 +00:00
|
|
|
void _find_remaps(EditorFileSystemDirectory *efsd, const Map<String, String> &renames, Vector<String> &to_remaps) const;
|
2018-11-13 19:17:33 +00:00
|
|
|
void _try_move_item(const FileOrFolder &p_item, const String &p_new_path, Map<String, String> &p_file_renames, Map<String, String> &p_folder_renames);
|
2017-12-01 11:13:50 +00:00
|
|
|
void _try_duplicate_item(const FileOrFolder &p_item, const String &p_new_path) const;
|
2017-10-01 21:59:27 +00:00
|
|
|
void _update_dependencies_after_move(const Map<String, String> &p_renames) const;
|
2017-12-26 19:32:12 +00:00
|
|
|
void _update_resource_paths_after_move(const Map<String, String> &p_renames) const;
|
2018-09-18 12:02:59 +00:00
|
|
|
void _update_favorites_list_after_move(const Map<String, String> &p_files_renames, const Map<String, String> &p_folders_renames) const;
|
|
|
|
void _update_project_settings_after_move(const Map<String, String> &p_folders_renames) const;
|
2017-10-01 21:59:27 +00:00
|
|
|
|
2018-11-13 19:17:33 +00:00
|
|
|
void _file_deleted(String p_file);
|
|
|
|
void _folder_deleted(String p_folder);
|
|
|
|
void _files_moved(String p_old_file, String p_new_file);
|
|
|
|
void _folder_moved(String p_old_folder, String p_new_folder);
|
|
|
|
|
2018-07-22 15:53:40 +00:00
|
|
|
void _resource_created() const;
|
2017-10-01 22:33:43 +00:00
|
|
|
void _make_dir_confirm();
|
2017-10-01 21:59:27 +00:00
|
|
|
void _rename_operation_confirm();
|
2017-12-01 11:13:50 +00:00
|
|
|
void _duplicate_operation_confirm();
|
2018-05-29 12:33:11 +00:00
|
|
|
void _move_with_overwrite();
|
|
|
|
bool _check_existing();
|
|
|
|
void _move_operation_confirm(const String &p_to_path, bool overwrite = false);
|
2015-08-23 23:15:56 +00:00
|
|
|
|
2018-08-23 15:00:30 +00:00
|
|
|
void _tree_rmb_option(int p_option);
|
|
|
|
void _file_list_rmb_option(int p_option);
|
|
|
|
void _file_option(int p_option, const Vector<String> p_selected);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2015-08-23 23:15:56 +00:00
|
|
|
void _fw_history();
|
|
|
|
void _bw_history();
|
2017-09-03 20:35:18 +00:00
|
|
|
void _update_history();
|
2015-08-23 23:15:56 +00:00
|
|
|
void _push_to_history();
|
|
|
|
|
2017-01-21 12:07:29 +00:00
|
|
|
void _set_scanning_mode();
|
2017-09-03 20:35:18 +00:00
|
|
|
void _rescan();
|
2015-08-23 23:15:56 +00:00
|
|
|
|
2018-09-13 22:16:43 +00:00
|
|
|
void _toggle_split_mode(bool p_active);
|
|
|
|
|
2018-09-13 19:49:56 +00:00
|
|
|
void _search_changed(const String &p_text, const Control *p_from);
|
2016-05-15 23:25:51 +00:00
|
|
|
|
2018-11-03 17:36:59 +00:00
|
|
|
void _file_and_folders_fill_popup(PopupMenu *p_popup, Vector<String> p_paths, bool p_display_path_dependent_options = true);
|
2018-08-23 15:00:30 +00:00
|
|
|
void _tree_rmb_select(const Vector2 &p_pos);
|
|
|
|
void _file_list_rmb_select(int p_item, const Vector2 &p_pos);
|
|
|
|
void _file_list_rmb_pressed(const Vector2 &p_pos);
|
2016-05-15 23:25:51 +00:00
|
|
|
|
|
|
|
struct FileInfo {
|
|
|
|
String name;
|
|
|
|
String path;
|
|
|
|
StringName type;
|
2016-05-27 17:18:40 +00:00
|
|
|
int import_status; //0 not imported, 1 - ok, 2- must reimport, 3- broken
|
|
|
|
Vector<String> sources;
|
2017-08-29 23:17:34 +00:00
|
|
|
bool import_broken;
|
2016-05-15 23:25:51 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
bool operator<(const FileInfo &fi) const {
|
2018-08-23 15:00:30 +00:00
|
|
|
return NaturalNoCaseComparator()(name, fi.name);
|
2016-05-15 23:25:51 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void _search(EditorFileSystemDirectory *p_path, List<FileInfo> *matches, int p_max_items);
|
2015-08-23 23:15:56 +00:00
|
|
|
|
2018-09-28 22:11:26 +00:00
|
|
|
void _set_current_path_text(const String &p_path);
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Variant get_drag_data_fw(const Point2 &p_point, Control *p_from);
|
|
|
|
bool can_drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_from) const;
|
|
|
|
void drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_from);
|
2018-09-13 20:38:35 +00:00
|
|
|
void _get_drag_target_folder(String &target, bool &target_favorites, const Point2 &p_point, Control *p_from) const;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void _preview_invalidated(const String &p_path);
|
2018-09-12 11:10:49 +00:00
|
|
|
void _file_list_thumbnail_done(const String &p_path, const Ref<Texture> &p_preview, const Ref<Texture> &p_small_preview, const Variant &p_udata);
|
|
|
|
void _tree_thumbnail_done(const String &p_path, const Ref<Texture> &p_preview, const Ref<Texture> &p_small_preview, const Variant &p_udata);
|
2016-07-03 16:15:15 +00:00
|
|
|
|
2018-10-22 08:31:50 +00:00
|
|
|
void _update_display_mode(bool p_force = false);
|
2018-08-13 17:05:31 +00:00
|
|
|
|
2018-08-23 15:00:30 +00:00
|
|
|
Vector<String> _tree_get_selected(bool remove_self_inclusion = true);
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
protected:
|
|
|
|
void _notification(int p_what);
|
|
|
|
static void _bind_methods();
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
public:
|
2014-02-10 01:10:30 +00:00
|
|
|
String get_selected_path() const;
|
2016-05-27 17:18:40 +00:00
|
|
|
|
|
|
|
String get_current_path() const;
|
2017-03-05 15:44:50 +00:00
|
|
|
void navigate_to_path(const String &p_path);
|
2016-05-15 23:25:51 +00:00
|
|
|
void focus_on_filter();
|
2015-08-23 23:15:56 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void fix_dependencies(const String &p_for_file);
|
2015-08-23 23:15:56 +00:00
|
|
|
|
2018-08-13 17:05:31 +00:00
|
|
|
void set_file_list_display_mode(int p_mode);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-01-25 01:46:44 +00:00
|
|
|
int get_split_offset() { return split_box->get_split_offset(); }
|
|
|
|
void set_split_offset(int p_offset) { split_box->set_split_offset(p_offset); }
|
2017-03-05 15:44:50 +00:00
|
|
|
void select_file(const String &p_file);
|
2017-01-25 01:46:44 +00:00
|
|
|
|
2016-07-21 13:34:57 +00:00
|
|
|
FileSystemDock(EditorNode *p_editor);
|
|
|
|
~FileSystemDock();
|
2014-02-10 01:10:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SCENES_DOCK_H
|