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 */
|
|
|
|
/* https://godotengine.org */
|
|
|
|
/**************************************************************************/
|
|
|
|
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
|
|
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* */
|
|
|
|
/* 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
|
|
|
|
2022-02-14 13:00:03 +00:00
|
|
|
#include "editor/dependency_editor.h"
|
|
|
|
#include "editor/editor_file_system.h"
|
|
|
|
#include "editor/plugins/script_editor_plugin.h"
|
|
|
|
#include "editor/script_create_dialog.h"
|
2014-02-10 01:10:30 +00:00
|
|
|
#include "scene/gui/box_container.h"
|
|
|
|
#include "scene/gui/control.h"
|
2017-10-01 21:59:27 +00:00
|
|
|
#include "scene/gui/dialogs.h"
|
2015-08-23 23:15:56 +00:00
|
|
|
#include "scene/gui/menu_button.h"
|
2016-05-15 23:25:51 +00:00
|
|
|
#include "scene/gui/split_container.h"
|
2015-08-23 23:15:56 +00:00
|
|
|
#include "scene/gui/tree.h"
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2023-04-07 16:59:49 +00:00
|
|
|
class CreateDialog;
|
|
|
|
class EditorDirDialog;
|
|
|
|
class ItemList;
|
|
|
|
class LineEdit;
|
|
|
|
class ProgressBar;
|
2022-06-12 00:11:52 +00:00
|
|
|
class SceneCreateDialog;
|
2021-12-03 14:45:32 +00:00
|
|
|
class ShaderCreateDialog;
|
2023-04-15 10:15:57 +00:00
|
|
|
class DirectoryCreateDialog;
|
2022-07-20 21:44:06 +00:00
|
|
|
class EditorResourceTooltipPlugin;
|
|
|
|
|
|
|
|
class FileSystemTree : public Tree {
|
|
|
|
virtual Control *make_custom_tooltip(const String &p_text) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
class FileSystemList : public ItemList {
|
2023-05-26 21:04:14 +00:00
|
|
|
GDCLASS(FileSystemList, ItemList);
|
|
|
|
|
2024-05-17 07:03:52 +00:00
|
|
|
bool popup_edit_commited = true;
|
2023-05-26 21:04:14 +00:00
|
|
|
VBoxContainer *popup_editor_vb = nullptr;
|
|
|
|
Popup *popup_editor = nullptr;
|
|
|
|
LineEdit *line_editor = nullptr;
|
|
|
|
|
|
|
|
virtual Control *make_custom_tooltip(const String &p_text) const override;
|
2024-02-15 16:25:58 +00:00
|
|
|
void _line_editor_submit(const String &p_text);
|
2023-05-26 21:04:14 +00:00
|
|
|
void _text_editor_popup_modal_close();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
|
|
|
|
public:
|
|
|
|
bool edit_selected();
|
|
|
|
String get_edit_text();
|
|
|
|
|
|
|
|
FileSystemList();
|
2022-07-20 21:44:06 +00:00
|
|
|
};
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-07-21 13:34:57 +00:00
|
|
|
class FileSystemDock : public VBoxContainer {
|
2017-01-03 02:03:46 +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
|
|
|
|
2018-08-13 17:05:31 +00:00
|
|
|
enum DisplayMode {
|
2018-09-13 15:35:44 +00:00
|
|
|
DISPLAY_MODE_TREE_ONLY,
|
2023-08-03 21:50:50 +00:00
|
|
|
DISPLAY_MODE_VSPLIT,
|
|
|
|
DISPLAY_MODE_HSPLIT,
|
2018-08-13 17:05:31 +00:00
|
|
|
};
|
|
|
|
|
2020-10-07 19:56:53 +00:00
|
|
|
enum FileSortOption {
|
|
|
|
FILE_SORT_NAME = 0,
|
2020-10-22 21:38:41 +00:00
|
|
|
FILE_SORT_NAME_REVERSE,
|
2020-10-07 19:56:53 +00:00
|
|
|
FILE_SORT_TYPE,
|
2020-10-22 21:38:41 +00:00
|
|
|
FILE_SORT_TYPE_REVERSE,
|
|
|
|
FILE_SORT_MODIFIED_TIME,
|
|
|
|
FILE_SORT_MODIFIED_TIME_REVERSE,
|
2020-10-07 19:56:53 +00:00
|
|
|
FILE_SORT_MAX,
|
|
|
|
};
|
|
|
|
|
2023-12-24 05:59:32 +00:00
|
|
|
enum Overwrite {
|
|
|
|
OVERWRITE_UNDECIDED,
|
|
|
|
OVERWRITE_REPLACE,
|
|
|
|
OVERWRITE_RENAME,
|
|
|
|
};
|
|
|
|
|
2019-02-25 22:39:49 +00:00
|
|
|
private:
|
2015-08-23 23:15:56 +00:00
|
|
|
enum FileMenu {
|
2016-05-15 23:25:51 +00:00
|
|
|
FILE_OPEN,
|
2019-05-08 02:35:23 +00:00
|
|
|
FILE_INHERIT,
|
2019-10-29 18:24:38 +00:00
|
|
|
FILE_MAIN_SCENE,
|
2022-11-15 23:13:39 +00:00
|
|
|
FILE_INSTANTIATE,
|
2018-09-13 16:11:05 +00:00
|
|
|
FILE_ADD_FAVORITE,
|
|
|
|
FILE_REMOVE_FAVORITE,
|
2024-04-25 13:43:58 +00:00
|
|
|
FILE_SHOW_IN_FILESYSTEM,
|
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,
|
2023-02-02 08:41:06 +00:00
|
|
|
FILE_NEW,
|
2016-06-06 15:20:03 +00:00
|
|
|
FILE_SHOW_IN_EXPLORER,
|
2022-11-10 21:26:40 +00:00
|
|
|
FILE_OPEN_EXTERNAL,
|
2023-06-16 07:24:32 +00:00
|
|
|
FILE_OPEN_IN_TERMINAL,
|
2018-07-22 15:53:40 +00:00
|
|
|
FILE_COPY_PATH,
|
2024-04-09 07:38:06 +00:00
|
|
|
FILE_COPY_ABSOLUTE_PATH,
|
2022-05-02 09:51:23 +00:00
|
|
|
FILE_COPY_UID,
|
2017-01-10 12:19:59 +00:00
|
|
|
FOLDER_EXPAND_ALL,
|
2017-04-24 15:54:51 +00:00
|
|
|
FOLDER_COLLAPSE_ALL,
|
2023-02-02 08:41:06 +00:00
|
|
|
FILE_NEW_RESOURCE,
|
|
|
|
FILE_NEW_TEXTFILE,
|
|
|
|
FILE_NEW_FOLDER,
|
|
|
|
FILE_NEW_SCRIPT,
|
|
|
|
FILE_NEW_SCENE,
|
2022-09-09 18:39:37 +00:00
|
|
|
CONVERT_BASE_ID = 1000,
|
2017-01-10 12:19:59 +00:00
|
|
|
};
|
|
|
|
|
2022-12-19 05:39:18 +00:00
|
|
|
HashMap<String, Color> folder_colors;
|
|
|
|
Dictionary assigned_folder_colors;
|
|
|
|
|
2020-10-07 19:56:53 +00:00
|
|
|
FileSortOption file_sort = FILE_SORT_NAME;
|
|
|
|
|
2022-04-04 13:06:57 +00:00
|
|
|
VBoxContainer *scanning_vb = nullptr;
|
|
|
|
ProgressBar *scanning_progress = nullptr;
|
2023-08-03 21:50:50 +00:00
|
|
|
SplitContainer *split_box = nullptr;
|
2022-04-04 13:06:57 +00:00
|
|
|
VBoxContainer *file_list_vb = nullptr;
|
2015-08-23 23:15:56 +00:00
|
|
|
|
2023-08-03 21:50:50 +00:00
|
|
|
int split_box_offset_h = 0;
|
|
|
|
int split_box_offset_v = 0;
|
|
|
|
|
2022-05-19 15:00:06 +00:00
|
|
|
HashSet<String> favorites;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2024-01-29 13:36:10 +00:00
|
|
|
Button *button_dock_placement = nullptr;
|
|
|
|
|
2022-04-04 13:06:57 +00:00
|
|
|
Button *button_toggle_display_mode = nullptr;
|
|
|
|
Button *button_reload = nullptr;
|
|
|
|
Button *button_file_list_display_mode = nullptr;
|
|
|
|
Button *button_hist_next = nullptr;
|
|
|
|
Button *button_hist_prev = nullptr;
|
2023-05-11 02:17:03 +00:00
|
|
|
LineEdit *current_path_line_edit = nullptr;
|
2020-10-07 19:56:53 +00:00
|
|
|
|
2022-04-04 13:06:57 +00:00
|
|
|
HBoxContainer *toolbar2_hbc = nullptr;
|
|
|
|
LineEdit *tree_search_box = nullptr;
|
|
|
|
MenuButton *tree_button_sort = nullptr;
|
2020-10-07 19:56:53 +00:00
|
|
|
|
2022-04-04 13:06:57 +00:00
|
|
|
LineEdit *file_list_search_box = nullptr;
|
|
|
|
MenuButton *file_list_button_sort = nullptr;
|
2018-09-13 21:28:21 +00:00
|
|
|
|
2024-02-22 08:22:16 +00:00
|
|
|
PackedStringArray searched_tokens;
|
2018-09-13 21:28:21 +00:00
|
|
|
Vector<String> uncollapsed_paths_before_search;
|
2018-09-13 19:49:56 +00:00
|
|
|
|
2022-04-04 13:06:57 +00:00
|
|
|
TextureRect *search_icon = nullptr;
|
|
|
|
HBoxContainer *path_hb = nullptr;
|
2015-08-23 23:15:56 +00:00
|
|
|
|
2018-08-13 17:05:31 +00:00
|
|
|
FileListDisplayMode file_list_display_mode;
|
2016-08-16 16:25:42 +00:00
|
|
|
DisplayMode display_mode;
|
2019-02-25 22:39:49 +00:00
|
|
|
DisplayMode old_display_mode;
|
2015-08-23 23:15:56 +00:00
|
|
|
|
2022-04-04 13:06:57 +00:00
|
|
|
PopupMenu *file_list_popup = nullptr;
|
|
|
|
PopupMenu *tree_popup = nullptr;
|
|
|
|
|
|
|
|
DependencyEditor *deps_editor = nullptr;
|
|
|
|
DependencyEditorOwners *owners_editor = nullptr;
|
|
|
|
DependencyRemoveDialog *remove_dialog = nullptr;
|
|
|
|
|
|
|
|
EditorDirDialog *move_dialog = nullptr;
|
|
|
|
ConfirmationDialog *duplicate_dialog = nullptr;
|
|
|
|
LineEdit *duplicate_dialog_text = nullptr;
|
2023-04-15 10:15:57 +00:00
|
|
|
DirectoryCreateDialog *make_dir_dialog = nullptr;
|
2023-05-17 22:09:44 +00:00
|
|
|
|
2022-04-04 13:06:57 +00:00
|
|
|
ConfirmationDialog *overwrite_dialog = nullptr;
|
2023-05-17 22:09:44 +00:00
|
|
|
ScrollContainer *overwrite_dialog_scroll = nullptr;
|
|
|
|
Label *overwrite_dialog_header = nullptr;
|
|
|
|
Label *overwrite_dialog_footer = nullptr;
|
|
|
|
Label *overwrite_dialog_file_list = nullptr;
|
|
|
|
|
2022-09-09 18:39:37 +00:00
|
|
|
ConfirmationDialog *conversion_dialog = nullptr;
|
|
|
|
|
2022-06-12 00:11:52 +00:00
|
|
|
SceneCreateDialog *make_scene_dialog = nullptr;
|
2022-04-04 13:06:57 +00:00
|
|
|
ScriptCreateDialog *make_script_dialog = nullptr;
|
|
|
|
ShaderCreateDialog *make_shader_dialog = nullptr;
|
|
|
|
CreateDialog *new_resource_dialog = nullptr;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2022-02-15 14:56:58 +00:00
|
|
|
bool always_show_folders = false;
|
2018-08-23 15:00:30 +00:00
|
|
|
|
2022-12-19 05:39:18 +00:00
|
|
|
bool editor_is_dark_theme = false;
|
|
|
|
|
2017-10-01 21:59:27 +00:00
|
|
|
class FileOrFolder {
|
|
|
|
public:
|
|
|
|
String path;
|
2020-05-12 15:01:17 +00:00
|
|
|
bool is_file = false;
|
2017-10-01 21:59:27 +00:00
|
|
|
|
2020-05-12 15:01:17 +00:00
|
|
|
FileOrFolder() {}
|
2017-12-06 20:36:34 +00:00
|
|
|
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;
|
2023-03-25 19:58:37 +00:00
|
|
|
bool to_move_or_copy = false;
|
2015-08-23 23:15:56 +00:00
|
|
|
|
2022-09-09 18:39:37 +00:00
|
|
|
Vector<String> to_convert;
|
|
|
|
int selected_conversion_id = 0;
|
|
|
|
|
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
|
|
|
|
2023-05-11 02:17:03 +00:00
|
|
|
String current_path;
|
2023-12-14 17:18:44 +00:00
|
|
|
String select_after_scan;
|
2015-08-23 23:15:56 +00:00
|
|
|
|
2022-02-15 14:56:58 +00:00
|
|
|
bool updating_tree = false;
|
2018-09-12 11:10:49 +00:00
|
|
|
int tree_update_id;
|
2022-07-20 21:44:06 +00:00
|
|
|
FileSystemTree *tree = nullptr;
|
|
|
|
FileSystemList *files = nullptr;
|
2022-02-15 14:56:58 +00:00
|
|
|
bool import_dock_needs_update = false;
|
2015-08-23 23:15:56 +00:00
|
|
|
|
2022-03-03 20:36:56 +00:00
|
|
|
bool holding_branch = false;
|
|
|
|
Vector<TreeItem *> tree_items_selected_on_drag_begin;
|
|
|
|
PackedInt32Array list_items_selected_on_drag_begin;
|
|
|
|
|
2022-07-20 21:44:06 +00:00
|
|
|
LocalVector<Ref<EditorResourceTooltipPlugin>> tooltip_plugins;
|
|
|
|
|
2022-09-09 18:39:37 +00:00
|
|
|
HashSet<String> cached_valid_conversion_targets;
|
|
|
|
|
2022-03-03 20:36:56 +00:00
|
|
|
void _tree_mouse_exited();
|
|
|
|
void _reselect_items_selected_on_drag_begin(bool reset = false);
|
|
|
|
|
2023-06-06 22:09:12 +00:00
|
|
|
Ref<Texture2D> _get_tree_item_icon(bool p_is_valid, const String &p_file_type, const String &p_icon_path);
|
2019-11-21 14:40:11 +00:00
|
|
|
bool _create_tree(TreeItem *p_parent, EditorFileSystemDirectory *p_dir, Vector<String> &uncollapsed_paths, bool p_select_in_favorites, bool p_unfold_path = false);
|
|
|
|
void _update_tree(const Vector<String> &p_uncollapsed_paths = Vector<String>(), bool p_uncollapse_root = false, bool p_select_in_favorites = false, bool p_unfold_path = false);
|
2019-01-17 19:40:38 +00:00
|
|
|
void _navigate_to_path(const String &p_path, bool p_select_in_favorites = 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
|
|
|
|
2022-09-09 18:39:37 +00:00
|
|
|
HashSet<String> _get_valid_conversions_for_file_paths(const Vector<String> &p_paths);
|
|
|
|
|
2018-09-28 11:26:36 +00:00
|
|
|
void _update_file_list(bool p_keep_selection);
|
2019-03-05 06:55:08 +00:00
|
|
|
void _toggle_file_display();
|
2019-02-27 20:36:12 +00:00
|
|
|
void _set_file_display(bool p_active);
|
2017-09-03 20:35:18 +00:00
|
|
|
void _fs_changed();
|
2017-02-01 12:45:45 +00:00
|
|
|
|
2019-07-10 09:54:12 +00:00
|
|
|
void _select_file(const String &p_path, bool p_select_in_favorites = false);
|
2018-08-23 15:00:30 +00:00
|
|
|
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
|
|
|
|
2023-01-14 23:20:50 +00:00
|
|
|
bool _get_imported_files(const String &p_path, String &r_extension, Vector<String> &r_files) const;
|
2018-08-23 15:00:30 +00:00
|
|
|
void _update_import_dock();
|
2015-08-23 23:15:56 +00:00
|
|
|
|
2022-09-29 09:53:28 +00:00
|
|
|
void _get_all_items_in_dir(EditorFileSystemDirectory *p_efsd, Vector<String> &r_files, Vector<String> &r_folders) const;
|
2023-10-25 13:16:38 +00:00
|
|
|
void _find_file_owners(EditorFileSystemDirectory *p_efsd, const HashSet<String> &p_renames, HashSet<String> &r_file_owners) const;
|
2022-05-13 13:04:37 +00:00
|
|
|
void _try_move_item(const FileOrFolder &p_item, const String &p_new_path, HashMap<String, String> &p_file_renames, HashMap<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;
|
2023-10-25 13:16:38 +00:00
|
|
|
void _before_move(HashMap<String, ResourceUID::ID> &r_uids, HashSet<String> &r_file_owners) const;
|
|
|
|
void _update_dependencies_after_move(const HashMap<String, String> &p_renames, const HashSet<String> &p_file_owners) const;
|
2023-09-14 16:35:19 +00:00
|
|
|
void _update_resource_paths_after_move(const HashMap<String, String> &p_renames, const HashMap<String, ResourceUID::ID> &p_uids) const;
|
2022-05-13 13:04:37 +00:00
|
|
|
void _update_favorites_list_after_move(const HashMap<String, String> &p_files_renames, const HashMap<String, String> &p_folders_renames) const;
|
2023-09-06 10:41:33 +00:00
|
|
|
void _update_project_settings_after_move(const HashMap<String, String> &p_renames, const HashMap<String, String> &p_folders_renames);
|
2023-03-25 19:58:37 +00:00
|
|
|
String _get_unique_name(const FileOrFolder &p_entry, const String &p_at_path);
|
2017-10-01 21:59:27 +00:00
|
|
|
|
2023-09-06 10:41:33 +00:00
|
|
|
void _update_folder_colors_setting();
|
|
|
|
|
2023-01-23 09:01:28 +00:00
|
|
|
void _resource_removed(const Ref<Resource> &p_resource);
|
2024-02-15 16:25:58 +00:00
|
|
|
void _file_removed(const String &p_file);
|
|
|
|
void _folder_removed(const String &p_folder);
|
2018-11-13 19:17:33 +00:00
|
|
|
|
2020-02-21 16:44:59 +00:00
|
|
|
void _resource_created();
|
2019-08-15 17:47:21 +00:00
|
|
|
void _make_scene_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();
|
2023-03-25 19:58:37 +00:00
|
|
|
void _overwrite_dialog_action(bool p_overwrite);
|
2022-09-09 18:39:37 +00:00
|
|
|
void _convert_dialog_action();
|
2020-12-10 11:53:56 +00:00
|
|
|
Vector<String> _check_existing();
|
2023-03-25 19:58:37 +00:00
|
|
|
void _move_operation_confirm(const String &p_to_path, bool p_copy = false, Overwrite p_overwrite = OVERWRITE_UNDECIDED);
|
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);
|
2022-09-09 18:39:37 +00:00
|
|
|
void _generic_rmb_option_selected(int p_option);
|
2019-07-10 09:54:12 +00:00
|
|
|
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
|
|
|
|
2023-08-03 21:50:50 +00:00
|
|
|
void _change_split_mode();
|
2023-12-23 18:01:01 +00:00
|
|
|
void _split_dragged(int p_offset);
|
2018-09-13 22:16:43 +00:00
|
|
|
|
2018-09-13 19:49:56 +00:00
|
|
|
void _search_changed(const String &p_text, const Control *p_from);
|
2024-02-22 08:22:16 +00:00
|
|
|
bool _matches_all_search_tokens(const String &p_text);
|
2016-05-15 23:25:51 +00:00
|
|
|
|
2020-10-07 19:56:53 +00:00
|
|
|
MenuButton *_create_file_menu_button();
|
|
|
|
void _file_sort_popup(int p_id);
|
|
|
|
|
2022-12-19 05:39:18 +00:00
|
|
|
void _folder_color_index_pressed(int p_index, PopupMenu *p_menu);
|
2024-02-15 16:25:58 +00:00
|
|
|
void _file_and_folders_fill_popup(PopupMenu *p_popup, const Vector<String> &p_paths, bool p_display_path_dependent_options = true);
|
2021-09-18 07:33:18 +00:00
|
|
|
void _tree_rmb_select(const Vector2 &p_pos, MouseButton p_button);
|
2022-05-09 18:17:04 +00:00
|
|
|
void _file_list_item_clicked(int p_item, const Vector2 &p_pos, MouseButton p_mouse_button_index);
|
|
|
|
void _file_list_empty_clicked(const Vector2 &p_pos, MouseButton p_mouse_button_index);
|
2021-09-18 07:33:18 +00:00
|
|
|
void _tree_empty_click(const Vector2 &p_pos, MouseButton p_button);
|
2019-04-09 12:54:41 +00:00
|
|
|
void _tree_empty_selected();
|
2016-05-15 23:25:51 +00:00
|
|
|
|
|
|
|
struct FileInfo {
|
|
|
|
String name;
|
|
|
|
String path;
|
2023-06-06 22:09:12 +00:00
|
|
|
String icon_path;
|
2016-05-15 23:25:51 +00:00
|
|
|
StringName type;
|
2016-05-27 17:18:40 +00:00
|
|
|
Vector<String> sources;
|
2020-11-24 09:12:55 +00:00
|
|
|
bool import_broken = false;
|
|
|
|
uint64_t modified_time = 0;
|
2016-05-15 23:25:51 +00:00
|
|
|
|
|
|
|
bool operator<(const FileInfo &fi) const {
|
2024-02-02 15:50:23 +00:00
|
|
|
return FileNoCaseComparator()(name, fi.name);
|
2016-05-15 23:25:51 +00:00
|
|
|
}
|
|
|
|
};
|
2020-10-22 21:38:41 +00:00
|
|
|
|
|
|
|
struct FileInfoTypeComparator;
|
|
|
|
struct FileInfoModifiedTimeComparator;
|
|
|
|
|
|
|
|
void _sort_file_info_list(List<FileSystemDock::FileInfo> &r_file_list);
|
2016-05-15 23:25:51 +00:00
|
|
|
|
|
|
|
void _search(EditorFileSystemDirectory *p_path, List<FileInfo> *matches, int p_max_items);
|
2015-08-23 23:15:56 +00:00
|
|
|
|
2023-05-11 02:17:03 +00:00
|
|
|
void _set_current_path_line_edit_text(const String &p_path);
|
2018-09-28 22:11:26 +00:00
|
|
|
|
2016-05-11 14:46:08 +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
|
|
|
|
2016-07-03 16:15:15 +00:00
|
|
|
void _preview_invalidated(const String &p_path);
|
2019-06-11 18:43:37 +00:00
|
|
|
void _file_list_thumbnail_done(const String &p_path, const Ref<Texture2D> &p_preview, const Ref<Texture2D> &p_small_preview, const Variant &p_udata);
|
|
|
|
void _tree_thumbnail_done(const String &p_path, const Ref<Texture2D> &p_preview, const Ref<Texture2D> &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
|
|
|
|
2023-09-21 18:46:39 +00:00
|
|
|
Vector<String> _tree_get_selected(bool remove_self_inclusion = true, bool p_include_unselected_cursor = false) const;
|
2024-07-24 16:01:11 +00:00
|
|
|
Vector<String> _file_list_get_selected() const;
|
2018-08-23 15:00:30 +00:00
|
|
|
|
2019-04-08 22:18:03 +00:00
|
|
|
bool _is_file_type_disabled_by_feature_profile(const StringName &p_class);
|
|
|
|
|
|
|
|
void _feature_profile_changed();
|
2024-04-11 10:20:11 +00:00
|
|
|
void _project_settings_changed();
|
2022-05-10 20:25:36 +00:00
|
|
|
static Vector<String> _remove_self_included_paths(Vector<String> selected_strings);
|
2019-04-08 22:18:03 +00:00
|
|
|
|
2024-01-29 13:36:10 +00:00
|
|
|
void _change_bottom_dock_placement();
|
|
|
|
|
|
|
|
bool _can_dock_horizontal() const;
|
|
|
|
void _set_dock_horizontal(bool p_enable);
|
|
|
|
|
2021-11-17 20:08:55 +00:00
|
|
|
private:
|
|
|
|
static FileSystemDock *singleton;
|
|
|
|
|
|
|
|
public:
|
|
|
|
static FileSystemDock *get_singleton() { return singleton; }
|
|
|
|
|
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:
|
2024-04-14 05:09:49 +00:00
|
|
|
static constexpr double ITEM_COLOR_SCALE = 1.75;
|
|
|
|
static constexpr double ITEM_ALPHA_MIN = 0.1;
|
|
|
|
static constexpr double ITEM_ALPHA_MAX = 0.15;
|
|
|
|
static constexpr double ITEM_BG_DARK_SCALE = 0.3;
|
|
|
|
|
2023-11-13 10:15:25 +00:00
|
|
|
const HashMap<String, Color> &get_folder_colors() const;
|
|
|
|
Dictionary get_assigned_folder_colors() const;
|
|
|
|
|
2022-05-10 20:25:36 +00:00
|
|
|
Vector<String> get_selected_paths() const;
|
2023-05-11 02:17:03 +00:00
|
|
|
Vector<String> get_uncollapsed_paths() const;
|
2016-05-27 17:18:40 +00:00
|
|
|
|
|
|
|
String get_current_path() const;
|
2022-05-10 20:25:36 +00:00
|
|
|
String get_current_directory() const;
|
|
|
|
|
2017-01-14 17:14:46 +00:00
|
|
|
void navigate_to_path(const String &p_path);
|
2023-08-30 18:11:21 +00:00
|
|
|
void focus_on_path();
|
2016-05-15 23:25:51 +00:00
|
|
|
void focus_on_filter();
|
2015-08-23 23:15:56 +00:00
|
|
|
|
2022-03-10 16:46:31 +00:00
|
|
|
ScriptCreateDialog *get_script_create_dialog() const;
|
|
|
|
|
2015-08-23 23:15:56 +00:00
|
|
|
void fix_dependencies(const String &p_for_file);
|
2024-09-16 13:52:51 +00:00
|
|
|
void update_all();
|
2015-08-23 23:15:56 +00:00
|
|
|
|
2023-12-23 18:01:01 +00:00
|
|
|
int get_h_split_offset() const { return split_box_offset_h; }
|
|
|
|
void set_h_split_offset(int p_offset) { split_box_offset_h = p_offset; }
|
|
|
|
int get_v_split_offset() const { return split_box_offset_v; }
|
|
|
|
void set_v_split_offset(int p_offset) { split_box_offset_v = p_offset; }
|
2017-01-25 17:30:40 +00:00
|
|
|
void select_file(const String &p_file);
|
2017-01-25 01:46:44 +00:00
|
|
|
|
2019-02-25 22:39:49 +00:00
|
|
|
void set_display_mode(DisplayMode p_display_mode);
|
2023-10-27 19:55:07 +00:00
|
|
|
DisplayMode get_display_mode() const { return display_mode; }
|
2019-02-25 22:39:49 +00:00
|
|
|
|
2020-10-07 19:56:53 +00:00
|
|
|
void set_file_sort(FileSortOption p_file_sort);
|
2023-10-27 19:55:07 +00:00
|
|
|
FileSortOption get_file_sort() const { return file_sort; }
|
2020-10-07 19:56:53 +00:00
|
|
|
|
2019-02-25 22:39:49 +00:00
|
|
|
void set_file_list_display_mode(FileListDisplayMode p_mode);
|
2023-10-27 19:55:07 +00:00
|
|
|
FileListDisplayMode get_file_list_display_mode() const { return file_list_display_mode; };
|
2019-02-25 22:39:49 +00:00
|
|
|
|
2023-05-11 02:17:03 +00:00
|
|
|
Tree *get_tree_control() { return tree; }
|
|
|
|
|
2022-07-20 21:44:06 +00:00
|
|
|
void add_resource_tooltip_plugin(const Ref<EditorResourceTooltipPlugin> &p_plugin);
|
|
|
|
void remove_resource_tooltip_plugin(const Ref<EditorResourceTooltipPlugin> &p_plugin);
|
|
|
|
Control *create_tooltip_for_path(const String &p_path) const;
|
|
|
|
|
2023-10-27 19:55:07 +00:00
|
|
|
void save_layout_to_config(Ref<ConfigFile> p_layout, const String &p_section) const;
|
|
|
|
void load_layout_from_config(Ref<ConfigFile> p_layout, const String &p_section);
|
|
|
|
|
2022-01-27 09:36:51 +00:00
|
|
|
FileSystemDock();
|
2016-07-21 13:34:57 +00:00
|
|
|
~FileSystemDock();
|
2014-02-10 01:10:30 +00:00
|
|
|
};
|
|
|
|
|
2023-12-24 05:59:32 +00:00
|
|
|
VARIANT_ENUM_CAST(FileSystemDock::Overwrite);
|
|
|
|
|
2022-07-23 21:41:51 +00:00
|
|
|
#endif // FILESYSTEM_DOCK_H
|