class_editorfiledialog.rst 11 KB

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