class_editorfiledialog.rst 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311
  1. :github_url: hide
  2. .. DO NOT EDIT THIS FILE!!!
  3. .. Generated automatically from Godot engine sources.
  4. .. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py.
  5. .. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/EditorFileDialog.xml.
  6. .. _class_EditorFileDialog:
  7. EditorFileDialog
  8. ================
  9. **Inherits:** :ref:`ConfirmationDialog<class_ConfirmationDialog>` **<** :ref:`AcceptDialog<class_AcceptDialog>` **<** :ref:`Window<class_Window>` **<** :ref:`Viewport<class_Viewport>` **<** :ref:`Node<class_Node>` **<** :ref:`Object<class_Object>`
  10. A modified version of :ref:`FileDialog<class_FileDialog>` used by the editor.
  11. Description
  12. -----------
  13. ``EditorFileDialog`` is an enhanced version of :ref:`FileDialog<class_FileDialog>` available only to editor plugins. Additional features include list of favorited/recent files and ability to see files as thumbnails grid instead of list.
  14. Properties
  15. ----------
  16. +-------------------------------------------------------+---------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+
  17. | :ref:`Access<enum_EditorFileDialog_Access>` | :ref:`access<class_EditorFileDialog_property_access>` | ``0`` |
  18. +-------------------------------------------------------+---------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+
  19. | :ref:`String<class_String>` | :ref:`current_dir<class_EditorFileDialog_property_current_dir>` | |
  20. +-------------------------------------------------------+---------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+
  21. | :ref:`String<class_String>` | :ref:`current_file<class_EditorFileDialog_property_current_file>` | |
  22. +-------------------------------------------------------+---------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+
  23. | :ref:`String<class_String>` | :ref:`current_path<class_EditorFileDialog_property_current_path>` | |
  24. +-------------------------------------------------------+---------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+
  25. | :ref:`bool<class_bool>` | dialog_hide_on_ok | ``false`` (overrides :ref:`AcceptDialog<class_AcceptDialog_property_dialog_hide_on_ok>`) |
  26. +-------------------------------------------------------+---------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+
  27. | :ref:`bool<class_bool>` | :ref:`disable_overwrite_warning<class_EditorFileDialog_property_disable_overwrite_warning>` | ``false`` |
  28. +-------------------------------------------------------+---------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+
  29. | :ref:`DisplayMode<enum_EditorFileDialog_DisplayMode>` | :ref:`display_mode<class_EditorFileDialog_property_display_mode>` | ``0`` |
  30. +-------------------------------------------------------+---------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+
  31. | :ref:`FileMode<enum_EditorFileDialog_FileMode>` | :ref:`file_mode<class_EditorFileDialog_property_file_mode>` | ``4`` |
  32. +-------------------------------------------------------+---------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+
  33. | :ref:`bool<class_bool>` | :ref:`show_hidden_files<class_EditorFileDialog_property_show_hidden_files>` | ``false`` |
  34. +-------------------------------------------------------+---------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+
  35. | :ref:`String<class_String>` | title | ``"Save a File"`` (overrides :ref:`Window<class_Window_property_title>`) |
  36. +-------------------------------------------------------+---------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+
  37. Methods
  38. -------
  39. +-------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+
  40. | void | :ref:`add_filter<class_EditorFileDialog_method_add_filter>` **(** :ref:`String<class_String>` filter, :ref:`String<class_String>` description="" **)** |
  41. +-------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+
  42. | void | :ref:`clear_filters<class_EditorFileDialog_method_clear_filters>` **(** **)** |
  43. +-------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+
  44. | :ref:`VBoxContainer<class_VBoxContainer>` | :ref:`get_vbox<class_EditorFileDialog_method_get_vbox>` **(** **)** |
  45. +-------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+
  46. | void | :ref:`invalidate<class_EditorFileDialog_method_invalidate>` **(** **)** |
  47. +-------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+
  48. Signals
  49. -------
  50. .. _class_EditorFileDialog_signal_dir_selected:
  51. - **dir_selected** **(** :ref:`String<class_String>` dir **)**
  52. Emitted when a directory is selected.
  53. ----
  54. .. _class_EditorFileDialog_signal_file_selected:
  55. - **file_selected** **(** :ref:`String<class_String>` path **)**
  56. Emitted when a file is selected.
  57. ----
  58. .. _class_EditorFileDialog_signal_files_selected:
  59. - **files_selected** **(** :ref:`PackedStringArray<class_PackedStringArray>` paths **)**
  60. Emitted when multiple files are selected.
  61. Enumerations
  62. ------------
  63. .. _enum_EditorFileDialog_FileMode:
  64. .. _class_EditorFileDialog_constant_FILE_MODE_OPEN_FILE:
  65. .. _class_EditorFileDialog_constant_FILE_MODE_OPEN_FILES:
  66. .. _class_EditorFileDialog_constant_FILE_MODE_OPEN_DIR:
  67. .. _class_EditorFileDialog_constant_FILE_MODE_OPEN_ANY:
  68. .. _class_EditorFileDialog_constant_FILE_MODE_SAVE_FILE:
  69. enum **FileMode**:
  70. - **FILE_MODE_OPEN_FILE** = **0** --- The ``EditorFileDialog`` can select only one file. Accepting the window will open the file.
  71. - **FILE_MODE_OPEN_FILES** = **1** --- The ``EditorFileDialog`` can select multiple files. Accepting the window will open all files.
  72. - **FILE_MODE_OPEN_DIR** = **2** --- The ``EditorFileDialog`` can select only one directory. Accepting the window will open the directory.
  73. - **FILE_MODE_OPEN_ANY** = **3** --- The ``EditorFileDialog`` can select a file or directory. Accepting the window will open it.
  74. - **FILE_MODE_SAVE_FILE** = **4** --- The ``EditorFileDialog`` can select only one file. Accepting the window will save the file.
  75. ----
  76. .. _enum_EditorFileDialog_Access:
  77. .. _class_EditorFileDialog_constant_ACCESS_RESOURCES:
  78. .. _class_EditorFileDialog_constant_ACCESS_USERDATA:
  79. .. _class_EditorFileDialog_constant_ACCESS_FILESYSTEM:
  80. enum **Access**:
  81. - **ACCESS_RESOURCES** = **0** --- The ``EditorFileDialog`` can only view ``res://`` directory contents.
  82. - **ACCESS_USERDATA** = **1** --- The ``EditorFileDialog`` can only view ``user://`` directory contents.
  83. - **ACCESS_FILESYSTEM** = **2** --- The ``EditorFileDialog`` can view the entire local file system.
  84. ----
  85. .. _enum_EditorFileDialog_DisplayMode:
  86. .. _class_EditorFileDialog_constant_DISPLAY_THUMBNAILS:
  87. .. _class_EditorFileDialog_constant_DISPLAY_LIST:
  88. enum **DisplayMode**:
  89. - **DISPLAY_THUMBNAILS** = **0** --- The ``EditorFileDialog`` displays resources as thumbnails.
  90. - **DISPLAY_LIST** = **1** --- The ``EditorFileDialog`` displays resources as a list of filenames.
  91. Property Descriptions
  92. ---------------------
  93. .. _class_EditorFileDialog_property_access:
  94. - :ref:`Access<enum_EditorFileDialog_Access>` **access**
  95. +-----------+-------------------+
  96. | *Default* | ``0`` |
  97. +-----------+-------------------+
  98. | *Setter* | set_access(value) |
  99. +-----------+-------------------+
  100. | *Getter* | get_access() |
  101. +-----------+-------------------+
  102. The location from which the user may select a file, including ``res://``, ``user://``, and the local file system.
  103. ----
  104. .. _class_EditorFileDialog_property_current_dir:
  105. - :ref:`String<class_String>` **current_dir**
  106. +----------+------------------------+
  107. | *Setter* | set_current_dir(value) |
  108. +----------+------------------------+
  109. | *Getter* | get_current_dir() |
  110. +----------+------------------------+
  111. The currently occupied directory.
  112. ----
  113. .. _class_EditorFileDialog_property_current_file:
  114. - :ref:`String<class_String>` **current_file**
  115. +----------+-------------------------+
  116. | *Setter* | set_current_file(value) |
  117. +----------+-------------------------+
  118. | *Getter* | get_current_file() |
  119. +----------+-------------------------+
  120. The currently selected file.
  121. ----
  122. .. _class_EditorFileDialog_property_current_path:
  123. - :ref:`String<class_String>` **current_path**
  124. +----------+-------------------------+
  125. | *Setter* | set_current_path(value) |
  126. +----------+-------------------------+
  127. | *Getter* | get_current_path() |
  128. +----------+-------------------------+
  129. The file system path in the address bar.
  130. ----
  131. .. _class_EditorFileDialog_property_disable_overwrite_warning:
  132. - :ref:`bool<class_bool>` **disable_overwrite_warning**
  133. +-----------+--------------------------------------+
  134. | *Default* | ``false`` |
  135. +-----------+--------------------------------------+
  136. | *Setter* | set_disable_overwrite_warning(value) |
  137. +-----------+--------------------------------------+
  138. | *Getter* | is_overwrite_warning_disabled() |
  139. +-----------+--------------------------------------+
  140. If ``true``, the ``EditorFileDialog`` will not warn the user before overwriting files.
  141. ----
  142. .. _class_EditorFileDialog_property_display_mode:
  143. - :ref:`DisplayMode<enum_EditorFileDialog_DisplayMode>` **display_mode**
  144. +-----------+-------------------------+
  145. | *Default* | ``0`` |
  146. +-----------+-------------------------+
  147. | *Setter* | set_display_mode(value) |
  148. +-----------+-------------------------+
  149. | *Getter* | get_display_mode() |
  150. +-----------+-------------------------+
  151. The view format in which the ``EditorFileDialog`` displays resources to the user.
  152. ----
  153. .. _class_EditorFileDialog_property_file_mode:
  154. - :ref:`FileMode<enum_EditorFileDialog_FileMode>` **file_mode**
  155. +-----------+----------------------+
  156. | *Default* | ``4`` |
  157. +-----------+----------------------+
  158. | *Setter* | set_file_mode(value) |
  159. +-----------+----------------------+
  160. | *Getter* | get_file_mode() |
  161. +-----------+----------------------+
  162. The dialog's open or save mode, which affects the selection behavior. See :ref:`FileMode<enum_EditorFileDialog_FileMode>`
  163. ----
  164. .. _class_EditorFileDialog_property_show_hidden_files:
  165. - :ref:`bool<class_bool>` **show_hidden_files**
  166. +-----------+------------------------------+
  167. | *Default* | ``false`` |
  168. +-----------+------------------------------+
  169. | *Setter* | set_show_hidden_files(value) |
  170. +-----------+------------------------------+
  171. | *Getter* | is_showing_hidden_files() |
  172. +-----------+------------------------------+
  173. If ``true``, hidden files and directories will be visible in the ``EditorFileDialog``. This property is synchronized with :ref:`EditorSettings.filesystem/file_dialog/show_hidden_files<class_EditorSettings_property_filesystem/file_dialog/show_hidden_files>`.
  174. Method Descriptions
  175. -------------------
  176. .. _class_EditorFileDialog_method_add_filter:
  177. - void **add_filter** **(** :ref:`String<class_String>` filter, :ref:`String<class_String>` description="" **)**
  178. Adds a comma-delimited file name ``filter`` option to the ``EditorFileDialog`` with an optional ``description``, which restricts what files can be picked.
  179. A ``filter`` should be of the form ``"filename.extension"``, where filename and extension can be ``*`` to match any string. Filters starting with ``.`` (i.e. empty filenames) are not allowed.
  180. For example, a ``filter`` of ``"*.tscn, *.scn"`` and a ``description`` of ``"Scenes"`` results in filter text "Scenes (\*.tscn, \*.scn)".
  181. ----
  182. .. _class_EditorFileDialog_method_clear_filters:
  183. - void **clear_filters** **(** **)**
  184. Removes all filters except for "All Files (\*)".
  185. ----
  186. .. _class_EditorFileDialog_method_get_vbox:
  187. - :ref:`VBoxContainer<class_VBoxContainer>` **get_vbox** **(** **)**
  188. Returns the ``VBoxContainer`` used to display the file system.
  189. \ **Warning:** 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 :ref:`CanvasItem.visible<class_CanvasItem_property_visible>` property.
  190. ----
  191. .. _class_EditorFileDialog_method_invalidate:
  192. - void **invalidate** **(** **)**
  193. Notify the ``EditorFileDialog`` that its view of the data is no longer accurate. Updates the view contents on next view update.
  194. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  195. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  196. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  197. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  198. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  199. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`