summaryrefslogtreecommitdiffstats
path: root/doc/classes/FileSystemDock.xml
blob: b3dc51ffaa6fafec495e206f318e8d151384a57f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?xml version="1.0" encoding="UTF-8" ?>
<class name="FileSystemDock" inherits="VBoxContainer" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd">
	<brief_description>
		Godot editor's dock for managing files in the project.
	</brief_description>
	<description>
		This class is available only in [EditorPlugin]s and can't be instantiated. You can access it using [method EditorInterface.get_file_system_dock].
		While [FileSystemDock] doesn't expose any methods for file manipulation, it can listen for various file-related signals.
	</description>
	<tutorials>
	</tutorials>
	<methods>
		<method name="add_resource_tooltip_plugin">
			<return type="void" />
			<param index="0" name="plugin" type="EditorResourceTooltipPlugin" />
			<description>
				Registers a new [EditorResourceTooltipPlugin].
			</description>
		</method>
		<method name="navigate_to_path">
			<return type="void" />
			<param index="0" name="path" type="String" />
			<description>
				Sets the given [param path] as currently selected, ensuring that the selected file/directory is visible.
			</description>
		</method>
		<method name="remove_resource_tooltip_plugin">
			<return type="void" />
			<param index="0" name="plugin" type="EditorResourceTooltipPlugin" />
			<description>
				Removes an [EditorResourceTooltipPlugin]. Fails if the plugin wasn't previously added.
			</description>
		</method>
	</methods>
	<signals>
		<signal name="display_mode_changed">
			<description>
				Emitted when the user switches file display mode or split mode.
			</description>
		</signal>
		<signal name="file_removed">
			<param index="0" name="file" type="String" />
			<description>
				Emitted when the given [param file] was removed.
			</description>
		</signal>
		<signal name="files_moved">
			<param index="0" name="old_file" type="String" />
			<param index="1" name="new_file" type="String" />
			<description>
				Emitted when a file is moved from [param old_file] path to [param new_file] path.
			</description>
		</signal>
		<signal name="folder_color_changed">
			<description>
				Emitted when folders change color.
			</description>
		</signal>
		<signal name="folder_moved">
			<param index="0" name="old_folder" type="String" />
			<param index="1" name="new_folder" type="String" />
			<description>
				Emitted when a folder is moved from [param old_folder] path to [param new_folder] path.
			</description>
		</signal>
		<signal name="folder_removed">
			<param index="0" name="folder" type="String" />
			<description>
				Emitted when the given [param folder] was removed.
			</description>
		</signal>
		<signal name="inherit">
			<param index="0" name="file" type="String" />
			<description>
				Emitted when a new scene is created that inherits the scene at [param file] path.
			</description>
		</signal>
		<signal name="instantiate">
			<param index="0" name="files" type="PackedStringArray" />
			<description>
				Emitted when the given scenes are being instantiated in the editor.
			</description>
		</signal>
		<signal name="resource_removed">
			<param index="0" name="resource" type="Resource" />
			<description>
				Emitted when an external [param resource] had its file removed.
			</description>
		</signal>
	</signals>
</class>