filesystem_dock.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439
  1. /**************************************************************************/
  2. /* filesystem_dock.h */
  3. /**************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /**************************************************************************/
  8. /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
  9. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  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/dependency_editor.h"
  33. #include "editor/editor_file_system.h"
  34. #include "editor/plugins/script_editor_plugin.h"
  35. #include "editor/script_create_dialog.h"
  36. #include "scene/gui/box_container.h"
  37. #include "scene/gui/control.h"
  38. #include "scene/gui/dialogs.h"
  39. #include "scene/gui/menu_button.h"
  40. #include "scene/gui/split_container.h"
  41. #include "scene/gui/tree.h"
  42. class CreateDialog;
  43. class EditorDirDialog;
  44. class ItemList;
  45. class LineEdit;
  46. class ProgressBar;
  47. class SceneCreateDialog;
  48. class ShaderCreateDialog;
  49. class DirectoryCreateDialog;
  50. class EditorResourceTooltipPlugin;
  51. class FileSystemTree : public Tree {
  52. virtual Control *make_custom_tooltip(const String &p_text) const;
  53. };
  54. class FileSystemList : public ItemList {
  55. GDCLASS(FileSystemList, ItemList);
  56. VBoxContainer *popup_editor_vb = nullptr;
  57. Popup *popup_editor = nullptr;
  58. LineEdit *line_editor = nullptr;
  59. virtual Control *make_custom_tooltip(const String &p_text) const override;
  60. void _line_editor_submit(const String &p_text);
  61. void _text_editor_popup_modal_close();
  62. protected:
  63. static void _bind_methods();
  64. public:
  65. bool edit_selected();
  66. String get_edit_text();
  67. FileSystemList();
  68. };
  69. class FileSystemDock : public VBoxContainer {
  70. GDCLASS(FileSystemDock, VBoxContainer);
  71. public:
  72. enum FileListDisplayMode {
  73. FILE_LIST_DISPLAY_THUMBNAILS,
  74. FILE_LIST_DISPLAY_LIST
  75. };
  76. enum DisplayMode {
  77. DISPLAY_MODE_TREE_ONLY,
  78. DISPLAY_MODE_VSPLIT,
  79. DISPLAY_MODE_HSPLIT,
  80. };
  81. enum FileSortOption {
  82. FILE_SORT_NAME = 0,
  83. FILE_SORT_NAME_REVERSE,
  84. FILE_SORT_TYPE,
  85. FILE_SORT_TYPE_REVERSE,
  86. FILE_SORT_MODIFIED_TIME,
  87. FILE_SORT_MODIFIED_TIME_REVERSE,
  88. FILE_SORT_MAX,
  89. };
  90. enum Overwrite {
  91. OVERWRITE_UNDECIDED,
  92. OVERWRITE_REPLACE,
  93. OVERWRITE_RENAME,
  94. };
  95. private:
  96. enum FileMenu {
  97. FILE_OPEN,
  98. FILE_INHERIT,
  99. FILE_MAIN_SCENE,
  100. FILE_INSTANTIATE,
  101. FILE_ADD_FAVORITE,
  102. FILE_REMOVE_FAVORITE,
  103. FILE_SHOW_IN_FILESYSTEM,
  104. FILE_DEPENDENCIES,
  105. FILE_OWNERS,
  106. FILE_MOVE,
  107. FILE_RENAME,
  108. FILE_REMOVE,
  109. FILE_DUPLICATE,
  110. FILE_REIMPORT,
  111. FILE_INFO,
  112. FILE_NEW,
  113. FILE_SHOW_IN_EXPLORER,
  114. FILE_OPEN_EXTERNAL,
  115. FILE_OPEN_IN_TERMINAL,
  116. FILE_COPY_PATH,
  117. FILE_COPY_ABSOLUTE_PATH,
  118. FILE_COPY_UID,
  119. FOLDER_EXPAND_ALL,
  120. FOLDER_COLLAPSE_ALL,
  121. FILE_NEW_RESOURCE,
  122. FILE_NEW_TEXTFILE,
  123. FILE_NEW_FOLDER,
  124. FILE_NEW_SCRIPT,
  125. FILE_NEW_SCENE,
  126. };
  127. HashMap<String, String> icon_cache;
  128. HashMap<String, Color> folder_colors;
  129. Dictionary assigned_folder_colors;
  130. FileSortOption file_sort = FILE_SORT_NAME;
  131. VBoxContainer *scanning_vb = nullptr;
  132. ProgressBar *scanning_progress = nullptr;
  133. SplitContainer *split_box = nullptr;
  134. VBoxContainer *file_list_vb = nullptr;
  135. int split_box_offset_h = 0;
  136. int split_box_offset_v = 0;
  137. HashSet<String> favorites;
  138. Button *button_dock_placement = nullptr;
  139. Button *button_toggle_display_mode = nullptr;
  140. Button *button_reload = nullptr;
  141. Button *button_file_list_display_mode = nullptr;
  142. Button *button_hist_next = nullptr;
  143. Button *button_hist_prev = nullptr;
  144. LineEdit *current_path_line_edit = nullptr;
  145. HBoxContainer *toolbar2_hbc = nullptr;
  146. LineEdit *tree_search_box = nullptr;
  147. MenuButton *tree_button_sort = nullptr;
  148. LineEdit *file_list_search_box = nullptr;
  149. MenuButton *file_list_button_sort = nullptr;
  150. PackedStringArray searched_tokens;
  151. Vector<String> uncollapsed_paths_before_search;
  152. TextureRect *search_icon = nullptr;
  153. HBoxContainer *path_hb = nullptr;
  154. FileListDisplayMode file_list_display_mode;
  155. DisplayMode display_mode;
  156. DisplayMode old_display_mode;
  157. PopupMenu *file_list_popup = nullptr;
  158. PopupMenu *tree_popup = nullptr;
  159. DependencyEditor *deps_editor = nullptr;
  160. DependencyEditorOwners *owners_editor = nullptr;
  161. DependencyRemoveDialog *remove_dialog = nullptr;
  162. EditorDirDialog *move_dialog = nullptr;
  163. ConfirmationDialog *duplicate_dialog = nullptr;
  164. LineEdit *duplicate_dialog_text = nullptr;
  165. DirectoryCreateDialog *make_dir_dialog = nullptr;
  166. ConfirmationDialog *overwrite_dialog = nullptr;
  167. ScrollContainer *overwrite_dialog_scroll = nullptr;
  168. Label *overwrite_dialog_header = nullptr;
  169. Label *overwrite_dialog_footer = nullptr;
  170. Label *overwrite_dialog_file_list = nullptr;
  171. SceneCreateDialog *make_scene_dialog = nullptr;
  172. ScriptCreateDialog *make_script_dialog = nullptr;
  173. ShaderCreateDialog *make_shader_dialog = nullptr;
  174. CreateDialog *new_resource_dialog = nullptr;
  175. bool always_show_folders = false;
  176. bool editor_is_dark_theme = false;
  177. class FileOrFolder {
  178. public:
  179. String path;
  180. bool is_file = false;
  181. FileOrFolder() {}
  182. FileOrFolder(const String &p_path, bool p_is_file) :
  183. path(p_path),
  184. is_file(p_is_file) {}
  185. };
  186. FileOrFolder to_rename;
  187. FileOrFolder to_duplicate;
  188. Vector<FileOrFolder> to_move;
  189. String to_move_path;
  190. bool to_move_or_copy = false;
  191. Vector<String> history;
  192. int history_pos;
  193. int history_max_size;
  194. String current_path;
  195. String select_after_scan;
  196. bool updating_tree = false;
  197. int tree_update_id;
  198. FileSystemTree *tree = nullptr;
  199. FileSystemList *files = nullptr;
  200. bool import_dock_needs_update = false;
  201. bool holding_branch = false;
  202. Vector<TreeItem *> tree_items_selected_on_drag_begin;
  203. PackedInt32Array list_items_selected_on_drag_begin;
  204. LocalVector<Ref<EditorResourceTooltipPlugin>> tooltip_plugins;
  205. void _tree_mouse_exited();
  206. void _reselect_items_selected_on_drag_begin(bool reset = false);
  207. Ref<Texture2D> _get_tree_item_icon(bool p_is_valid, const String &p_file_type, const String &p_icon_path);
  208. String _get_entry_script_icon(const EditorFileSystemDirectory *p_dir, int p_file);
  209. bool _create_tree(TreeItem *p_parent, EditorFileSystemDirectory *p_dir, Vector<String> &uncollapsed_paths, bool p_select_in_favorites, bool p_unfold_path = false);
  210. 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);
  211. void _navigate_to_path(const String &p_path, bool p_select_in_favorites = false);
  212. void _file_list_gui_input(Ref<InputEvent> p_event);
  213. void _tree_gui_input(Ref<InputEvent> p_event);
  214. void _update_file_list(bool p_keep_selection);
  215. void _toggle_file_display();
  216. void _set_file_display(bool p_active);
  217. void _fs_changed();
  218. void _select_file(const String &p_path, bool p_select_in_favorites = false);
  219. void _tree_activate_file();
  220. void _file_list_activate_file(int p_idx);
  221. void _file_multi_selected(int p_index, bool p_selected);
  222. void _tree_multi_selected(Object *p_item, int p_column, bool p_selected);
  223. bool _get_imported_files(const String &p_path, String &r_extension, Vector<String> &r_files) const;
  224. void _update_import_dock();
  225. void _get_all_items_in_dir(EditorFileSystemDirectory *p_efsd, Vector<String> &r_files, Vector<String> &r_folders) const;
  226. void _find_file_owners(EditorFileSystemDirectory *p_efsd, const HashSet<String> &p_renames, HashSet<String> &r_file_owners) const;
  227. 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);
  228. void _try_duplicate_item(const FileOrFolder &p_item, const String &p_new_path) const;
  229. void _before_move(HashMap<String, ResourceUID::ID> &r_uids, HashSet<String> &r_file_owners) const;
  230. void _update_dependencies_after_move(const HashMap<String, String> &p_renames, const HashSet<String> &p_file_owners) const;
  231. void _update_resource_paths_after_move(const HashMap<String, String> &p_renames, const HashMap<String, ResourceUID::ID> &p_uids) const;
  232. void _update_favorites_list_after_move(const HashMap<String, String> &p_files_renames, const HashMap<String, String> &p_folders_renames) const;
  233. void _update_project_settings_after_move(const HashMap<String, String> &p_renames, const HashMap<String, String> &p_folders_renames);
  234. String _get_unique_name(const FileOrFolder &p_entry, const String &p_at_path);
  235. void _update_folder_colors_setting();
  236. void _resource_removed(const Ref<Resource> &p_resource);
  237. void _file_removed(const String &p_file);
  238. void _folder_removed(const String &p_folder);
  239. void _resource_created();
  240. void _make_scene_confirm();
  241. void _rename_operation_confirm();
  242. void _duplicate_operation_confirm();
  243. void _overwrite_dialog_action(bool p_overwrite);
  244. Vector<String> _check_existing();
  245. void _move_operation_confirm(const String &p_to_path, bool p_copy = false, Overwrite p_overwrite = OVERWRITE_UNDECIDED);
  246. void _tree_rmb_option(int p_option);
  247. void _file_list_rmb_option(int p_option);
  248. void _file_option(int p_option, const Vector<String> &p_selected);
  249. void _fw_history();
  250. void _bw_history();
  251. void _update_history();
  252. void _push_to_history();
  253. void _set_scanning_mode();
  254. void _rescan();
  255. void _change_split_mode();
  256. void _split_dragged(int p_offset);
  257. void _search_changed(const String &p_text, const Control *p_from);
  258. bool _matches_all_search_tokens(const String &p_text);
  259. MenuButton *_create_file_menu_button();
  260. void _file_sort_popup(int p_id);
  261. void _folder_color_index_pressed(int p_index, PopupMenu *p_menu);
  262. void _file_and_folders_fill_popup(PopupMenu *p_popup, const Vector<String> &p_paths, bool p_display_path_dependent_options = true);
  263. void _tree_rmb_select(const Vector2 &p_pos, MouseButton p_button);
  264. void _file_list_item_clicked(int p_item, const Vector2 &p_pos, MouseButton p_mouse_button_index);
  265. void _file_list_empty_clicked(const Vector2 &p_pos, MouseButton p_mouse_button_index);
  266. void _tree_empty_click(const Vector2 &p_pos, MouseButton p_button);
  267. void _tree_empty_selected();
  268. struct FileInfo {
  269. String name;
  270. String path;
  271. String icon_path;
  272. StringName type;
  273. Vector<String> sources;
  274. bool import_broken = false;
  275. uint64_t modified_time = 0;
  276. bool operator<(const FileInfo &fi) const {
  277. return FileNoCaseComparator()(name, fi.name);
  278. }
  279. };
  280. struct FileInfoTypeComparator;
  281. struct FileInfoModifiedTimeComparator;
  282. void _sort_file_info_list(List<FileSystemDock::FileInfo> &r_file_list);
  283. void _search(EditorFileSystemDirectory *p_path, List<FileInfo> *matches, int p_max_items);
  284. void _set_current_path_line_edit_text(const String &p_path);
  285. Variant get_drag_data_fw(const Point2 &p_point, Control *p_from);
  286. bool can_drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_from) const;
  287. void drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_from);
  288. void _get_drag_target_folder(String &target, bool &target_favorites, const Point2 &p_point, Control *p_from) const;
  289. void _preview_invalidated(const String &p_path);
  290. void _file_list_thumbnail_done(const String &p_path, const Ref<Texture2D> &p_preview, const Ref<Texture2D> &p_small_preview, const Variant &p_udata);
  291. void _tree_thumbnail_done(const String &p_path, const Ref<Texture2D> &p_preview, const Ref<Texture2D> &p_small_preview, const Variant &p_udata);
  292. void _update_display_mode(bool p_force = false);
  293. Vector<String> _tree_get_selected(bool remove_self_inclusion = true, bool p_include_unselected_cursor = false) const;
  294. bool _is_file_type_disabled_by_feature_profile(const StringName &p_class);
  295. void _feature_profile_changed();
  296. void _project_settings_changed();
  297. static Vector<String> _remove_self_included_paths(Vector<String> selected_strings);
  298. void _change_bottom_dock_placement();
  299. bool _can_dock_horizontal() const;
  300. void _set_dock_horizontal(bool p_enable);
  301. private:
  302. static FileSystemDock *singleton;
  303. public:
  304. static FileSystemDock *get_singleton() { return singleton; }
  305. protected:
  306. void _notification(int p_what);
  307. static void _bind_methods();
  308. public:
  309. static constexpr double ITEM_COLOR_SCALE = 1.75;
  310. static constexpr double ITEM_ALPHA_MIN = 0.1;
  311. static constexpr double ITEM_ALPHA_MAX = 0.15;
  312. static constexpr double ITEM_BG_DARK_SCALE = 0.3;
  313. const HashMap<String, Color> &get_folder_colors() const;
  314. Dictionary get_assigned_folder_colors() const;
  315. Vector<String> get_selected_paths() const;
  316. Vector<String> get_uncollapsed_paths() const;
  317. String get_current_path() const;
  318. String get_current_directory() const;
  319. void navigate_to_path(const String &p_path);
  320. void focus_on_path();
  321. void focus_on_filter();
  322. ScriptCreateDialog *get_script_create_dialog() const;
  323. void fix_dependencies(const String &p_for_file);
  324. int get_h_split_offset() const { return split_box_offset_h; }
  325. void set_h_split_offset(int p_offset) { split_box_offset_h = p_offset; }
  326. int get_v_split_offset() const { return split_box_offset_v; }
  327. void set_v_split_offset(int p_offset) { split_box_offset_v = p_offset; }
  328. void select_file(const String &p_file);
  329. void set_display_mode(DisplayMode p_display_mode);
  330. DisplayMode get_display_mode() const { return display_mode; }
  331. void set_file_sort(FileSortOption p_file_sort);
  332. FileSortOption get_file_sort() const { return file_sort; }
  333. void set_file_list_display_mode(FileListDisplayMode p_mode);
  334. FileListDisplayMode get_file_list_display_mode() const { return file_list_display_mode; };
  335. Tree *get_tree_control() { return tree; }
  336. void add_resource_tooltip_plugin(const Ref<EditorResourceTooltipPlugin> &p_plugin);
  337. void remove_resource_tooltip_plugin(const Ref<EditorResourceTooltipPlugin> &p_plugin);
  338. Control *create_tooltip_for_path(const String &p_path) const;
  339. void save_layout_to_config(Ref<ConfigFile> p_layout, const String &p_section) const;
  340. void load_layout_from_config(Ref<ConfigFile> p_layout, const String &p_section);
  341. FileSystemDock();
  342. ~FileSystemDock();
  343. };
  344. VARIANT_ENUM_CAST(FileSystemDock::Overwrite);
  345. #endif // FILESYSTEM_DOCK_H