class_editorfiledialog.rst 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  1. :github_url: hide
  2. .. Generated automatically by doc/tools/makerst.py in Godot's source tree.
  3. .. DO NOT EDIT THIS FILE, but the EditorFileDialog.xml source instead.
  4. .. The source is found in doc/classes or modules/<name>/doc_classes.
  5. .. _class_EditorFileDialog:
  6. EditorFileDialog
  7. ================
  8. **Inherits:** :ref:`ConfirmationDialog<class_ConfirmationDialog>` **<** :ref:`AcceptDialog<class_AcceptDialog>` **<** :ref:`WindowDialog<class_WindowDialog>` **<** :ref:`Popup<class_Popup>` **<** :ref:`Control<class_Control>` **<** :ref:`CanvasItem<class_CanvasItem>` **<** :ref:`Node<class_Node>` **<** :ref:`Object<class_Object>`
  9. Properties
  10. ----------
  11. +-------------------------------------------------------+---------------------------------------------------------------------------------------------+--------------------------+
  12. | :ref:`Access<enum_EditorFileDialog_Access>` | :ref:`access<class_EditorFileDialog_property_access>` | ``0`` |
  13. +-------------------------------------------------------+---------------------------------------------------------------------------------------------+--------------------------+
  14. | :ref:`String<class_String>` | :ref:`current_dir<class_EditorFileDialog_property_current_dir>` | ``"res://"`` |
  15. +-------------------------------------------------------+---------------------------------------------------------------------------------------------+--------------------------+
  16. | :ref:`String<class_String>` | :ref:`current_file<class_EditorFileDialog_property_current_file>` | ``""`` |
  17. +-------------------------------------------------------+---------------------------------------------------------------------------------------------+--------------------------+
  18. | :ref:`String<class_String>` | :ref:`current_path<class_EditorFileDialog_property_current_path>` | ``"res://"`` |
  19. +-------------------------------------------------------+---------------------------------------------------------------------------------------------+--------------------------+
  20. | :ref:`bool<class_bool>` | dialog_hide_on_ok | **O:** ``false`` |
  21. +-------------------------------------------------------+---------------------------------------------------------------------------------------------+--------------------------+
  22. | :ref:`bool<class_bool>` | :ref:`disable_overwrite_warning<class_EditorFileDialog_property_disable_overwrite_warning>` | ``false`` |
  23. +-------------------------------------------------------+---------------------------------------------------------------------------------------------+--------------------------+
  24. | :ref:`DisplayMode<enum_EditorFileDialog_DisplayMode>` | :ref:`display_mode<class_EditorFileDialog_property_display_mode>` | ``0`` |
  25. +-------------------------------------------------------+---------------------------------------------------------------------------------------------+--------------------------+
  26. | :ref:`Mode<enum_EditorFileDialog_Mode>` | :ref:`mode<class_EditorFileDialog_property_mode>` | ``4`` |
  27. +-------------------------------------------------------+---------------------------------------------------------------------------------------------+--------------------------+
  28. | :ref:`bool<class_bool>` | resizable | **O:** ``true`` |
  29. +-------------------------------------------------------+---------------------------------------------------------------------------------------------+--------------------------+
  30. | :ref:`bool<class_bool>` | :ref:`show_hidden_files<class_EditorFileDialog_property_show_hidden_files>` | ``false`` |
  31. +-------------------------------------------------------+---------------------------------------------------------------------------------------------+--------------------------+
  32. | :ref:`String<class_String>` | window_title | **O:** ``"Save a File"`` |
  33. +-------------------------------------------------------+---------------------------------------------------------------------------------------------+--------------------------+
  34. Methods
  35. -------
  36. +-------------------------------------------+------------------------------------------------------------------------------------------------------------+
  37. | void | :ref:`add_filter<class_EditorFileDialog_method_add_filter>` **(** :ref:`String<class_String>` filter **)** |
  38. +-------------------------------------------+------------------------------------------------------------------------------------------------------------+
  39. | void | :ref:`clear_filters<class_EditorFileDialog_method_clear_filters>` **(** **)** |
  40. +-------------------------------------------+------------------------------------------------------------------------------------------------------------+
  41. | :ref:`VBoxContainer<class_VBoxContainer>` | :ref:`get_vbox<class_EditorFileDialog_method_get_vbox>` **(** **)** |
  42. +-------------------------------------------+------------------------------------------------------------------------------------------------------------+
  43. | void | :ref:`invalidate<class_EditorFileDialog_method_invalidate>` **(** **)** |
  44. +-------------------------------------------+------------------------------------------------------------------------------------------------------------+
  45. Signals
  46. -------
  47. .. _class_EditorFileDialog_signal_dir_selected:
  48. - **dir_selected** **(** :ref:`String<class_String>` dir **)**
  49. Emitted when a directory is selected.
  50. ----
  51. .. _class_EditorFileDialog_signal_file_selected:
  52. - **file_selected** **(** :ref:`String<class_String>` path **)**
  53. Emitted when a file is selected.
  54. ----
  55. .. _class_EditorFileDialog_signal_files_selected:
  56. - **files_selected** **(** :ref:`PoolStringArray<class_PoolStringArray>` paths **)**
  57. Emitted when multiple files are selected.
  58. Enumerations
  59. ------------
  60. .. _enum_EditorFileDialog_Mode:
  61. .. _class_EditorFileDialog_constant_MODE_OPEN_FILE:
  62. .. _class_EditorFileDialog_constant_MODE_OPEN_FILES:
  63. .. _class_EditorFileDialog_constant_MODE_OPEN_DIR:
  64. .. _class_EditorFileDialog_constant_MODE_OPEN_ANY:
  65. .. _class_EditorFileDialog_constant_MODE_SAVE_FILE:
  66. enum **Mode**:
  67. - **MODE_OPEN_FILE** = **0** --- The ``EditorFileDialog`` can select only one file. Accepting the window will open the file.
  68. - **MODE_OPEN_FILES** = **1** --- The ``EditorFileDialog`` can select multiple files. Accepting the window will open all files.
  69. - **MODE_OPEN_DIR** = **2** --- The ``EditorFileDialog`` can select only one directory. Accepting the window will open the directory.
  70. - **MODE_OPEN_ANY** = **3** --- The ``EditorFileDialog`` can select a file or directory. Accepting the window will open it.
  71. - **MODE_SAVE_FILE** = **4** --- The ``EditorFileDialog`` can select only one file. Accepting the window will save the file.
  72. ----
  73. .. _enum_EditorFileDialog_Access:
  74. .. _class_EditorFileDialog_constant_ACCESS_RESOURCES:
  75. .. _class_EditorFileDialog_constant_ACCESS_USERDATA:
  76. .. _class_EditorFileDialog_constant_ACCESS_FILESYSTEM:
  77. enum **Access**:
  78. - **ACCESS_RESOURCES** = **0** --- The ``EditorFileDialog`` can only view ``res://`` directory contents.
  79. - **ACCESS_USERDATA** = **1** --- The ``EditorFileDialog`` can only view ``user://`` directory contents.
  80. - **ACCESS_FILESYSTEM** = **2** --- The ``EditorFileDialog`` can view the entire local file system.
  81. ----
  82. .. _enum_EditorFileDialog_DisplayMode:
  83. .. _class_EditorFileDialog_constant_DISPLAY_THUMBNAILS:
  84. .. _class_EditorFileDialog_constant_DISPLAY_LIST:
  85. enum **DisplayMode**:
  86. - **DISPLAY_THUMBNAILS** = **0** --- The ``EditorFileDialog`` displays resources as thumbnails.
  87. - **DISPLAY_LIST** = **1** --- The ``EditorFileDialog`` displays resources as a list of filenames.
  88. Property Descriptions
  89. ---------------------
  90. .. _class_EditorFileDialog_property_access:
  91. - :ref:`Access<enum_EditorFileDialog_Access>` **access**
  92. +-----------+-------------------+
  93. | *Default* | ``0`` |
  94. +-----------+-------------------+
  95. | *Setter* | set_access(value) |
  96. +-----------+-------------------+
  97. | *Getter* | get_access() |
  98. +-----------+-------------------+
  99. The location from which the user may select a file, including ``res://``, ``user://``, and the local file system.
  100. ----
  101. .. _class_EditorFileDialog_property_current_dir:
  102. - :ref:`String<class_String>` **current_dir**
  103. +-----------+------------------------+
  104. | *Default* | ``"res://"`` |
  105. +-----------+------------------------+
  106. | *Setter* | set_current_dir(value) |
  107. +-----------+------------------------+
  108. | *Getter* | get_current_dir() |
  109. +-----------+------------------------+
  110. The currently occupied directory.
  111. ----
  112. .. _class_EditorFileDialog_property_current_file:
  113. - :ref:`String<class_String>` **current_file**
  114. +-----------+-------------------------+
  115. | *Default* | ``""`` |
  116. +-----------+-------------------------+
  117. | *Setter* | set_current_file(value) |
  118. +-----------+-------------------------+
  119. | *Getter* | get_current_file() |
  120. +-----------+-------------------------+
  121. The currently selected file.
  122. ----
  123. .. _class_EditorFileDialog_property_current_path:
  124. - :ref:`String<class_String>` **current_path**
  125. +-----------+-------------------------+
  126. | *Default* | ``"res://"`` |
  127. +-----------+-------------------------+
  128. | *Setter* | set_current_path(value) |
  129. +-----------+-------------------------+
  130. | *Getter* | get_current_path() |
  131. +-----------+-------------------------+
  132. The file system path in the address bar.
  133. ----
  134. .. _class_EditorFileDialog_property_disable_overwrite_warning:
  135. - :ref:`bool<class_bool>` **disable_overwrite_warning**
  136. +-----------+--------------------------------------+
  137. | *Default* | ``false`` |
  138. +-----------+--------------------------------------+
  139. | *Setter* | set_disable_overwrite_warning(value) |
  140. +-----------+--------------------------------------+
  141. | *Getter* | is_overwrite_warning_disabled() |
  142. +-----------+--------------------------------------+
  143. If ``true``, the ``EditorFileDialog`` will not warn the user before overwriting files.
  144. ----
  145. .. _class_EditorFileDialog_property_display_mode:
  146. - :ref:`DisplayMode<enum_EditorFileDialog_DisplayMode>` **display_mode**
  147. +-----------+-------------------------+
  148. | *Default* | ``0`` |
  149. +-----------+-------------------------+
  150. | *Setter* | set_display_mode(value) |
  151. +-----------+-------------------------+
  152. | *Getter* | get_display_mode() |
  153. +-----------+-------------------------+
  154. The view format in which the ``EditorFileDialog`` displays resources to the user.
  155. ----
  156. .. _class_EditorFileDialog_property_mode:
  157. - :ref:`Mode<enum_EditorFileDialog_Mode>` **mode**
  158. +-----------+-----------------+
  159. | *Default* | ``4`` |
  160. +-----------+-----------------+
  161. | *Setter* | set_mode(value) |
  162. +-----------+-----------------+
  163. | *Getter* | get_mode() |
  164. +-----------+-----------------+
  165. The purpose of the ``EditorFileDialog``, which defines the allowed behaviors.
  166. ----
  167. .. _class_EditorFileDialog_property_show_hidden_files:
  168. - :ref:`bool<class_bool>` **show_hidden_files**
  169. +-----------+------------------------------+
  170. | *Default* | ``false`` |
  171. +-----------+------------------------------+
  172. | *Setter* | set_show_hidden_files(value) |
  173. +-----------+------------------------------+
  174. | *Getter* | is_showing_hidden_files() |
  175. +-----------+------------------------------+
  176. If ``true``, hidden files and directories will be visible in the ``EditorFileDialog``.
  177. Method Descriptions
  178. -------------------
  179. .. _class_EditorFileDialog_method_add_filter:
  180. - void **add_filter** **(** :ref:`String<class_String>` filter **)**
  181. Adds a comma-delimited file extension filter option to the ``EditorFileDialog`` with an optional semi-colon-delimited label.
  182. For example, ``"*.tscn, *.scn; Scenes"`` results in filter text "Scenes (\*.tscn, \*.scn)".
  183. ----
  184. .. _class_EditorFileDialog_method_clear_filters:
  185. - void **clear_filters** **(** **)**
  186. Removes all filters except for "All Files (\*)".
  187. ----
  188. .. _class_EditorFileDialog_method_get_vbox:
  189. - :ref:`VBoxContainer<class_VBoxContainer>` **get_vbox** **(** **)**
  190. Returns the ``VBoxContainer`` used to display the file system.
  191. ----
  192. .. _class_EditorFileDialog_method_invalidate:
  193. - void **invalidate** **(** **)**
  194. Notify the ``EditorFileDialog`` that its view of the data is no longer accurate. Updates the view contents on next view update.