filesystem_dock.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345
  1. /*************************************************************************/
  2. /* filesystem_dock.h */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /*************************************************************************/
  30. #ifndef FILESYSTEM_DOCK_H
  31. #define FILESYSTEM_DOCK_H
  32. #include "editor/create_dialog.h"
  33. #include "editor/dependency_editor.h"
  34. #include "editor/editor_dir_dialog.h"
  35. #include "editor/editor_file_system.h"
  36. #include "editor/plugins/script_editor_plugin.h"
  37. #include "editor/script_create_dialog.h"
  38. #include "scene/gui/box_container.h"
  39. #include "scene/gui/control.h"
  40. #include "scene/gui/dialogs.h"
  41. #include "scene/gui/item_list.h"
  42. #include "scene/gui/line_edit.h"
  43. #include "scene/gui/menu_button.h"
  44. #include "scene/gui/progress_bar.h"
  45. #include "scene/gui/split_container.h"
  46. #include "scene/gui/tree.h"
  47. class SceneCreateDialog;
  48. class ShaderCreateDialog;
  49. class FileSystemDock : public VBoxContainer {
  50. GDCLASS(FileSystemDock, VBoxContainer);
  51. public:
  52. enum FileListDisplayMode {
  53. FILE_LIST_DISPLAY_THUMBNAILS,
  54. FILE_LIST_DISPLAY_LIST
  55. };
  56. enum DisplayMode {
  57. DISPLAY_MODE_TREE_ONLY,
  58. DISPLAY_MODE_SPLIT,
  59. };
  60. enum FileSortOption {
  61. FILE_SORT_NAME = 0,
  62. FILE_SORT_NAME_REVERSE,
  63. FILE_SORT_TYPE,
  64. FILE_SORT_TYPE_REVERSE,
  65. FILE_SORT_MODIFIED_TIME,
  66. FILE_SORT_MODIFIED_TIME_REVERSE,
  67. FILE_SORT_MAX,
  68. };
  69. private:
  70. enum FileMenu {
  71. FILE_OPEN,
  72. FILE_INHERIT,
  73. FILE_MAIN_SCENE,
  74. FILE_INSTANCE,
  75. FILE_ADD_FAVORITE,
  76. FILE_REMOVE_FAVORITE,
  77. FILE_DEPENDENCIES,
  78. FILE_OWNERS,
  79. FILE_MOVE,
  80. FILE_RENAME,
  81. FILE_REMOVE,
  82. FILE_DUPLICATE,
  83. FILE_REIMPORT,
  84. FILE_INFO,
  85. FILE_NEW_FOLDER,
  86. FILE_NEW_SCRIPT,
  87. FILE_NEW_SCENE,
  88. FILE_SHOW_IN_EXPLORER,
  89. FILE_COPY_PATH,
  90. FILE_COPY_UID,
  91. FILE_NEW_RESOURCE,
  92. FILE_NEW_TEXTFILE,
  93. FOLDER_EXPAND_ALL,
  94. FOLDER_COLLAPSE_ALL,
  95. };
  96. FileSortOption file_sort = FILE_SORT_NAME;
  97. VBoxContainer *scanning_vb = nullptr;
  98. ProgressBar *scanning_progress = nullptr;
  99. VSplitContainer *split_box = nullptr;
  100. VBoxContainer *file_list_vb = nullptr;
  101. HashSet<String> favorites;
  102. Button *button_toggle_display_mode = nullptr;
  103. Button *button_reload = nullptr;
  104. Button *button_file_list_display_mode = nullptr;
  105. Button *button_hist_next = nullptr;
  106. Button *button_hist_prev = nullptr;
  107. LineEdit *current_path = nullptr;
  108. HBoxContainer *toolbar2_hbc = nullptr;
  109. LineEdit *tree_search_box = nullptr;
  110. MenuButton *tree_button_sort = nullptr;
  111. LineEdit *file_list_search_box = nullptr;
  112. MenuButton *file_list_button_sort = nullptr;
  113. String searched_string;
  114. Vector<String> uncollapsed_paths_before_search;
  115. TextureRect *search_icon = nullptr;
  116. HBoxContainer *path_hb = nullptr;
  117. FileListDisplayMode file_list_display_mode;
  118. DisplayMode display_mode;
  119. DisplayMode old_display_mode;
  120. PopupMenu *file_list_popup = nullptr;
  121. PopupMenu *tree_popup = nullptr;
  122. DependencyEditor *deps_editor = nullptr;
  123. DependencyEditorOwners *owners_editor = nullptr;
  124. DependencyRemoveDialog *remove_dialog = nullptr;
  125. EditorDirDialog *move_dialog = nullptr;
  126. ConfirmationDialog *rename_dialog = nullptr;
  127. LineEdit *rename_dialog_text = nullptr;
  128. ConfirmationDialog *duplicate_dialog = nullptr;
  129. LineEdit *duplicate_dialog_text = nullptr;
  130. ConfirmationDialog *make_dir_dialog = nullptr;
  131. LineEdit *make_dir_dialog_text = nullptr;
  132. ConfirmationDialog *overwrite_dialog = nullptr;
  133. SceneCreateDialog *make_scene_dialog = nullptr;
  134. ScriptCreateDialog *make_script_dialog = nullptr;
  135. ShaderCreateDialog *make_shader_dialog = nullptr;
  136. CreateDialog *new_resource_dialog = nullptr;
  137. bool always_show_folders = false;
  138. class FileOrFolder {
  139. public:
  140. String path;
  141. bool is_file = false;
  142. FileOrFolder() {}
  143. FileOrFolder(const String &p_path, bool p_is_file) :
  144. path(p_path),
  145. is_file(p_is_file) {}
  146. };
  147. FileOrFolder to_rename;
  148. FileOrFolder to_duplicate;
  149. Vector<FileOrFolder> to_move;
  150. String to_move_path;
  151. Vector<String> history;
  152. int history_pos;
  153. int history_max_size;
  154. String path;
  155. bool initialized = false;
  156. bool updating_tree = false;
  157. int tree_update_id;
  158. Tree *tree = nullptr;
  159. ItemList *files = nullptr;
  160. bool import_dock_needs_update = false;
  161. bool holding_branch = false;
  162. Vector<TreeItem *> tree_items_selected_on_drag_begin;
  163. PackedInt32Array list_items_selected_on_drag_begin;
  164. void _tree_mouse_exited();
  165. void _reselect_items_selected_on_drag_begin(bool reset = false);
  166. Ref<Texture2D> _get_tree_item_icon(bool p_is_valid, String p_file_type);
  167. bool _create_tree(TreeItem *p_parent, EditorFileSystemDirectory *p_dir, Vector<String> &uncollapsed_paths, bool p_select_in_favorites, bool p_unfold_path = false);
  168. Vector<String> _compute_uncollapsed_paths();
  169. 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);
  170. void _navigate_to_path(const String &p_path, bool p_select_in_favorites = false);
  171. void _file_list_gui_input(Ref<InputEvent> p_event);
  172. void _tree_gui_input(Ref<InputEvent> p_event);
  173. void _update_file_list(bool p_keep_selection);
  174. void _toggle_file_display();
  175. void _set_file_display(bool p_active);
  176. void _fs_changed();
  177. void _select_file(const String &p_path, bool p_select_in_favorites = false);
  178. void _tree_activate_file();
  179. void _file_list_activate_file(int p_idx);
  180. void _file_multi_selected(int p_index, bool p_selected);
  181. void _tree_multi_selected(Object *p_item, int p_column, bool p_selected);
  182. void _get_imported_files(const String &p_path, Vector<String> &r_files) const;
  183. void _update_import_dock();
  184. void _get_all_items_in_dir(EditorFileSystemDirectory *p_efsd, Vector<String> &r_files, Vector<String> &r_folders) const;
  185. void _find_remaps(EditorFileSystemDirectory *p_efsd, const HashMap<String, String> &r_renames, Vector<String> &r_to_remaps) const;
  186. 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);
  187. void _try_duplicate_item(const FileOrFolder &p_item, const String &p_new_path) const;
  188. void _update_dependencies_after_move(const HashMap<String, String> &p_renames) const;
  189. void _update_resource_paths_after_move(const HashMap<String, String> &p_renames) const;
  190. void _save_scenes_after_move(const HashMap<String, String> &p_renames) const;
  191. void _update_favorites_list_after_move(const HashMap<String, String> &p_files_renames, const HashMap<String, String> &p_folders_renames) const;
  192. void _update_project_settings_after_move(const HashMap<String, String> &p_renames) const;
  193. void _file_removed(String p_file);
  194. void _folder_removed(String p_folder);
  195. void _resource_created();
  196. void _make_dir_confirm();
  197. void _make_scene_confirm();
  198. void _rename_operation_confirm();
  199. void _duplicate_operation_confirm();
  200. void _move_with_overwrite();
  201. Vector<String> _check_existing();
  202. void _move_operation_confirm(const String &p_to_path, bool p_overwrite = false);
  203. void _tree_rmb_option(int p_option);
  204. void _file_list_rmb_option(int p_option);
  205. void _file_option(int p_option, const Vector<String> &p_selected);
  206. void _fw_history();
  207. void _bw_history();
  208. void _update_history();
  209. void _push_to_history();
  210. void _set_scanning_mode();
  211. void _rescan();
  212. void _toggle_split_mode(bool p_active);
  213. void _search_changed(const String &p_text, const Control *p_from);
  214. MenuButton *_create_file_menu_button();
  215. void _file_sort_popup(int p_id);
  216. void _file_and_folders_fill_popup(PopupMenu *p_popup, Vector<String> p_paths, bool p_display_path_dependent_options = true);
  217. void _tree_rmb_select(const Vector2 &p_pos, MouseButton p_button);
  218. void _file_list_item_clicked(int p_item, const Vector2 &p_pos, MouseButton p_mouse_button_index);
  219. void _file_list_empty_clicked(const Vector2 &p_pos, MouseButton p_mouse_button_index);
  220. void _tree_empty_click(const Vector2 &p_pos, MouseButton p_button);
  221. void _tree_empty_selected();
  222. struct FileInfo {
  223. String name;
  224. String path;
  225. StringName type;
  226. Vector<String> sources;
  227. bool import_broken = false;
  228. uint64_t modified_time = 0;
  229. bool operator<(const FileInfo &fi) const {
  230. return NaturalNoCaseComparator()(name, fi.name);
  231. }
  232. };
  233. struct FileInfoTypeComparator;
  234. struct FileInfoModifiedTimeComparator;
  235. void _sort_file_info_list(List<FileSystemDock::FileInfo> &r_file_list);
  236. void _search(EditorFileSystemDirectory *p_path, List<FileInfo> *matches, int p_max_items);
  237. void _set_current_path_text(const String &p_path);
  238. Variant get_drag_data_fw(const Point2 &p_point, Control *p_from);
  239. bool can_drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_from) const;
  240. void drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_from);
  241. void _get_drag_target_folder(String &target, bool &target_favorites, const Point2 &p_point, Control *p_from) const;
  242. void _preview_invalidated(const String &p_path);
  243. void _file_list_thumbnail_done(const String &p_path, const Ref<Texture2D> &p_preview, const Ref<Texture2D> &p_small_preview, const Variant &p_udata);
  244. void _tree_thumbnail_done(const String &p_path, const Ref<Texture2D> &p_preview, const Ref<Texture2D> &p_small_preview, const Variant &p_udata);
  245. void _update_display_mode(bool p_force = false);
  246. Vector<String> _tree_get_selected(bool remove_self_inclusion = true);
  247. bool _is_file_type_disabled_by_feature_profile(const StringName &p_class);
  248. void _feature_profile_changed();
  249. Vector<String> _remove_self_included_paths(Vector<String> selected_strings);
  250. private:
  251. static FileSystemDock *singleton;
  252. public:
  253. static FileSystemDock *get_singleton() { return singleton; }
  254. protected:
  255. void _notification(int p_what);
  256. static void _bind_methods();
  257. public:
  258. String get_selected_path() const;
  259. String get_current_path() const;
  260. void navigate_to_path(const String &p_path);
  261. void focus_on_filter();
  262. ScriptCreateDialog *get_script_create_dialog() const;
  263. void fix_dependencies(const String &p_for_file);
  264. int get_split_offset() { return split_box->get_split_offset(); }
  265. void set_split_offset(int p_offset) { split_box->set_split_offset(p_offset); }
  266. void select_file(const String &p_file);
  267. void set_display_mode(DisplayMode p_display_mode);
  268. DisplayMode get_display_mode() { return display_mode; }
  269. void set_file_sort(FileSortOption p_file_sort);
  270. FileSortOption get_file_sort() { return file_sort; }
  271. void set_file_list_display_mode(FileListDisplayMode p_mode);
  272. FileListDisplayMode get_file_list_display_mode() { return file_list_display_mode; };
  273. FileSystemDock();
  274. ~FileSystemDock();
  275. };
  276. #endif // FILESYSTEM_DOCK_H