| 
									
										
										
										
											2023-01-05 13:25:55 +01:00
										 |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*  filesystem_dock.h                                                     */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*                         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-05 00:50:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-21 10:34:57 -03:00
										 |  |  | #ifndef FILESYSTEM_DOCK_H
 | 
					
						
							|  |  |  | #define FILESYSTEM_DOCK_H
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-14 14:00:03 +01: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"
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | #include "scene/gui/box_container.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | #include "scene/gui/control.h"
 | 
					
						
							| 
									
										
										
										
											2017-10-01 22:59:27 +01:00
										 |  |  | #include "scene/gui/dialogs.h"
 | 
					
						
							| 
									
										
										
										
											2015-08-23 20:15:56 -03:00
										 |  |  | #include "scene/gui/menu_button.h"
 | 
					
						
							| 
									
										
										
										
											2016-05-15 20:25:51 -03:00
										 |  |  | #include "scene/gui/split_container.h"
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | #include "scene/gui/tree.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-07 18:59:49 +02:00
										 |  |  | class CreateDialog; | 
					
						
							|  |  |  | class EditorDirDialog; | 
					
						
							|  |  |  | class ItemList; | 
					
						
							|  |  |  | class LineEdit; | 
					
						
							|  |  |  | class ProgressBar; | 
					
						
							| 
									
										
										
										
											2022-06-12 02:11:52 +02:00
										 |  |  | class SceneCreateDialog; | 
					
						
							| 
									
										
										
										
											2021-12-03 17:45:32 +03:00
										 |  |  | class ShaderCreateDialog; | 
					
						
							| 
									
										
										
										
											2023-04-15 18:15:57 +08:00
										 |  |  | class DirectoryCreateDialog; | 
					
						
							| 
									
										
										
										
											2022-07-20 23:44:06 +02:00
										 |  |  | class EditorResourceTooltipPlugin; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class FileSystemTree : public Tree { | 
					
						
							|  |  |  | 	virtual Control *make_custom_tooltip(const String &p_text) const; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class FileSystemList : public ItemList { | 
					
						
							| 
									
										
										
										
											2023-05-26 17:04:14 -04:00
										 |  |  | 	GDCLASS(FileSystemList, ItemList); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	VBoxContainer *popup_editor_vb = nullptr; | 
					
						
							|  |  |  | 	Popup *popup_editor = nullptr; | 
					
						
							|  |  |  | 	LineEdit *line_editor = nullptr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	virtual Control *make_custom_tooltip(const String &p_text) const override; | 
					
						
							|  |  |  | 	void _line_editor_submit(String p_text); | 
					
						
							|  |  |  | 	void _text_editor_popup_modal_close(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | protected: | 
					
						
							|  |  |  | 	static void _bind_methods(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  | 	bool edit_selected(); | 
					
						
							|  |  |  | 	String get_edit_text(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	FileSystemList(); | 
					
						
							| 
									
										
										
										
											2022-07-20 23:44:06 +02:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-21 10:34:57 -03:00
										 |  |  | class FileSystemDock : public VBoxContainer { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	GDCLASS(FileSystemDock, VBoxContainer); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-16 13:25:42 -03:00
										 |  |  | public: | 
					
						
							| 
									
										
										
										
											2018-08-13 19:05:31 +02:00
										 |  |  | 	enum FileListDisplayMode { | 
					
						
							|  |  |  | 		FILE_LIST_DISPLAY_THUMBNAILS, | 
					
						
							|  |  |  | 		FILE_LIST_DISPLAY_LIST | 
					
						
							| 
									
										
										
										
											2016-08-16 13:25:42 -03:00
										 |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-13 19:05:31 +02:00
										 |  |  | 	enum DisplayMode { | 
					
						
							| 
									
										
										
										
											2018-09-13 17:35:44 +02:00
										 |  |  | 		DISPLAY_MODE_TREE_ONLY, | 
					
						
							| 
									
										
										
										
											2023-08-03 23:50:50 +02:00
										 |  |  | 		DISPLAY_MODE_VSPLIT, | 
					
						
							|  |  |  | 		DISPLAY_MODE_HSPLIT, | 
					
						
							| 
									
										
										
										
											2018-08-13 19:05:31 +02:00
										 |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-07 21:56:53 +02:00
										 |  |  | 	enum FileSortOption { | 
					
						
							|  |  |  | 		FILE_SORT_NAME = 0, | 
					
						
							| 
									
										
										
										
											2020-10-22 23:38:41 +02:00
										 |  |  | 		FILE_SORT_NAME_REVERSE, | 
					
						
							| 
									
										
										
										
											2020-10-07 21:56:53 +02:00
										 |  |  | 		FILE_SORT_TYPE, | 
					
						
							| 
									
										
										
										
											2020-10-22 23:38:41 +02:00
										 |  |  | 		FILE_SORT_TYPE_REVERSE, | 
					
						
							|  |  |  | 		FILE_SORT_MODIFIED_TIME, | 
					
						
							|  |  |  | 		FILE_SORT_MODIFIED_TIME_REVERSE, | 
					
						
							| 
									
										
										
										
											2020-10-07 21:56:53 +02:00
										 |  |  | 		FILE_SORT_MAX, | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-24 13:59:32 +08:00
										 |  |  | 	enum Overwrite { | 
					
						
							|  |  |  | 		OVERWRITE_UNDECIDED, | 
					
						
							|  |  |  | 		OVERWRITE_REPLACE, | 
					
						
							|  |  |  | 		OVERWRITE_RENAME, | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-25 23:39:49 +01:00
										 |  |  | private: | 
					
						
							| 
									
										
										
										
											2015-08-23 20:15:56 -03:00
										 |  |  | 	enum FileMenu { | 
					
						
							| 
									
										
										
										
											2016-05-15 20:25:51 -03:00
										 |  |  | 		FILE_OPEN, | 
					
						
							| 
									
										
										
										
											2019-05-07 23:35:23 -03:00
										 |  |  | 		FILE_INHERIT, | 
					
						
							| 
									
										
										
										
											2019-10-30 03:24:38 +09:00
										 |  |  | 		FILE_MAIN_SCENE, | 
					
						
							| 
									
										
										
										
											2022-11-16 00:13:39 +01:00
										 |  |  | 		FILE_INSTANTIATE, | 
					
						
							| 
									
										
										
										
											2018-09-13 18:11:05 +02:00
										 |  |  | 		FILE_ADD_FAVORITE, | 
					
						
							|  |  |  | 		FILE_REMOVE_FAVORITE, | 
					
						
							| 
									
										
										
										
											2015-08-23 20:15:56 -03:00
										 |  |  | 		FILE_DEPENDENCIES, | 
					
						
							|  |  |  | 		FILE_OWNERS, | 
					
						
							|  |  |  | 		FILE_MOVE, | 
					
						
							| 
									
										
										
										
											2017-10-01 22:59:27 +01:00
										 |  |  | 		FILE_RENAME, | 
					
						
							| 
									
										
										
										
											2015-08-23 20:15:56 -03:00
										 |  |  | 		FILE_REMOVE, | 
					
						
							| 
									
										
										
										
											2017-12-01 14:13:50 +03:00
										 |  |  | 		FILE_DUPLICATE, | 
					
						
							| 
									
										
										
										
											2015-08-23 20:15:56 -03:00
										 |  |  | 		FILE_REIMPORT, | 
					
						
							| 
									
										
										
										
											2016-05-18 15:37:59 +08:00
										 |  |  | 		FILE_INFO, | 
					
						
							| 
									
										
										
										
											2023-02-02 09:41:06 +01:00
										 |  |  | 		FILE_NEW, | 
					
						
							| 
									
										
										
										
											2016-06-06 17:20:03 +02:00
										 |  |  | 		FILE_SHOW_IN_EXPLORER, | 
					
						
							| 
									
										
										
										
											2022-11-10 22:26:40 +01:00
										 |  |  | 		FILE_OPEN_EXTERNAL, | 
					
						
							| 
									
										
										
										
											2023-06-16 09:24:32 +02:00
										 |  |  | 		FILE_OPEN_IN_TERMINAL, | 
					
						
							| 
									
										
										
										
											2018-07-22 21:23:40 +05:30
										 |  |  | 		FILE_COPY_PATH, | 
					
						
							| 
									
										
										
										
											2022-05-02 11:51:23 +02:00
										 |  |  | 		FILE_COPY_UID, | 
					
						
							| 
									
										
										
										
											2017-01-10 13:19:59 +01:00
										 |  |  | 		FOLDER_EXPAND_ALL, | 
					
						
							| 
									
										
										
										
											2017-04-24 17:54:51 +02:00
										 |  |  | 		FOLDER_COLLAPSE_ALL, | 
					
						
							| 
									
										
										
										
											2023-02-02 09:41:06 +01:00
										 |  |  | 		FILE_NEW_RESOURCE, | 
					
						
							|  |  |  | 		FILE_NEW_TEXTFILE, | 
					
						
							|  |  |  | 		FILE_NEW_FOLDER, | 
					
						
							|  |  |  | 		FILE_NEW_SCRIPT, | 
					
						
							|  |  |  | 		FILE_NEW_SCENE, | 
					
						
							| 
									
										
										
										
											2017-01-10 13:19:59 +01:00
										 |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-18 21:39:18 -08:00
										 |  |  | 	HashMap<String, Color> folder_colors; | 
					
						
							|  |  |  | 	Dictionary assigned_folder_colors; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-07 21:56:53 +02:00
										 |  |  | 	FileSortOption file_sort = FILE_SORT_NAME; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-04 15:06:57 +02:00
										 |  |  | 	VBoxContainer *scanning_vb = nullptr; | 
					
						
							|  |  |  | 	ProgressBar *scanning_progress = nullptr; | 
					
						
							| 
									
										
										
										
											2023-08-03 23:50:50 +02:00
										 |  |  | 	SplitContainer *split_box = nullptr; | 
					
						
							| 
									
										
										
										
											2022-04-04 15:06:57 +02:00
										 |  |  | 	VBoxContainer *file_list_vb = nullptr; | 
					
						
							| 
									
										
										
										
											2015-08-23 20:15:56 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-03 23:50:50 +02:00
										 |  |  | 	int split_box_offset_h = 0; | 
					
						
							|  |  |  | 	int split_box_offset_v = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-19 17:00:06 +02:00
										 |  |  | 	HashSet<String> favorites; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-04 15:06:57 +02: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 04:17:03 +02:00
										 |  |  | 	LineEdit *current_path_line_edit = nullptr; | 
					
						
							| 
									
										
										
										
											2020-10-07 21:56:53 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-04 15:06:57 +02:00
										 |  |  | 	HBoxContainer *toolbar2_hbc = nullptr; | 
					
						
							|  |  |  | 	LineEdit *tree_search_box = nullptr; | 
					
						
							|  |  |  | 	MenuButton *tree_button_sort = nullptr; | 
					
						
							| 
									
										
										
										
											2020-10-07 21:56:53 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-04 15:06:57 +02:00
										 |  |  | 	LineEdit *file_list_search_box = nullptr; | 
					
						
							|  |  |  | 	MenuButton *file_list_button_sort = nullptr; | 
					
						
							| 
									
										
										
										
											2018-09-13 23:28:21 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-13 21:49:56 +02:00
										 |  |  | 	String searched_string; | 
					
						
							| 
									
										
										
										
											2018-09-13 23:28:21 +02:00
										 |  |  | 	Vector<String> uncollapsed_paths_before_search; | 
					
						
							| 
									
										
										
										
											2018-09-13 21:49:56 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-04 15:06:57 +02:00
										 |  |  | 	TextureRect *search_icon = nullptr; | 
					
						
							|  |  |  | 	HBoxContainer *path_hb = nullptr; | 
					
						
							| 
									
										
										
										
											2015-08-23 20:15:56 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-13 19:05:31 +02:00
										 |  |  | 	FileListDisplayMode file_list_display_mode; | 
					
						
							| 
									
										
										
										
											2016-08-16 13:25:42 -03:00
										 |  |  | 	DisplayMode display_mode; | 
					
						
							| 
									
										
										
										
											2019-02-25 23:39:49 +01:00
										 |  |  | 	DisplayMode old_display_mode; | 
					
						
							| 
									
										
										
										
											2015-08-23 20:15:56 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-04 15:06:57 +02: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 18:15:57 +08:00
										 |  |  | 	DirectoryCreateDialog *make_dir_dialog = nullptr; | 
					
						
							| 
									
										
										
										
											2023-05-18 00:09:44 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-04 15:06:57 +02:00
										 |  |  | 	ConfirmationDialog *overwrite_dialog = nullptr; | 
					
						
							| 
									
										
										
										
											2023-05-18 00:09:44 +02:00
										 |  |  | 	ScrollContainer *overwrite_dialog_scroll = nullptr; | 
					
						
							|  |  |  | 	Label *overwrite_dialog_header = nullptr; | 
					
						
							|  |  |  | 	Label *overwrite_dialog_footer = nullptr; | 
					
						
							|  |  |  | 	Label *overwrite_dialog_file_list = nullptr; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-12 02:11:52 +02:00
										 |  |  | 	SceneCreateDialog *make_scene_dialog = nullptr; | 
					
						
							| 
									
										
										
										
											2022-04-04 15:06:57 +02:00
										 |  |  | 	ScriptCreateDialog *make_script_dialog = nullptr; | 
					
						
							|  |  |  | 	ShaderCreateDialog *make_shader_dialog = nullptr; | 
					
						
							|  |  |  | 	CreateDialog *new_resource_dialog = nullptr; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-15 08:56:58 -06:00
										 |  |  | 	bool always_show_folders = false; | 
					
						
							| 
									
										
										
										
											2018-08-23 17:00:30 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-18 21:39:18 -08:00
										 |  |  | 	bool editor_is_dark_theme = false; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-01 22:59:27 +01:00
										 |  |  | 	class FileOrFolder { | 
					
						
							|  |  |  | 	public: | 
					
						
							|  |  |  | 		String path; | 
					
						
							| 
									
										
										
										
											2020-05-12 17:01:17 +02:00
										 |  |  | 		bool is_file = false; | 
					
						
							| 
									
										
										
										
											2017-10-01 22:59:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-12 17:01:17 +02:00
										 |  |  | 		FileOrFolder() {} | 
					
						
							| 
									
										
										
										
											2017-12-06 21:36:34 +01:00
										 |  |  | 		FileOrFolder(const String &p_path, bool p_is_file) : | 
					
						
							|  |  |  | 				path(p_path), | 
					
						
							|  |  |  | 				is_file(p_is_file) {} | 
					
						
							| 
									
										
										
										
											2017-10-01 22:59:27 +01:00
										 |  |  | 	}; | 
					
						
							|  |  |  | 	FileOrFolder to_rename; | 
					
						
							| 
									
										
										
										
											2017-12-01 14:13:50 +03:00
										 |  |  | 	FileOrFolder to_duplicate; | 
					
						
							| 
									
										
										
										
											2017-10-01 22:59:27 +01:00
										 |  |  | 	Vector<FileOrFolder> to_move; | 
					
						
							| 
									
										
										
										
											2018-05-29 18:03:11 +05:30
										 |  |  | 	String to_move_path; | 
					
						
							| 
									
										
										
										
											2023-03-25 20:58:37 +01:00
										 |  |  | 	bool to_move_or_copy = false; | 
					
						
							| 
									
										
										
										
											2015-08-23 20:15:56 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	Vector<String> history; | 
					
						
							|  |  |  | 	int history_pos; | 
					
						
							| 
									
										
										
										
											2017-09-03 21:35:18 +01:00
										 |  |  | 	int history_max_size; | 
					
						
							| 
									
										
										
										
											2015-08-23 20:15:56 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-11 04:17:03 +02:00
										 |  |  | 	String current_path; | 
					
						
							| 
									
										
										
										
											2023-12-14 18:18:44 +01:00
										 |  |  | 	String select_after_scan; | 
					
						
							| 
									
										
										
										
											2015-08-23 20:15:56 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-15 08:56:58 -06:00
										 |  |  | 	bool initialized = false; | 
					
						
							| 
									
										
										
										
											2014-05-16 19:48:23 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-15 08:56:58 -06:00
										 |  |  | 	bool updating_tree = false; | 
					
						
							| 
									
										
										
										
											2018-09-12 13:10:49 +02:00
										 |  |  | 	int tree_update_id; | 
					
						
							| 
									
										
										
										
											2022-07-20 23:44:06 +02:00
										 |  |  | 	FileSystemTree *tree = nullptr; | 
					
						
							|  |  |  | 	FileSystemList *files = nullptr; | 
					
						
							| 
									
										
										
										
											2022-02-15 08:56:58 -06:00
										 |  |  | 	bool import_dock_needs_update = false; | 
					
						
							| 
									
										
										
										
											2015-08-23 20:15:56 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-03 21:36:56 +01:00
										 |  |  | 	bool holding_branch = false; | 
					
						
							|  |  |  | 	Vector<TreeItem *> tree_items_selected_on_drag_begin; | 
					
						
							|  |  |  | 	PackedInt32Array list_items_selected_on_drag_begin; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-20 23:44:06 +02:00
										 |  |  | 	LocalVector<Ref<EditorResourceTooltipPlugin>> tooltip_plugins; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-03 21:36:56 +01:00
										 |  |  | 	void _tree_mouse_exited(); | 
					
						
							|  |  |  | 	void _reselect_items_selected_on_drag_begin(bool reset = false); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-07 21:56:53 +02:00
										 |  |  | 	Ref<Texture2D> _get_tree_item_icon(bool p_is_valid, String p_file_type); | 
					
						
							| 
									
										
										
										
											2019-11-21 15:40:11 +01: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 20:40:38 +01:00
										 |  |  | 	void _navigate_to_path(const String &p_path, bool p_select_in_favorites = false); | 
					
						
							| 
									
										
										
										
											2017-09-03 21:35:18 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-23 17:00:30 +02:00
										 |  |  | 	void _file_list_gui_input(Ref<InputEvent> p_event); | 
					
						
							|  |  |  | 	void _tree_gui_input(Ref<InputEvent> p_event); | 
					
						
							| 
									
										
										
										
											2018-01-05 14:45:54 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-28 13:26:36 +02:00
										 |  |  | 	void _update_file_list(bool p_keep_selection); | 
					
						
							| 
									
										
										
										
											2019-03-05 03:55:08 -03:00
										 |  |  | 	void _toggle_file_display(); | 
					
						
							| 
									
										
										
										
											2019-02-27 21:36:12 +01:00
										 |  |  | 	void _set_file_display(bool p_active); | 
					
						
							| 
									
										
										
										
											2017-09-03 21:35:18 +01:00
										 |  |  | 	void _fs_changed(); | 
					
						
							| 
									
										
										
										
											2017-02-01 09:45:45 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-10 11:54:12 +02:00
										 |  |  | 	void _select_file(const String &p_path, bool p_select_in_favorites = false); | 
					
						
							| 
									
										
										
										
											2018-08-23 17:00:30 +02:00
										 |  |  | 	void _tree_activate_file(); | 
					
						
							|  |  |  | 	void _file_list_activate_file(int p_idx); | 
					
						
							| 
									
										
										
										
											2017-09-03 21:35:18 +01:00
										 |  |  | 	void _file_multi_selected(int p_index, bool p_selected); | 
					
						
							| 
									
										
										
										
											2018-08-23 17:00:30 +02:00
										 |  |  | 	void _tree_multi_selected(Object *p_item, int p_column, bool p_selected); | 
					
						
							| 
									
										
										
										
											2015-08-23 20:15:56 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-15 00:20:50 +01:00
										 |  |  | 	bool _get_imported_files(const String &p_path, String &r_extension, Vector<String> &r_files) const; | 
					
						
							| 
									
										
										
										
											2018-08-23 17:00:30 +02:00
										 |  |  | 	void _update_import_dock(); | 
					
						
							| 
									
										
										
										
											2015-08-23 20:15:56 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-29 12:53:28 +03:00
										 |  |  | 	void _get_all_items_in_dir(EditorFileSystemDirectory *p_efsd, Vector<String> &r_files, Vector<String> &r_folders) const; | 
					
						
							| 
									
										
										
										
											2023-10-25 16:16:38 +03:00
										 |  |  | 	void _find_file_owners(EditorFileSystemDirectory *p_efsd, const HashSet<String> &p_renames, HashSet<String> &r_file_owners) const; | 
					
						
							| 
									
										
										
										
											2022-05-13 15:04:37 +02: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 14:13:50 +03:00
										 |  |  | 	void _try_duplicate_item(const FileOrFolder &p_item, const String &p_new_path) const; | 
					
						
							| 
									
										
										
										
											2023-10-25 16:16:38 +03: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 19:35:19 +03:00
										 |  |  | 	void _update_resource_paths_after_move(const HashMap<String, String> &p_renames, const HashMap<String, ResourceUID::ID> &p_uids) const; | 
					
						
							| 
									
										
										
										
											2022-05-13 15:04:37 +02: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 12:41:33 +02:00
										 |  |  | 	void _update_project_settings_after_move(const HashMap<String, String> &p_renames, const HashMap<String, String> &p_folders_renames); | 
					
						
							| 
									
										
										
										
											2023-03-25 20:58:37 +01:00
										 |  |  | 	String _get_unique_name(const FileOrFolder &p_entry, const String &p_at_path); | 
					
						
							| 
									
										
										
										
											2017-10-01 22:59:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-06 12:41:33 +02:00
										 |  |  | 	void _update_folder_colors_setting(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-23 12:01:28 +03:00
										 |  |  | 	void _resource_removed(const Ref<Resource> &p_resource); | 
					
						
							| 
									
										
										
										
											2020-03-17 01:40:15 +01:00
										 |  |  | 	void _file_removed(String p_file); | 
					
						
							|  |  |  | 	void _folder_removed(String p_folder); | 
					
						
							| 
									
										
										
										
											2018-11-13 20:17:33 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-21 17:44:59 +01:00
										 |  |  | 	void _resource_created(); | 
					
						
							| 
									
										
										
										
											2019-08-15 19:47:21 +02:00
										 |  |  | 	void _make_scene_confirm(); | 
					
						
							| 
									
										
										
										
											2017-10-01 22:59:27 +01:00
										 |  |  | 	void _rename_operation_confirm(); | 
					
						
							| 
									
										
										
										
											2017-12-01 14:13:50 +03:00
										 |  |  | 	void _duplicate_operation_confirm(); | 
					
						
							| 
									
										
										
										
											2023-03-25 20:58:37 +01:00
										 |  |  | 	void _overwrite_dialog_action(bool p_overwrite); | 
					
						
							| 
									
										
										
										
											2020-12-10 12:53:56 +01:00
										 |  |  | 	Vector<String> _check_existing(); | 
					
						
							| 
									
										
										
										
											2023-03-25 20:58:37 +01:00
										 |  |  | 	void _move_operation_confirm(const String &p_to_path, bool p_copy = false, Overwrite p_overwrite = OVERWRITE_UNDECIDED); | 
					
						
							| 
									
										
										
										
											2015-08-23 20:15:56 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-23 17:00:30 +02:00
										 |  |  | 	void _tree_rmb_option(int p_option); | 
					
						
							|  |  |  | 	void _file_list_rmb_option(int p_option); | 
					
						
							| 
									
										
										
										
											2019-07-10 11:54:12 +02:00
										 |  |  | 	void _file_option(int p_option, const Vector<String> &p_selected); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-23 20:15:56 -03:00
										 |  |  | 	void _fw_history(); | 
					
						
							|  |  |  | 	void _bw_history(); | 
					
						
							| 
									
										
										
										
											2017-09-03 21:35:18 +01:00
										 |  |  | 	void _update_history(); | 
					
						
							| 
									
										
										
										
											2015-08-23 20:15:56 -03:00
										 |  |  | 	void _push_to_history(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-21 13:07:29 +01:00
										 |  |  | 	void _set_scanning_mode(); | 
					
						
							| 
									
										
										
										
											2017-09-03 21:35:18 +01:00
										 |  |  | 	void _rescan(); | 
					
						
							| 
									
										
										
										
											2015-08-23 20:15:56 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-03 23:50:50 +02:00
										 |  |  | 	void _change_split_mode(); | 
					
						
							| 
									
										
										
										
											2023-12-23 21:01:01 +03:00
										 |  |  | 	void _split_dragged(int p_offset); | 
					
						
							| 
									
										
										
										
											2018-09-14 00:16:43 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-13 21:49:56 +02:00
										 |  |  | 	void _search_changed(const String &p_text, const Control *p_from); | 
					
						
							| 
									
										
										
										
											2016-05-15 20:25:51 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-07 21:56:53 +02:00
										 |  |  | 	MenuButton *_create_file_menu_button(); | 
					
						
							|  |  |  | 	void _file_sort_popup(int p_id); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-18 21:39:18 -08:00
										 |  |  | 	void _folder_color_index_pressed(int p_index, PopupMenu *p_menu); | 
					
						
							| 
									
										
										
										
											2018-11-03 18:36:59 +01:00
										 |  |  | 	void _file_and_folders_fill_popup(PopupMenu *p_popup, Vector<String> p_paths, bool p_display_path_dependent_options = true); | 
					
						
							| 
									
										
										
										
											2021-09-18 09:33:18 +02:00
										 |  |  | 	void _tree_rmb_select(const Vector2 &p_pos, MouseButton p_button); | 
					
						
							| 
									
										
										
										
											2022-05-09 21:17:04 +03: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 09:33:18 +02:00
										 |  |  | 	void _tree_empty_click(const Vector2 &p_pos, MouseButton p_button); | 
					
						
							| 
									
										
										
										
											2019-04-09 14:54:41 +02:00
										 |  |  | 	void _tree_empty_selected(); | 
					
						
							| 
									
										
										
										
											2016-05-15 20:25:51 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	struct FileInfo { | 
					
						
							|  |  |  | 		String name; | 
					
						
							|  |  |  | 		String path; | 
					
						
							|  |  |  | 		StringName type; | 
					
						
							| 
									
										
										
										
											2016-05-27 14:18:40 -03:00
										 |  |  | 		Vector<String> sources; | 
					
						
							| 
									
										
										
										
											2020-11-24 10:12:55 +01:00
										 |  |  | 		bool import_broken = false; | 
					
						
							|  |  |  | 		uint64_t modified_time = 0; | 
					
						
							| 
									
										
										
										
											2016-05-15 20:25:51 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		bool operator<(const FileInfo &fi) const { | 
					
						
							| 
									
										
										
										
											2018-08-23 17:00:30 +02:00
										 |  |  | 			return NaturalNoCaseComparator()(name, fi.name); | 
					
						
							| 
									
										
										
										
											2016-05-15 20:25:51 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2020-10-22 23:38:41 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	struct FileInfoTypeComparator; | 
					
						
							|  |  |  | 	struct FileInfoModifiedTimeComparator; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void _sort_file_info_list(List<FileSystemDock::FileInfo> &r_file_list); | 
					
						
							| 
									
										
										
										
											2016-05-15 20:25:51 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	void _search(EditorFileSystemDirectory *p_path, List<FileInfo> *matches, int p_max_items); | 
					
						
							| 
									
										
										
										
											2015-08-23 20:15:56 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-11 04:17:03 +02:00
										 |  |  | 	void _set_current_path_line_edit_text(const String &p_path); | 
					
						
							| 
									
										
										
										
											2018-09-29 00:11:26 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01: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 22:38:35 +02:00
										 |  |  | 	void _get_drag_target_folder(String &target, bool &target_favorites, const Point2 &p_point, Control *p_from) const; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	void _preview_invalidated(const String &p_path); | 
					
						
							| 
									
										
										
										
											2019-06-11 15:43:37 -03: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 13:15:15 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-22 11:31:50 +03:00
										 |  |  | 	void _update_display_mode(bool p_force = false); | 
					
						
							| 
									
										
										
										
											2018-08-13 19:05:31 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-21 21:46:39 +03:00
										 |  |  | 	Vector<String> _tree_get_selected(bool remove_self_inclusion = true, bool p_include_unselected_cursor = false) const; | 
					
						
							| 
									
										
										
										
											2018-08-23 17:00:30 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-08 19:18:03 -03:00
										 |  |  | 	bool _is_file_type_disabled_by_feature_profile(const StringName &p_class); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void _feature_profile_changed(); | 
					
						
							| 
									
										
										
										
											2022-05-10 22:25:36 +02:00
										 |  |  | 	static Vector<String> _remove_self_included_paths(Vector<String> selected_strings); | 
					
						
							| 
									
										
										
										
											2019-04-08 19:18:03 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-17 21:08:55 +01:00
										 |  |  | private: | 
					
						
							|  |  |  | 	static FileSystemDock *singleton; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  | 	static FileSystemDock *get_singleton() { return singleton; } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | protected: | 
					
						
							|  |  |  | 	void _notification(int p_what); | 
					
						
							|  |  |  | 	static void _bind_methods(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | public: | 
					
						
							| 
									
										
										
										
											2023-11-13 13:15:25 +03:00
										 |  |  | 	const HashMap<String, Color> &get_folder_colors() const; | 
					
						
							|  |  |  | 	Dictionary get_assigned_folder_colors() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-10 22:25:36 +02:00
										 |  |  | 	Vector<String> get_selected_paths() const; | 
					
						
							| 
									
										
										
										
											2023-05-11 04:17:03 +02:00
										 |  |  | 	Vector<String> get_uncollapsed_paths() const; | 
					
						
							| 
									
										
										
										
											2016-05-27 14:18:40 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	String get_current_path() const; | 
					
						
							| 
									
										
										
										
											2022-05-10 22:25:36 +02:00
										 |  |  | 	String get_current_directory() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	void navigate_to_path(const String &p_path); | 
					
						
							| 
									
										
										
										
											2016-05-15 20:25:51 -03:00
										 |  |  | 	void focus_on_filter(); | 
					
						
							| 
									
										
										
										
											2015-08-23 20:15:56 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-10 19:46:31 +03:00
										 |  |  | 	ScriptCreateDialog *get_script_create_dialog() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	void fix_dependencies(const String &p_for_file); | 
					
						
							| 
									
										
										
										
											2015-08-23 20:15:56 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-23 21:01:01 +03: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-03-05 16:44:50 +01:00
										 |  |  | 	void select_file(const String &p_file); | 
					
						
							| 
									
										
										
										
											2017-01-25 02:46:44 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-25 23:39:49 +01:00
										 |  |  | 	void set_display_mode(DisplayMode p_display_mode); | 
					
						
							| 
									
										
										
										
											2023-10-27 15:55:07 -04:00
										 |  |  | 	DisplayMode get_display_mode() const { return display_mode; } | 
					
						
							| 
									
										
										
										
											2019-02-25 23:39:49 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-07 21:56:53 +02:00
										 |  |  | 	void set_file_sort(FileSortOption p_file_sort); | 
					
						
							| 
									
										
										
										
											2023-10-27 15:55:07 -04:00
										 |  |  | 	FileSortOption get_file_sort() const { return file_sort; } | 
					
						
							| 
									
										
										
										
											2020-10-07 21:56:53 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-25 23:39:49 +01:00
										 |  |  | 	void set_file_list_display_mode(FileListDisplayMode p_mode); | 
					
						
							| 
									
										
										
										
											2023-10-27 15:55:07 -04:00
										 |  |  | 	FileListDisplayMode get_file_list_display_mode() const { return file_list_display_mode; }; | 
					
						
							| 
									
										
										
										
											2019-02-25 23:39:49 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-11 04:17:03 +02:00
										 |  |  | 	Tree *get_tree_control() { return tree; } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-20 23:44:06 +02: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 15:55:07 -04: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 10:36:51 +01:00
										 |  |  | 	FileSystemDock(); | 
					
						
							| 
									
										
										
										
											2016-07-21 10:34:57 -03:00
										 |  |  | 	~FileSystemDock(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-24 13:59:32 +08:00
										 |  |  | VARIANT_ENUM_CAST(FileSystemDock::Overwrite); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-23 23:41:51 +02:00
										 |  |  | #endif // FILESYSTEM_DOCK_H
 |