class_editorfiledialog.rst 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. .. Generated automatically by doc/tools/makerst.py in Godot's source tree.
  2. .. DO NOT EDIT THIS FILE, but the EditorFileDialog.xml source instead.
  3. .. The source is found in doc/classes or modules/<name>/doc_classes.
  4. .. _class_EditorFileDialog:
  5. EditorFileDialog
  6. ================
  7. **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>`
  8. **Category:** Core
  9. Brief Description
  10. -----------------
  11. Properties
  12. ----------
  13. +-------------------------------------------------------+------------------------------------------------------------------------------------+
  14. | :ref:`Access<enum_EditorFileDialog_Access>` | :ref:`access<class_EditorFileDialog_access>` |
  15. +-------------------------------------------------------+------------------------------------------------------------------------------------+
  16. | :ref:`String<class_String>` | :ref:`current_dir<class_EditorFileDialog_current_dir>` |
  17. +-------------------------------------------------------+------------------------------------------------------------------------------------+
  18. | :ref:`String<class_String>` | :ref:`current_file<class_EditorFileDialog_current_file>` |
  19. +-------------------------------------------------------+------------------------------------------------------------------------------------+
  20. | :ref:`String<class_String>` | :ref:`current_path<class_EditorFileDialog_current_path>` |
  21. +-------------------------------------------------------+------------------------------------------------------------------------------------+
  22. | :ref:`bool<class_bool>` | :ref:`disable_overwrite_warning<class_EditorFileDialog_disable_overwrite_warning>` |
  23. +-------------------------------------------------------+------------------------------------------------------------------------------------+
  24. | :ref:`DisplayMode<enum_EditorFileDialog_DisplayMode>` | :ref:`display_mode<class_EditorFileDialog_display_mode>` |
  25. +-------------------------------------------------------+------------------------------------------------------------------------------------+
  26. | :ref:`Mode<enum_EditorFileDialog_Mode>` | :ref:`mode<class_EditorFileDialog_mode>` |
  27. +-------------------------------------------------------+------------------------------------------------------------------------------------+
  28. | :ref:`bool<class_bool>` | :ref:`show_hidden_files<class_EditorFileDialog_show_hidden_files>` |
  29. +-------------------------------------------------------+------------------------------------------------------------------------------------+
  30. Methods
  31. -------
  32. +--------------------------------------------+-----------------------------------------------------------------------------------------------------+
  33. | void | :ref:`add_filter<class_EditorFileDialog_add_filter>` **(** :ref:`String<class_String>` filter **)** |
  34. +--------------------------------------------+-----------------------------------------------------------------------------------------------------+
  35. | void | :ref:`clear_filters<class_EditorFileDialog_clear_filters>` **(** **)** |
  36. +--------------------------------------------+-----------------------------------------------------------------------------------------------------+
  37. | :ref:`VBoxContainer<class_VBoxContainer>` | :ref:`get_vbox<class_EditorFileDialog_get_vbox>` **(** **)** |
  38. +--------------------------------------------+-----------------------------------------------------------------------------------------------------+
  39. | void | :ref:`invalidate<class_EditorFileDialog_invalidate>` **(** **)** |
  40. +--------------------------------------------+-----------------------------------------------------------------------------------------------------+
  41. Signals
  42. -------
  43. .. _class_EditorFileDialog_dir_selected:
  44. - **dir_selected** **(** :ref:`String<class_String>` dir **)**
  45. Emitted when a directory is selected.
  46. .. _class_EditorFileDialog_file_selected:
  47. - **file_selected** **(** :ref:`String<class_String>` path **)**
  48. Emitted when a file is selected.
  49. .. _class_EditorFileDialog_files_selected:
  50. - **files_selected** **(** :ref:`PoolStringArray<class_PoolStringArray>` paths **)**
  51. Emitted when multiple files are selected.
  52. Enumerations
  53. ------------
  54. .. _enum_EditorFileDialog_Mode:
  55. enum **Mode**:
  56. - **MODE_OPEN_FILE** = **0** --- The ``EditorFileDialog`` can select only one file. Accepting the window will open the file.
  57. - **MODE_OPEN_FILES** = **1** --- The ``EditorFileDialog`` can select multiple files. Accepting the window will open all files.
  58. - **MODE_OPEN_DIR** = **2** --- The ``EditorFileDialog`` can select only one directory. Accepting the window will open the directory.
  59. - **MODE_OPEN_ANY** = **3** --- The ``EditorFileDialog`` can select a file or directory. Accepting the window will open it.
  60. - **MODE_SAVE_FILE** = **4** --- The ``EditorFileDialog`` can select only one file. Accepting the window will save the file.
  61. .. _enum_EditorFileDialog_Access:
  62. enum **Access**:
  63. - **ACCESS_RESOURCES** = **0** --- The ``EditorFileDialog`` can only view ``res://`` directory contents.
  64. - **ACCESS_USERDATA** = **1** --- The ``EditorFileDialog`` can only view ``user://`` directory contents.
  65. - **ACCESS_FILESYSTEM** = **2** --- The ``EditorFileDialog`` can view the entire local file system.
  66. .. _enum_EditorFileDialog_DisplayMode:
  67. enum **DisplayMode**:
  68. - **DISPLAY_THUMBNAILS** = **0** --- The ``EditorFileDialog`` displays resources as thumbnails.
  69. - **DISPLAY_LIST** = **1** --- The ``EditorFileDialog`` displays resources as a list of filenames.
  70. Property Descriptions
  71. ---------------------
  72. .. _class_EditorFileDialog_access:
  73. - :ref:`Access<enum_EditorFileDialog_Access>` **access**
  74. +----------+-------------------+
  75. | *Setter* | set_access(value) |
  76. +----------+-------------------+
  77. | *Getter* | get_access() |
  78. +----------+-------------------+
  79. The location from which the user may select a file, including ``res://``, ``user://``, and the local file system.
  80. .. _class_EditorFileDialog_current_dir:
  81. - :ref:`String<class_String>` **current_dir**
  82. +----------+------------------------+
  83. | *Setter* | set_current_dir(value) |
  84. +----------+------------------------+
  85. | *Getter* | get_current_dir() |
  86. +----------+------------------------+
  87. The currently occupied directory.
  88. .. _class_EditorFileDialog_current_file:
  89. - :ref:`String<class_String>` **current_file**
  90. +----------+-------------------------+
  91. | *Setter* | set_current_file(value) |
  92. +----------+-------------------------+
  93. | *Getter* | get_current_file() |
  94. +----------+-------------------------+
  95. The currently selected file.
  96. .. _class_EditorFileDialog_current_path:
  97. - :ref:`String<class_String>` **current_path**
  98. +----------+-------------------------+
  99. | *Setter* | set_current_path(value) |
  100. +----------+-------------------------+
  101. | *Getter* | get_current_path() |
  102. +----------+-------------------------+
  103. The file system path in the address bar.
  104. .. _class_EditorFileDialog_disable_overwrite_warning:
  105. - :ref:`bool<class_bool>` **disable_overwrite_warning**
  106. +----------+--------------------------------------+
  107. | *Setter* | set_disable_overwrite_warning(value) |
  108. +----------+--------------------------------------+
  109. | *Getter* | is_overwrite_warning_disabled() |
  110. +----------+--------------------------------------+
  111. If ``true``, the ``EditorFileDialog`` will not warn the user before overwriting files.
  112. .. _class_EditorFileDialog_display_mode:
  113. - :ref:`DisplayMode<enum_EditorFileDialog_DisplayMode>` **display_mode**
  114. +----------+-------------------------+
  115. | *Setter* | set_display_mode(value) |
  116. +----------+-------------------------+
  117. | *Getter* | get_display_mode() |
  118. +----------+-------------------------+
  119. The view format in which the ``EditorFileDialog`` displays resources to the user.
  120. .. _class_EditorFileDialog_mode:
  121. - :ref:`Mode<enum_EditorFileDialog_Mode>` **mode**
  122. +----------+-----------------+
  123. | *Setter* | set_mode(value) |
  124. +----------+-----------------+
  125. | *Getter* | get_mode() |
  126. +----------+-----------------+
  127. The purpose of the ``EditorFileDialog``. Changes allowed behaviors.
  128. .. _class_EditorFileDialog_show_hidden_files:
  129. - :ref:`bool<class_bool>` **show_hidden_files**
  130. +----------+------------------------------+
  131. | *Setter* | set_show_hidden_files(value) |
  132. +----------+------------------------------+
  133. | *Getter* | is_showing_hidden_files() |
  134. +----------+------------------------------+
  135. If ``true``, hidden files and directories will be visible in the ``EditorFileDialog``.
  136. Method Descriptions
  137. -------------------
  138. .. _class_EditorFileDialog_add_filter:
  139. - void **add_filter** **(** :ref:`String<class_String>` filter **)**
  140. Adds a comma-delimited file extension filter option to the ``EditorFileDialog`` with an optional semi-colon-delimited label.
  141. Example: "\*.tscn, \*.scn; Scenes", results in filter text "Scenes (\*.tscn, \*.scn)".
  142. .. _class_EditorFileDialog_clear_filters:
  143. - void **clear_filters** **(** **)**
  144. Removes all filters except for "All Files (\*)".
  145. .. _class_EditorFileDialog_get_vbox:
  146. - :ref:`VBoxContainer<class_VBoxContainer>` **get_vbox** **(** **)**
  147. Returns the ``VBoxContainer`` used to display the file system.
  148. .. _class_EditorFileDialog_invalidate:
  149. - void **invalidate** **(** **)**
  150. Notify the ``EditorFileDialog`` that its view of the data is no longer accurate. Updates the view contents on next view update.