summaryrefslogtreecommitdiff
path: root/doc/classes/EditorFileDialog.xml
blob: 0474cbd387ba95221c4943393affbac01ff429e6 (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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<?xml version="1.0" encoding="UTF-8" ?>
<class name="EditorFileDialog" inherits="ConfirmationDialog" version="4.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd">
	<brief_description>
		A modified version of [FileDialog] used by the editor.
	</brief_description>
	<description>
	</description>
	<tutorials>
	</tutorials>
	<methods>
		<method name="add_filter">
			<return type="void" />
			<argument index="0" name="filter" type="String" />
			<description>
				Adds a comma-delimited file extension filter option to the [EditorFileDialog] with an optional semi-colon-delimited label.
				For example, [code]"*.tscn, *.scn; Scenes"[/code] results in filter text "Scenes (*.tscn, *.scn)".
			</description>
		</method>
		<method name="clear_filters">
			<return type="void" />
			<description>
				Removes all filters except for "All Files (*)".
			</description>
		</method>
		<method name="get_vbox">
			<return type="VBoxContainer" />
			<description>
				Returns the [code]VBoxContainer[/code] used to display the file system.
				[b]Warning:[/b] This is a required internal node, removing and freeing it may cause a crash. If you wish to hide it or any of its children, use their [member CanvasItem.visible] property.
			</description>
		</method>
		<method name="invalidate">
			<return type="void" />
			<description>
				Notify the [EditorFileDialog] that its view of the data is no longer accurate. Updates the view contents on next view update.
			</description>
		</method>
	</methods>
	<members>
		<member name="access" type="int" setter="set_access" getter="get_access" enum="EditorFileDialog.Access" default="0">
			The location from which the user may select a file, including [code]res://[/code], [code]user://[/code], and the local file system.
		</member>
		<member name="current_dir" type="String" setter="set_current_dir" getter="get_current_dir" default="&quot;res://&quot;">
			The currently occupied directory.
		</member>
		<member name="current_file" type="String" setter="set_current_file" getter="get_current_file" default="&quot;&quot;">
			The currently selected file.
		</member>
		<member name="current_path" type="String" setter="set_current_path" getter="get_current_path" default="&quot;res://&quot;">
			The file system path in the address bar.
		</member>
		<member name="dialog_hide_on_ok" type="bool" setter="set_hide_on_ok" getter="get_hide_on_ok" overrides="AcceptDialog" default="false" />
		<member name="disable_overwrite_warning" type="bool" setter="set_disable_overwrite_warning" getter="is_overwrite_warning_disabled" default="false">
			If [code]true[/code], the [EditorFileDialog] will not warn the user before overwriting files.
		</member>
		<member name="display_mode" type="int" setter="set_display_mode" getter="get_display_mode" enum="EditorFileDialog.DisplayMode" default="0">
			The view format in which the [EditorFileDialog] displays resources to the user.
		</member>
		<member name="file_mode" type="int" setter="set_file_mode" getter="get_file_mode" enum="EditorFileDialog.FileMode" default="4">
			The dialog's open or save mode, which affects the selection behavior. See [enum FileMode]
		</member>
		<member name="show_hidden_files" type="bool" setter="set_show_hidden_files" getter="is_showing_hidden_files" default="false">
			If [code]true[/code], hidden files and directories will be visible in the [EditorFileDialog].
		</member>
		<member name="title" type="String" setter="set_title" getter="get_title" overrides="Window" default="&quot;Save a File&quot;" />
	</members>
	<signals>
		<signal name="dir_selected">
			<argument index="0" name="dir" type="String" />
			<description>
				Emitted when a directory is selected.
			</description>
		</signal>
		<signal name="file_selected">
			<argument index="0" name="path" type="String" />
			<description>
				Emitted when a file is selected.
			</description>
		</signal>
		<signal name="files_selected">
			<argument index="0" name="paths" type="PackedStringArray" />
			<description>
				Emitted when multiple files are selected.
			</description>
		</signal>
	</signals>
	<constants>
		<constant name="FILE_MODE_OPEN_FILE" value="0" enum="FileMode">
			The [EditorFileDialog] can select only one file. Accepting the window will open the file.
		</constant>
		<constant name="FILE_MODE_OPEN_FILES" value="1" enum="FileMode">
			The [EditorFileDialog] can select multiple files. Accepting the window will open all files.
		</constant>
		<constant name="FILE_MODE_OPEN_DIR" value="2" enum="FileMode">
			The [EditorFileDialog] can select only one directory. Accepting the window will open the directory.
		</constant>
		<constant name="FILE_MODE_OPEN_ANY" value="3" enum="FileMode">
			The [EditorFileDialog] can select a file or directory. Accepting the window will open it.
		</constant>
		<constant name="FILE_MODE_SAVE_FILE" value="4" enum="FileMode">
			The [EditorFileDialog] can select only one file. Accepting the window will save the file.
		</constant>
		<constant name="ACCESS_RESOURCES" value="0" enum="Access">
			The [EditorFileDialog] can only view [code]res://[/code] directory contents.
		</constant>
		<constant name="ACCESS_USERDATA" value="1" enum="Access">
			The [EditorFileDialog] can only view [code]user://[/code] directory contents.
		</constant>
		<constant name="ACCESS_FILESYSTEM" value="2" enum="Access">
			The [EditorFileDialog] can view the entire local file system.
		</constant>
		<constant name="DISPLAY_THUMBNAILS" value="0" enum="DisplayMode">
			The [EditorFileDialog] displays resources as thumbnails.
		</constant>
		<constant name="DISPLAY_LIST" value="1" enum="DisplayMode">
			The [EditorFileDialog] displays resources as a list of filenames.
		</constant>
	</constants>
</class>