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
|
|
|
/*************************************************************************/
|
2022-01-03 20:27:34 +00:00
|
|
|
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2022 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
|
|
|
|
2022-02-14 13:00:03 +00:00
|
|
|
#include "editor/create_dialog.h"
|
|
|
|
#include "editor/dependency_editor.h"
|
|
|
|
#include "editor/editor_dir_dialog.h"
|
|
|
|
#include "editor/editor_file_system.h"
|
|
|
|
#include "editor/plugins/script_editor_plugin.h"
|
|
|
|
#include "editor/script_create_dialog.h"
|
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"
|
2022-02-14 13:00:03 +00:00
|
|
|
#include "scene/gui/line_edit.h"
|
2015-08-23 23:15:56 +00:00
|
|
|
#include "scene/gui/menu_button.h"
|
|
|
|
#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/tree.h"
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2021-12-03 14:45:32 +00:00
|
|
|
class ShaderCreateDialog;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
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
|
|
|
|
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
|
|
|
};
|
|
|
|
|
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,
|
|
|
|
};
|
|
|
|
|
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,
|
2016-05-15 23:25:51 +00:00
|
|
|
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,
|
2019-08-15 17:47:21 +00:00
|
|
|
FILE_NEW_SCENE,
|
2016-06-06 15:20:03 +00:00
|
|
|
FILE_SHOW_IN_EXPLORER,
|
2018-07-22 15:53:40 +00:00
|
|
|
FILE_COPY_PATH,
|
2022-05-02 09:51:23 +00:00
|
|
|
FILE_COPY_UID,
|
2018-08-23 15:00:30 +00:00
|
|
|
FILE_NEW_RESOURCE,
|
2021-09-23 21:09:15 +00:00
|
|
|
FILE_NEW_TEXTFILE,
|
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
|
|
|
};
|
|
|
|
|
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;
|
|
|
|
VSplitContainer *split_box = nullptr;
|
|
|
|
VBoxContainer *file_list_vb = nullptr;
|
2015-08-23 23:15:56 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
Set<String> favorites;
|
|
|
|
|
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;
|
|
|
|
LineEdit *current_path = 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
|
|
|
|
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
|
|
|
|
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 *rename_dialog = nullptr;
|
|
|
|
LineEdit *rename_dialog_text = nullptr;
|
|
|
|
ConfirmationDialog *duplicate_dialog = nullptr;
|
|
|
|
LineEdit *duplicate_dialog_text = nullptr;
|
|
|
|
ConfirmationDialog *make_dir_dialog = nullptr;
|
|
|
|
LineEdit *make_dir_dialog_text = nullptr;
|
|
|
|
ConfirmationDialog *make_scene_dialog = nullptr;
|
|
|
|
LineEdit *make_scene_dialog_text = nullptr;
|
|
|
|
ConfirmationDialog *overwrite_dialog = nullptr;
|
|
|
|
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
|
|
|
|
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;
|
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;
|
|
|
|
|
2022-02-15 14:56:58 +00:00
|
|
|
bool initialized = false;
|
2014-05-16 11:48:23 +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-04-04 13:06:57 +00:00
|
|
|
Tree *tree = nullptr;
|
|
|
|
ItemList *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;
|
|
|
|
|
|
|
|
void _tree_mouse_exited();
|
|
|
|
void _reselect_items_selected_on_drag_begin(bool reset = false);
|
|
|
|
|
2020-10-07 19:56:53 +00:00
|
|
|
Ref<Texture2D> _get_tree_item_icon(bool p_is_valid, String p_file_type);
|
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);
|
2018-09-13 21:28:21 +00:00
|
|
|
Vector<String> _compute_uncollapsed_paths();
|
2019-11-21 14:40:11 +00:00
|
|
|
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
|
|
|
|
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
|
|
|
|
2020-08-14 06:31:41 +00:00
|
|
|
void _get_imported_files(const String &p_path, Vector<String> &files) const;
|
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;
|
2019-06-04 03:36:23 +00:00
|
|
|
void _save_scenes_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;
|
2019-06-26 13:08:25 +00:00
|
|
|
void _update_project_settings_after_move(const Map<String, String> &p_renames) const;
|
2017-10-01 21:59:27 +00:00
|
|
|
|
2020-03-17 00:40:15 +00:00
|
|
|
void _file_removed(String p_file);
|
|
|
|
void _folder_removed(String p_folder);
|
2018-11-13 19:17:33 +00:00
|
|
|
|
2020-02-21 16:44:59 +00:00
|
|
|
void _resource_created();
|
2017-10-01 22:33:43 +00:00
|
|
|
void _make_dir_confirm();
|
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();
|
2018-05-29 12:33:11 +00:00
|
|
|
void _move_with_overwrite();
|
2020-12-10 11:53:56 +00:00
|
|
|
Vector<String> _check_existing();
|
2020-03-03 09:46:03 +00:00
|
|
|
void _move_operation_confirm(const String &p_to_path, bool p_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);
|
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
|
|
|
|
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
|
|
|
|
2020-10-07 19:56:53 +00:00
|
|
|
MenuButton *_create_file_menu_button();
|
|
|
|
void _file_sort_popup(int p_id);
|
|
|
|
|
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);
|
2019-04-09 17:22:14 +00:00
|
|
|
void _tree_rmb_empty(const Vector2 &p_pos);
|
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);
|
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;
|
|
|
|
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
|
|
|
|
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
|
|
|
}
|
|
|
|
};
|
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
|
|
|
|
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);
|
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
|
|
|
|
2018-08-23 15:00:30 +00:00
|
|
|
Vector<String> _tree_get_selected(bool remove_self_inclusion = true);
|
|
|
|
|
2019-04-08 22:18:03 +00:00
|
|
|
bool _is_file_type_disabled_by_feature_profile(const StringName &p_class);
|
|
|
|
|
|
|
|
void _feature_profile_changed();
|
2019-08-09 23:15:25 +00:00
|
|
|
Vector<String> _remove_self_included_paths(Vector<String> selected_strings);
|
2019-04-08 22:18:03 +00:00
|
|
|
|
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:
|
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
|
|
|
|
2022-03-10 16:46:31 +00:00
|
|
|
ScriptCreateDialog *get_script_create_dialog() const;
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void fix_dependencies(const String &p_for_file);
|
2015-08-23 23:15:56 +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
|
|
|
|
2019-02-25 22:39:49 +00:00
|
|
|
void set_display_mode(DisplayMode p_display_mode);
|
|
|
|
DisplayMode get_display_mode() { return display_mode; }
|
|
|
|
|
2020-10-07 19:56:53 +00:00
|
|
|
void set_file_sort(FileSortOption p_file_sort);
|
|
|
|
FileSortOption get_file_sort() { return file_sort; }
|
|
|
|
|
2019-02-25 22:39:49 +00:00
|
|
|
void set_file_list_display_mode(FileListDisplayMode p_mode);
|
|
|
|
FileListDisplayMode get_file_list_display_mode() { return file_list_display_mode; };
|
|
|
|
|
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
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SCENES_DOCK_H
|