class_tree.rst 108 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139
  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/Tree.xml.
  6. .. _class_Tree:
  7. Tree
  8. ====
  9. **Inherits:** :ref:`Control<class_Control>` **<** :ref:`CanvasItem<class_CanvasItem>` **<** :ref:`Node<class_Node>` **<** :ref:`Object<class_Object>`
  10. A control used to show a set of internal :ref:`TreeItem<class_TreeItem>`\ s in a hierarchical structure.
  11. .. rst-class:: classref-introduction-group
  12. Description
  13. -----------
  14. A control used to show a set of internal :ref:`TreeItem<class_TreeItem>`\ s in a hierarchical structure. The tree items can be selected, expanded and collapsed. The tree can have multiple columns with custom controls like :ref:`LineEdit<class_LineEdit>`\ s, buttons and popups. It can be useful for structured displays and interactions.
  15. Trees are built via code, using :ref:`TreeItem<class_TreeItem>` objects to create the structure. They have a single root, but multiple roots can be simulated with :ref:`hide_root<class_Tree_property_hide_root>`:
  16. .. tabs::
  17. .. code-tab:: gdscript
  18. func _ready():
  19. var tree = Tree.new()
  20. var root = tree.create_item()
  21. tree.hide_root = true
  22. var child1 = tree.create_item(root)
  23. var child2 = tree.create_item(root)
  24. var subchild1 = tree.create_item(child1)
  25. subchild1.set_text(0, "Subchild1")
  26. .. code-tab:: csharp
  27. public override void _Ready()
  28. {
  29. var tree = new Tree();
  30. TreeItem root = tree.CreateItem();
  31. tree.HideRoot = true;
  32. TreeItem child1 = tree.CreateItem(root);
  33. TreeItem child2 = tree.CreateItem(root);
  34. TreeItem subchild1 = tree.CreateItem(child1);
  35. subchild1.SetText(0, "Subchild1");
  36. }
  37. To iterate over all the :ref:`TreeItem<class_TreeItem>` objects in a **Tree** object, use :ref:`TreeItem.get_next<class_TreeItem_method_get_next>` and :ref:`TreeItem.get_first_child<class_TreeItem_method_get_first_child>` after getting the root through :ref:`get_root<class_Tree_method_get_root>`. You can use :ref:`Object.free<class_Object_method_free>` on a :ref:`TreeItem<class_TreeItem>` to remove it from the **Tree**.
  38. \ **Incremental search:** Like :ref:`ItemList<class_ItemList>` and :ref:`PopupMenu<class_PopupMenu>`, **Tree** supports searching within the list while the control is focused. Press a key that matches the first letter of an item's name to select the first item starting with the given letter. After that point, there are two ways to perform incremental search: 1) Press the same key again before the timeout duration to select the next item starting with the same letter. 2) Press letter keys that match the rest of the word before the timeout duration to match to select the item in question directly. Both of these actions will be reset to the beginning of the list if the timeout duration has passed since the last keystroke was registered. You can adjust the timeout duration by changing :ref:`ProjectSettings.gui/timers/incremental_search_max_interval_msec<class_ProjectSettings_property_gui/timers/incremental_search_max_interval_msec>`.
  39. .. rst-class:: classref-reftable-group
  40. Properties
  41. ----------
  42. .. table::
  43. :widths: auto
  44. +------------------------------------------+---------------------------------------------------------------------------------+---------------------------------------------------------------------------+
  45. | :ref:`bool<class_bool>` | :ref:`allow_reselect<class_Tree_property_allow_reselect>` | ``false`` |
  46. +------------------------------------------+---------------------------------------------------------------------------------+---------------------------------------------------------------------------+
  47. | :ref:`bool<class_bool>` | :ref:`allow_rmb_select<class_Tree_property_allow_rmb_select>` | ``false`` |
  48. +------------------------------------------+---------------------------------------------------------------------------------+---------------------------------------------------------------------------+
  49. | :ref:`bool<class_bool>` | :ref:`allow_search<class_Tree_property_allow_search>` | ``true`` |
  50. +------------------------------------------+---------------------------------------------------------------------------------+---------------------------------------------------------------------------+
  51. | :ref:`bool<class_bool>` | clip_contents | ``true`` (overrides :ref:`Control<class_Control_property_clip_contents>`) |
  52. +------------------------------------------+---------------------------------------------------------------------------------+---------------------------------------------------------------------------+
  53. | :ref:`bool<class_bool>` | :ref:`column_titles_visible<class_Tree_property_column_titles_visible>` | ``false`` |
  54. +------------------------------------------+---------------------------------------------------------------------------------+---------------------------------------------------------------------------+
  55. | :ref:`int<class_int>` | :ref:`columns<class_Tree_property_columns>` | ``1`` |
  56. +------------------------------------------+---------------------------------------------------------------------------------+---------------------------------------------------------------------------+
  57. | :ref:`int<class_int>` | :ref:`drop_mode_flags<class_Tree_property_drop_mode_flags>` | ``0`` |
  58. +------------------------------------------+---------------------------------------------------------------------------------+---------------------------------------------------------------------------+
  59. | :ref:`bool<class_bool>` | :ref:`enable_recursive_folding<class_Tree_property_enable_recursive_folding>` | ``true`` |
  60. +------------------------------------------+---------------------------------------------------------------------------------+---------------------------------------------------------------------------+
  61. | :ref:`FocusMode<enum_Control_FocusMode>` | focus_mode | ``2`` (overrides :ref:`Control<class_Control_property_focus_mode>`) |
  62. +------------------------------------------+---------------------------------------------------------------------------------+---------------------------------------------------------------------------+
  63. | :ref:`bool<class_bool>` | :ref:`hide_folding<class_Tree_property_hide_folding>` | ``false`` |
  64. +------------------------------------------+---------------------------------------------------------------------------------+---------------------------------------------------------------------------+
  65. | :ref:`bool<class_bool>` | :ref:`hide_root<class_Tree_property_hide_root>` | ``false`` |
  66. +------------------------------------------+---------------------------------------------------------------------------------+---------------------------------------------------------------------------+
  67. | :ref:`bool<class_bool>` | :ref:`scroll_horizontal_enabled<class_Tree_property_scroll_horizontal_enabled>` | ``true`` |
  68. +------------------------------------------+---------------------------------------------------------------------------------+---------------------------------------------------------------------------+
  69. | :ref:`bool<class_bool>` | :ref:`scroll_vertical_enabled<class_Tree_property_scroll_vertical_enabled>` | ``true`` |
  70. +------------------------------------------+---------------------------------------------------------------------------------+---------------------------------------------------------------------------+
  71. | :ref:`SelectMode<enum_Tree_SelectMode>` | :ref:`select_mode<class_Tree_property_select_mode>` | ``0`` |
  72. +------------------------------------------+---------------------------------------------------------------------------------+---------------------------------------------------------------------------+
  73. .. rst-class:: classref-reftable-group
  74. Methods
  75. -------
  76. .. table::
  77. :widths: auto
  78. +-------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  79. | |void| | :ref:`clear<class_Tree_method_clear>`\ (\ ) |
  80. +-------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  81. | :ref:`TreeItem<class_TreeItem>` | :ref:`create_item<class_Tree_method_create_item>`\ (\ parent\: :ref:`TreeItem<class_TreeItem>` = null, index\: :ref:`int<class_int>` = -1\ ) |
  82. +-------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  83. | |void| | :ref:`deselect_all<class_Tree_method_deselect_all>`\ (\ ) |
  84. +-------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  85. | :ref:`bool<class_bool>` | :ref:`edit_selected<class_Tree_method_edit_selected>`\ (\ force_edit\: :ref:`bool<class_bool>` = false\ ) |
  86. +-------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  87. | |void| | :ref:`ensure_cursor_is_visible<class_Tree_method_ensure_cursor_is_visible>`\ (\ ) |
  88. +-------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  89. | :ref:`int<class_int>` | :ref:`get_button_id_at_position<class_Tree_method_get_button_id_at_position>`\ (\ position\: :ref:`Vector2<class_Vector2>`\ ) |const| |
  90. +-------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  91. | :ref:`int<class_int>` | :ref:`get_column_at_position<class_Tree_method_get_column_at_position>`\ (\ position\: :ref:`Vector2<class_Vector2>`\ ) |const| |
  92. +-------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  93. | :ref:`int<class_int>` | :ref:`get_column_expand_ratio<class_Tree_method_get_column_expand_ratio>`\ (\ column\: :ref:`int<class_int>`\ ) |const| |
  94. +-------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  95. | :ref:`String<class_String>` | :ref:`get_column_title<class_Tree_method_get_column_title>`\ (\ column\: :ref:`int<class_int>`\ ) |const| |
  96. +-------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  97. | :ref:`HorizontalAlignment<enum_@GlobalScope_HorizontalAlignment>` | :ref:`get_column_title_alignment<class_Tree_method_get_column_title_alignment>`\ (\ column\: :ref:`int<class_int>`\ ) |const| |
  98. +-------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  99. | :ref:`TextDirection<enum_Control_TextDirection>` | :ref:`get_column_title_direction<class_Tree_method_get_column_title_direction>`\ (\ column\: :ref:`int<class_int>`\ ) |const| |
  100. +-------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  101. | :ref:`String<class_String>` | :ref:`get_column_title_language<class_Tree_method_get_column_title_language>`\ (\ column\: :ref:`int<class_int>`\ ) |const| |
  102. +-------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  103. | :ref:`int<class_int>` | :ref:`get_column_width<class_Tree_method_get_column_width>`\ (\ column\: :ref:`int<class_int>`\ ) |const| |
  104. +-------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  105. | :ref:`Rect2<class_Rect2>` | :ref:`get_custom_popup_rect<class_Tree_method_get_custom_popup_rect>`\ (\ ) |const| |
  106. +-------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  107. | :ref:`int<class_int>` | :ref:`get_drop_section_at_position<class_Tree_method_get_drop_section_at_position>`\ (\ position\: :ref:`Vector2<class_Vector2>`\ ) |const| |
  108. +-------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  109. | :ref:`TreeItem<class_TreeItem>` | :ref:`get_edited<class_Tree_method_get_edited>`\ (\ ) |const| |
  110. +-------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  111. | :ref:`int<class_int>` | :ref:`get_edited_column<class_Tree_method_get_edited_column>`\ (\ ) |const| |
  112. +-------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  113. | :ref:`Rect2<class_Rect2>` | :ref:`get_item_area_rect<class_Tree_method_get_item_area_rect>`\ (\ item\: :ref:`TreeItem<class_TreeItem>`, column\: :ref:`int<class_int>` = -1, button_index\: :ref:`int<class_int>` = -1\ ) |const| |
  114. +-------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  115. | :ref:`TreeItem<class_TreeItem>` | :ref:`get_item_at_position<class_Tree_method_get_item_at_position>`\ (\ position\: :ref:`Vector2<class_Vector2>`\ ) |const| |
  116. +-------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  117. | :ref:`TreeItem<class_TreeItem>` | :ref:`get_next_selected<class_Tree_method_get_next_selected>`\ (\ from\: :ref:`TreeItem<class_TreeItem>`\ ) |
  118. +-------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  119. | :ref:`int<class_int>` | :ref:`get_pressed_button<class_Tree_method_get_pressed_button>`\ (\ ) |const| |
  120. +-------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  121. | :ref:`TreeItem<class_TreeItem>` | :ref:`get_root<class_Tree_method_get_root>`\ (\ ) |const| |
  122. +-------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  123. | :ref:`Vector2<class_Vector2>` | :ref:`get_scroll<class_Tree_method_get_scroll>`\ (\ ) |const| |
  124. +-------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  125. | :ref:`TreeItem<class_TreeItem>` | :ref:`get_selected<class_Tree_method_get_selected>`\ (\ ) |const| |
  126. +-------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  127. | :ref:`int<class_int>` | :ref:`get_selected_column<class_Tree_method_get_selected_column>`\ (\ ) |const| |
  128. +-------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  129. | :ref:`bool<class_bool>` | :ref:`is_column_clipping_content<class_Tree_method_is_column_clipping_content>`\ (\ column\: :ref:`int<class_int>`\ ) |const| |
  130. +-------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  131. | :ref:`bool<class_bool>` | :ref:`is_column_expanding<class_Tree_method_is_column_expanding>`\ (\ column\: :ref:`int<class_int>`\ ) |const| |
  132. +-------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  133. | |void| | :ref:`scroll_to_item<class_Tree_method_scroll_to_item>`\ (\ item\: :ref:`TreeItem<class_TreeItem>`, center_on_item\: :ref:`bool<class_bool>` = false\ ) |
  134. +-------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  135. | |void| | :ref:`set_column_clip_content<class_Tree_method_set_column_clip_content>`\ (\ column\: :ref:`int<class_int>`, enable\: :ref:`bool<class_bool>`\ ) |
  136. +-------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  137. | |void| | :ref:`set_column_custom_minimum_width<class_Tree_method_set_column_custom_minimum_width>`\ (\ column\: :ref:`int<class_int>`, min_width\: :ref:`int<class_int>`\ ) |
  138. +-------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  139. | |void| | :ref:`set_column_expand<class_Tree_method_set_column_expand>`\ (\ column\: :ref:`int<class_int>`, expand\: :ref:`bool<class_bool>`\ ) |
  140. +-------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  141. | |void| | :ref:`set_column_expand_ratio<class_Tree_method_set_column_expand_ratio>`\ (\ column\: :ref:`int<class_int>`, ratio\: :ref:`int<class_int>`\ ) |
  142. +-------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  143. | |void| | :ref:`set_column_title<class_Tree_method_set_column_title>`\ (\ column\: :ref:`int<class_int>`, title\: :ref:`String<class_String>`\ ) |
  144. +-------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  145. | |void| | :ref:`set_column_title_alignment<class_Tree_method_set_column_title_alignment>`\ (\ column\: :ref:`int<class_int>`, title_alignment\: :ref:`HorizontalAlignment<enum_@GlobalScope_HorizontalAlignment>`\ ) |
  146. +-------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  147. | |void| | :ref:`set_column_title_direction<class_Tree_method_set_column_title_direction>`\ (\ column\: :ref:`int<class_int>`, direction\: :ref:`TextDirection<enum_Control_TextDirection>`\ ) |
  148. +-------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  149. | |void| | :ref:`set_column_title_language<class_Tree_method_set_column_title_language>`\ (\ column\: :ref:`int<class_int>`, language\: :ref:`String<class_String>`\ ) |
  150. +-------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  151. | |void| | :ref:`set_selected<class_Tree_method_set_selected>`\ (\ item\: :ref:`TreeItem<class_TreeItem>`, column\: :ref:`int<class_int>`\ ) |
  152. +-------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  153. .. rst-class:: classref-reftable-group
  154. Theme Properties
  155. ----------------
  156. .. table::
  157. :widths: auto
  158. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  159. | :ref:`Color<class_Color>` | :ref:`children_hl_line_color<class_Tree_theme_color_children_hl_line_color>` | ``Color(0.27, 0.27, 0.27, 1)`` |
  160. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  161. | :ref:`Color<class_Color>` | :ref:`custom_button_font_highlight<class_Tree_theme_color_custom_button_font_highlight>` | ``Color(0.95, 0.95, 0.95, 1)`` |
  162. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  163. | :ref:`Color<class_Color>` | :ref:`drop_position_color<class_Tree_theme_color_drop_position_color>` | ``Color(1, 1, 1, 1)`` |
  164. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  165. | :ref:`Color<class_Color>` | :ref:`font_color<class_Tree_theme_color_font_color>` | ``Color(0.7, 0.7, 0.7, 1)`` |
  166. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  167. | :ref:`Color<class_Color>` | :ref:`font_disabled_color<class_Tree_theme_color_font_disabled_color>` | ``Color(0.875, 0.875, 0.875, 0.5)`` |
  168. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  169. | :ref:`Color<class_Color>` | :ref:`font_hovered_color<class_Tree_theme_color_font_hovered_color>` | ``Color(0.95, 0.95, 0.95, 1)`` |
  170. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  171. | :ref:`Color<class_Color>` | :ref:`font_hovered_dimmed_color<class_Tree_theme_color_font_hovered_dimmed_color>` | ``Color(0.875, 0.875, 0.875, 1)`` |
  172. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  173. | :ref:`Color<class_Color>` | :ref:`font_outline_color<class_Tree_theme_color_font_outline_color>` | ``Color(0, 0, 0, 1)`` |
  174. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  175. | :ref:`Color<class_Color>` | :ref:`font_selected_color<class_Tree_theme_color_font_selected_color>` | ``Color(1, 1, 1, 1)`` |
  176. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  177. | :ref:`Color<class_Color>` | :ref:`guide_color<class_Tree_theme_color_guide_color>` | ``Color(0.7, 0.7, 0.7, 0.25)`` |
  178. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  179. | :ref:`Color<class_Color>` | :ref:`parent_hl_line_color<class_Tree_theme_color_parent_hl_line_color>` | ``Color(0.27, 0.27, 0.27, 1)`` |
  180. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  181. | :ref:`Color<class_Color>` | :ref:`relationship_line_color<class_Tree_theme_color_relationship_line_color>` | ``Color(0.27, 0.27, 0.27, 1)`` |
  182. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  183. | :ref:`Color<class_Color>` | :ref:`title_button_color<class_Tree_theme_color_title_button_color>` | ``Color(0.875, 0.875, 0.875, 1)`` |
  184. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  185. | :ref:`int<class_int>` | :ref:`button_margin<class_Tree_theme_constant_button_margin>` | ``4`` |
  186. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  187. | :ref:`int<class_int>` | :ref:`children_hl_line_width<class_Tree_theme_constant_children_hl_line_width>` | ``1`` |
  188. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  189. | :ref:`int<class_int>` | :ref:`draw_guides<class_Tree_theme_constant_draw_guides>` | ``1`` |
  190. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  191. | :ref:`int<class_int>` | :ref:`draw_relationship_lines<class_Tree_theme_constant_draw_relationship_lines>` | ``0`` |
  192. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  193. | :ref:`int<class_int>` | :ref:`h_separation<class_Tree_theme_constant_h_separation>` | ``4`` |
  194. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  195. | :ref:`int<class_int>` | :ref:`icon_max_width<class_Tree_theme_constant_icon_max_width>` | ``0`` |
  196. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  197. | :ref:`int<class_int>` | :ref:`inner_item_margin_bottom<class_Tree_theme_constant_inner_item_margin_bottom>` | ``0`` |
  198. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  199. | :ref:`int<class_int>` | :ref:`inner_item_margin_left<class_Tree_theme_constant_inner_item_margin_left>` | ``0`` |
  200. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  201. | :ref:`int<class_int>` | :ref:`inner_item_margin_right<class_Tree_theme_constant_inner_item_margin_right>` | ``0`` |
  202. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  203. | :ref:`int<class_int>` | :ref:`inner_item_margin_top<class_Tree_theme_constant_inner_item_margin_top>` | ``0`` |
  204. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  205. | :ref:`int<class_int>` | :ref:`item_margin<class_Tree_theme_constant_item_margin>` | ``16`` |
  206. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  207. | :ref:`int<class_int>` | :ref:`outline_size<class_Tree_theme_constant_outline_size>` | ``0`` |
  208. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  209. | :ref:`int<class_int>` | :ref:`parent_hl_line_margin<class_Tree_theme_constant_parent_hl_line_margin>` | ``0`` |
  210. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  211. | :ref:`int<class_int>` | :ref:`parent_hl_line_width<class_Tree_theme_constant_parent_hl_line_width>` | ``1`` |
  212. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  213. | :ref:`int<class_int>` | :ref:`relationship_line_width<class_Tree_theme_constant_relationship_line_width>` | ``1`` |
  214. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  215. | :ref:`int<class_int>` | :ref:`scroll_border<class_Tree_theme_constant_scroll_border>` | ``4`` |
  216. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  217. | :ref:`int<class_int>` | :ref:`scroll_speed<class_Tree_theme_constant_scroll_speed>` | ``12`` |
  218. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  219. | :ref:`int<class_int>` | :ref:`scrollbar_h_separation<class_Tree_theme_constant_scrollbar_h_separation>` | ``4`` |
  220. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  221. | :ref:`int<class_int>` | :ref:`scrollbar_margin_bottom<class_Tree_theme_constant_scrollbar_margin_bottom>` | ``-1`` |
  222. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  223. | :ref:`int<class_int>` | :ref:`scrollbar_margin_left<class_Tree_theme_constant_scrollbar_margin_left>` | ``-1`` |
  224. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  225. | :ref:`int<class_int>` | :ref:`scrollbar_margin_right<class_Tree_theme_constant_scrollbar_margin_right>` | ``-1`` |
  226. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  227. | :ref:`int<class_int>` | :ref:`scrollbar_margin_top<class_Tree_theme_constant_scrollbar_margin_top>` | ``-1`` |
  228. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  229. | :ref:`int<class_int>` | :ref:`scrollbar_v_separation<class_Tree_theme_constant_scrollbar_v_separation>` | ``4`` |
  230. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  231. | :ref:`int<class_int>` | :ref:`v_separation<class_Tree_theme_constant_v_separation>` | ``4`` |
  232. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  233. | :ref:`Font<class_Font>` | :ref:`font<class_Tree_theme_font_font>` | |
  234. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  235. | :ref:`Font<class_Font>` | :ref:`title_button_font<class_Tree_theme_font_title_button_font>` | |
  236. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  237. | :ref:`int<class_int>` | :ref:`font_size<class_Tree_theme_font_size_font_size>` | |
  238. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  239. | :ref:`int<class_int>` | :ref:`title_button_font_size<class_Tree_theme_font_size_title_button_font_size>` | |
  240. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  241. | :ref:`Texture2D<class_Texture2D>` | :ref:`arrow<class_Tree_theme_icon_arrow>` | |
  242. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  243. | :ref:`Texture2D<class_Texture2D>` | :ref:`arrow_collapsed<class_Tree_theme_icon_arrow_collapsed>` | |
  244. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  245. | :ref:`Texture2D<class_Texture2D>` | :ref:`arrow_collapsed_mirrored<class_Tree_theme_icon_arrow_collapsed_mirrored>` | |
  246. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  247. | :ref:`Texture2D<class_Texture2D>` | :ref:`checked<class_Tree_theme_icon_checked>` | |
  248. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  249. | :ref:`Texture2D<class_Texture2D>` | :ref:`checked_disabled<class_Tree_theme_icon_checked_disabled>` | |
  250. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  251. | :ref:`Texture2D<class_Texture2D>` | :ref:`indeterminate<class_Tree_theme_icon_indeterminate>` | |
  252. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  253. | :ref:`Texture2D<class_Texture2D>` | :ref:`indeterminate_disabled<class_Tree_theme_icon_indeterminate_disabled>` | |
  254. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  255. | :ref:`Texture2D<class_Texture2D>` | :ref:`select_arrow<class_Tree_theme_icon_select_arrow>` | |
  256. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  257. | :ref:`Texture2D<class_Texture2D>` | :ref:`unchecked<class_Tree_theme_icon_unchecked>` | |
  258. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  259. | :ref:`Texture2D<class_Texture2D>` | :ref:`unchecked_disabled<class_Tree_theme_icon_unchecked_disabled>` | |
  260. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  261. | :ref:`Texture2D<class_Texture2D>` | :ref:`updown<class_Tree_theme_icon_updown>` | |
  262. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  263. | :ref:`StyleBox<class_StyleBox>` | :ref:`button_hover<class_Tree_theme_style_button_hover>` | |
  264. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  265. | :ref:`StyleBox<class_StyleBox>` | :ref:`button_pressed<class_Tree_theme_style_button_pressed>` | |
  266. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  267. | :ref:`StyleBox<class_StyleBox>` | :ref:`cursor<class_Tree_theme_style_cursor>` | |
  268. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  269. | :ref:`StyleBox<class_StyleBox>` | :ref:`cursor_unfocused<class_Tree_theme_style_cursor_unfocused>` | |
  270. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  271. | :ref:`StyleBox<class_StyleBox>` | :ref:`custom_button<class_Tree_theme_style_custom_button>` | |
  272. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  273. | :ref:`StyleBox<class_StyleBox>` | :ref:`custom_button_hover<class_Tree_theme_style_custom_button_hover>` | |
  274. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  275. | :ref:`StyleBox<class_StyleBox>` | :ref:`custom_button_pressed<class_Tree_theme_style_custom_button_pressed>` | |
  276. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  277. | :ref:`StyleBox<class_StyleBox>` | :ref:`focus<class_Tree_theme_style_focus>` | |
  278. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  279. | :ref:`StyleBox<class_StyleBox>` | :ref:`hovered<class_Tree_theme_style_hovered>` | |
  280. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  281. | :ref:`StyleBox<class_StyleBox>` | :ref:`hovered_dimmed<class_Tree_theme_style_hovered_dimmed>` | |
  282. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  283. | :ref:`StyleBox<class_StyleBox>` | :ref:`panel<class_Tree_theme_style_panel>` | |
  284. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  285. | :ref:`StyleBox<class_StyleBox>` | :ref:`selected<class_Tree_theme_style_selected>` | |
  286. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  287. | :ref:`StyleBox<class_StyleBox>` | :ref:`selected_focus<class_Tree_theme_style_selected_focus>` | |
  288. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  289. | :ref:`StyleBox<class_StyleBox>` | :ref:`title_button_hover<class_Tree_theme_style_title_button_hover>` | |
  290. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  291. | :ref:`StyleBox<class_StyleBox>` | :ref:`title_button_normal<class_Tree_theme_style_title_button_normal>` | |
  292. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  293. | :ref:`StyleBox<class_StyleBox>` | :ref:`title_button_pressed<class_Tree_theme_style_title_button_pressed>` | |
  294. +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+
  295. .. rst-class:: classref-section-separator
  296. ----
  297. .. rst-class:: classref-descriptions-group
  298. Signals
  299. -------
  300. .. _class_Tree_signal_button_clicked:
  301. .. rst-class:: classref-signal
  302. **button_clicked**\ (\ item\: :ref:`TreeItem<class_TreeItem>`, column\: :ref:`int<class_int>`, id\: :ref:`int<class_int>`, mouse_button_index\: :ref:`int<class_int>`\ ) :ref:`๐Ÿ”—<class_Tree_signal_button_clicked>`
  303. Emitted when a button on the tree was pressed (see :ref:`TreeItem.add_button<class_TreeItem_method_add_button>`).
  304. .. rst-class:: classref-item-separator
  305. ----
  306. .. _class_Tree_signal_cell_selected:
  307. .. rst-class:: classref-signal
  308. **cell_selected**\ (\ ) :ref:`๐Ÿ”—<class_Tree_signal_cell_selected>`
  309. Emitted when a cell is selected.
  310. .. rst-class:: classref-item-separator
  311. ----
  312. .. _class_Tree_signal_check_propagated_to_item:
  313. .. rst-class:: classref-signal
  314. **check_propagated_to_item**\ (\ item\: :ref:`TreeItem<class_TreeItem>`, column\: :ref:`int<class_int>`\ ) :ref:`๐Ÿ”—<class_Tree_signal_check_propagated_to_item>`
  315. Emitted when :ref:`TreeItem.propagate_check<class_TreeItem_method_propagate_check>` is called. Connect to this signal to process the items that are affected when :ref:`TreeItem.propagate_check<class_TreeItem_method_propagate_check>` is invoked. The order that the items affected will be processed is as follows: the item that invoked the method, children of that item, and finally parents of that item.
  316. .. rst-class:: classref-item-separator
  317. ----
  318. .. _class_Tree_signal_column_title_clicked:
  319. .. rst-class:: classref-signal
  320. **column_title_clicked**\ (\ column\: :ref:`int<class_int>`, mouse_button_index\: :ref:`int<class_int>`\ ) :ref:`๐Ÿ”—<class_Tree_signal_column_title_clicked>`
  321. Emitted when a column's title is clicked with either :ref:`@GlobalScope.MOUSE_BUTTON_LEFT<class_@GlobalScope_constant_MOUSE_BUTTON_LEFT>` or :ref:`@GlobalScope.MOUSE_BUTTON_RIGHT<class_@GlobalScope_constant_MOUSE_BUTTON_RIGHT>`.
  322. .. rst-class:: classref-item-separator
  323. ----
  324. .. _class_Tree_signal_custom_item_clicked:
  325. .. rst-class:: classref-signal
  326. **custom_item_clicked**\ (\ mouse_button_index\: :ref:`int<class_int>`\ ) :ref:`๐Ÿ”—<class_Tree_signal_custom_item_clicked>`
  327. Emitted when an item with :ref:`TreeItem.CELL_MODE_CUSTOM<class_TreeItem_constant_CELL_MODE_CUSTOM>` is clicked with a mouse button.
  328. .. rst-class:: classref-item-separator
  329. ----
  330. .. _class_Tree_signal_custom_popup_edited:
  331. .. rst-class:: classref-signal
  332. **custom_popup_edited**\ (\ arrow_clicked\: :ref:`bool<class_bool>`\ ) :ref:`๐Ÿ”—<class_Tree_signal_custom_popup_edited>`
  333. Emitted when a cell with the :ref:`TreeItem.CELL_MODE_CUSTOM<class_TreeItem_constant_CELL_MODE_CUSTOM>` is clicked to be edited.
  334. .. rst-class:: classref-item-separator
  335. ----
  336. .. _class_Tree_signal_empty_clicked:
  337. .. rst-class:: classref-signal
  338. **empty_clicked**\ (\ click_position\: :ref:`Vector2<class_Vector2>`, mouse_button_index\: :ref:`int<class_int>`\ ) :ref:`๐Ÿ”—<class_Tree_signal_empty_clicked>`
  339. Emitted when a mouse button is clicked in the empty space of the tree.
  340. .. rst-class:: classref-item-separator
  341. ----
  342. .. _class_Tree_signal_item_activated:
  343. .. rst-class:: classref-signal
  344. **item_activated**\ (\ ) :ref:`๐Ÿ”—<class_Tree_signal_item_activated>`
  345. Emitted when an item is double-clicked, or selected with a ``ui_accept`` input event (e.g. using :kbd:`Enter` or :kbd:`Space` on the keyboard).
  346. .. rst-class:: classref-item-separator
  347. ----
  348. .. _class_Tree_signal_item_collapsed:
  349. .. rst-class:: classref-signal
  350. **item_collapsed**\ (\ item\: :ref:`TreeItem<class_TreeItem>`\ ) :ref:`๐Ÿ”—<class_Tree_signal_item_collapsed>`
  351. Emitted when an item is collapsed by a click on the folding arrow.
  352. .. rst-class:: classref-item-separator
  353. ----
  354. .. _class_Tree_signal_item_edited:
  355. .. rst-class:: classref-signal
  356. **item_edited**\ (\ ) :ref:`๐Ÿ”—<class_Tree_signal_item_edited>`
  357. Emitted when an item is edited.
  358. .. rst-class:: classref-item-separator
  359. ----
  360. .. _class_Tree_signal_item_icon_double_clicked:
  361. .. rst-class:: classref-signal
  362. **item_icon_double_clicked**\ (\ ) :ref:`๐Ÿ”—<class_Tree_signal_item_icon_double_clicked>`
  363. Emitted when an item's icon is double-clicked. For a signal that emits when any part of the item is double-clicked, see :ref:`item_activated<class_Tree_signal_item_activated>`.
  364. .. rst-class:: classref-item-separator
  365. ----
  366. .. _class_Tree_signal_item_mouse_selected:
  367. .. rst-class:: classref-signal
  368. **item_mouse_selected**\ (\ mouse_position\: :ref:`Vector2<class_Vector2>`, mouse_button_index\: :ref:`int<class_int>`\ ) :ref:`๐Ÿ”—<class_Tree_signal_item_mouse_selected>`
  369. Emitted when an item is selected with a mouse button.
  370. .. rst-class:: classref-item-separator
  371. ----
  372. .. _class_Tree_signal_item_selected:
  373. .. rst-class:: classref-signal
  374. **item_selected**\ (\ ) :ref:`๐Ÿ”—<class_Tree_signal_item_selected>`
  375. Emitted when an item is selected.
  376. .. rst-class:: classref-item-separator
  377. ----
  378. .. _class_Tree_signal_multi_selected:
  379. .. rst-class:: classref-signal
  380. **multi_selected**\ (\ item\: :ref:`TreeItem<class_TreeItem>`, column\: :ref:`int<class_int>`, selected\: :ref:`bool<class_bool>`\ ) :ref:`๐Ÿ”—<class_Tree_signal_multi_selected>`
  381. Emitted instead of :ref:`item_selected<class_Tree_signal_item_selected>` if :ref:`select_mode<class_Tree_property_select_mode>` is set to :ref:`SELECT_MULTI<class_Tree_constant_SELECT_MULTI>`.
  382. .. rst-class:: classref-item-separator
  383. ----
  384. .. _class_Tree_signal_nothing_selected:
  385. .. rst-class:: classref-signal
  386. **nothing_selected**\ (\ ) :ref:`๐Ÿ”—<class_Tree_signal_nothing_selected>`
  387. Emitted when a left mouse button click does not select any item.
  388. .. rst-class:: classref-section-separator
  389. ----
  390. .. rst-class:: classref-descriptions-group
  391. Enumerations
  392. ------------
  393. .. _enum_Tree_SelectMode:
  394. .. rst-class:: classref-enumeration
  395. enum **SelectMode**: :ref:`๐Ÿ”—<enum_Tree_SelectMode>`
  396. .. _class_Tree_constant_SELECT_SINGLE:
  397. .. rst-class:: classref-enumeration-constant
  398. :ref:`SelectMode<enum_Tree_SelectMode>` **SELECT_SINGLE** = ``0``
  399. Allows selection of a single cell at a time. From the perspective of items, only a single item is allowed to be selected. And there is only one column selected in the selected item.
  400. The focus cursor is always hidden in this mode, but it is positioned at the current selection, making the currently selected item the currently focused item.
  401. .. _class_Tree_constant_SELECT_ROW:
  402. .. rst-class:: classref-enumeration-constant
  403. :ref:`SelectMode<enum_Tree_SelectMode>` **SELECT_ROW** = ``1``
  404. Allows selection of a single row at a time. From the perspective of items, only a single items is allowed to be selected. And all the columns are selected in the selected item.
  405. The focus cursor is always hidden in this mode, but it is positioned at the first column of the current selection, making the currently selected item the currently focused item.
  406. .. _class_Tree_constant_SELECT_MULTI:
  407. .. rst-class:: classref-enumeration-constant
  408. :ref:`SelectMode<enum_Tree_SelectMode>` **SELECT_MULTI** = ``2``
  409. Allows selection of multiple cells at the same time. From the perspective of items, multiple items are allowed to be selected. And there can be multiple columns selected in each selected item.
  410. The focus cursor is visible in this mode, the item or column under the cursor is not necessarily selected.
  411. .. rst-class:: classref-item-separator
  412. ----
  413. .. _enum_Tree_DropModeFlags:
  414. .. rst-class:: classref-enumeration
  415. enum **DropModeFlags**: :ref:`๐Ÿ”—<enum_Tree_DropModeFlags>`
  416. .. _class_Tree_constant_DROP_MODE_DISABLED:
  417. .. rst-class:: classref-enumeration-constant
  418. :ref:`DropModeFlags<enum_Tree_DropModeFlags>` **DROP_MODE_DISABLED** = ``0``
  419. Disables all drop sections, but still allows to detect the "on item" drop section by :ref:`get_drop_section_at_position<class_Tree_method_get_drop_section_at_position>`.
  420. \ **Note:** This is the default flag, it has no effect when combined with other flags.
  421. .. _class_Tree_constant_DROP_MODE_ON_ITEM:
  422. .. rst-class:: classref-enumeration-constant
  423. :ref:`DropModeFlags<enum_Tree_DropModeFlags>` **DROP_MODE_ON_ITEM** = ``1``
  424. Enables the "on item" drop section. This drop section covers the entire item.
  425. When combined with :ref:`DROP_MODE_INBETWEEN<class_Tree_constant_DROP_MODE_INBETWEEN>`, this drop section halves the height and stays centered vertically.
  426. .. _class_Tree_constant_DROP_MODE_INBETWEEN:
  427. .. rst-class:: classref-enumeration-constant
  428. :ref:`DropModeFlags<enum_Tree_DropModeFlags>` **DROP_MODE_INBETWEEN** = ``2``
  429. Enables "above item" and "below item" drop sections. The "above item" drop section covers the top half of the item, and the "below item" drop section covers the bottom half.
  430. When combined with :ref:`DROP_MODE_ON_ITEM<class_Tree_constant_DROP_MODE_ON_ITEM>`, these drop sections halves the height and stays on top / bottom accordingly.
  431. .. rst-class:: classref-section-separator
  432. ----
  433. .. rst-class:: classref-descriptions-group
  434. Property Descriptions
  435. ---------------------
  436. .. _class_Tree_property_allow_reselect:
  437. .. rst-class:: classref-property
  438. :ref:`bool<class_bool>` **allow_reselect** = ``false`` :ref:`๐Ÿ”—<class_Tree_property_allow_reselect>`
  439. .. rst-class:: classref-property-setget
  440. - |void| **set_allow_reselect**\ (\ value\: :ref:`bool<class_bool>`\ )
  441. - :ref:`bool<class_bool>` **get_allow_reselect**\ (\ )
  442. If ``true``, the currently selected cell may be selected again.
  443. .. rst-class:: classref-item-separator
  444. ----
  445. .. _class_Tree_property_allow_rmb_select:
  446. .. rst-class:: classref-property
  447. :ref:`bool<class_bool>` **allow_rmb_select** = ``false`` :ref:`๐Ÿ”—<class_Tree_property_allow_rmb_select>`
  448. .. rst-class:: classref-property-setget
  449. - |void| **set_allow_rmb_select**\ (\ value\: :ref:`bool<class_bool>`\ )
  450. - :ref:`bool<class_bool>` **get_allow_rmb_select**\ (\ )
  451. If ``true``, a right mouse button click can select items.
  452. .. rst-class:: classref-item-separator
  453. ----
  454. .. _class_Tree_property_allow_search:
  455. .. rst-class:: classref-property
  456. :ref:`bool<class_bool>` **allow_search** = ``true`` :ref:`๐Ÿ”—<class_Tree_property_allow_search>`
  457. .. rst-class:: classref-property-setget
  458. - |void| **set_allow_search**\ (\ value\: :ref:`bool<class_bool>`\ )
  459. - :ref:`bool<class_bool>` **get_allow_search**\ (\ )
  460. If ``true``, allows navigating the **Tree** with letter keys through incremental search.
  461. .. rst-class:: classref-item-separator
  462. ----
  463. .. _class_Tree_property_column_titles_visible:
  464. .. rst-class:: classref-property
  465. :ref:`bool<class_bool>` **column_titles_visible** = ``false`` :ref:`๐Ÿ”—<class_Tree_property_column_titles_visible>`
  466. .. rst-class:: classref-property-setget
  467. - |void| **set_column_titles_visible**\ (\ value\: :ref:`bool<class_bool>`\ )
  468. - :ref:`bool<class_bool>` **are_column_titles_visible**\ (\ )
  469. If ``true``, column titles are visible.
  470. .. rst-class:: classref-item-separator
  471. ----
  472. .. _class_Tree_property_columns:
  473. .. rst-class:: classref-property
  474. :ref:`int<class_int>` **columns** = ``1`` :ref:`๐Ÿ”—<class_Tree_property_columns>`
  475. .. rst-class:: classref-property-setget
  476. - |void| **set_columns**\ (\ value\: :ref:`int<class_int>`\ )
  477. - :ref:`int<class_int>` **get_columns**\ (\ )
  478. The number of columns.
  479. .. rst-class:: classref-item-separator
  480. ----
  481. .. _class_Tree_property_drop_mode_flags:
  482. .. rst-class:: classref-property
  483. :ref:`int<class_int>` **drop_mode_flags** = ``0`` :ref:`๐Ÿ”—<class_Tree_property_drop_mode_flags>`
  484. .. rst-class:: classref-property-setget
  485. - |void| **set_drop_mode_flags**\ (\ value\: :ref:`int<class_int>`\ )
  486. - :ref:`int<class_int>` **get_drop_mode_flags**\ (\ )
  487. The drop mode as an OR combination of flags. See :ref:`DropModeFlags<enum_Tree_DropModeFlags>` constants. Once dropping is done, reverts to :ref:`DROP_MODE_DISABLED<class_Tree_constant_DROP_MODE_DISABLED>`. Setting this during :ref:`Control._can_drop_data<class_Control_private_method__can_drop_data>` is recommended.
  488. This controls the drop sections, i.e. the decision and drawing of possible drop locations based on the mouse position.
  489. .. rst-class:: classref-item-separator
  490. ----
  491. .. _class_Tree_property_enable_recursive_folding:
  492. .. rst-class:: classref-property
  493. :ref:`bool<class_bool>` **enable_recursive_folding** = ``true`` :ref:`๐Ÿ”—<class_Tree_property_enable_recursive_folding>`
  494. .. rst-class:: classref-property-setget
  495. - |void| **set_enable_recursive_folding**\ (\ value\: :ref:`bool<class_bool>`\ )
  496. - :ref:`bool<class_bool>` **is_recursive_folding_enabled**\ (\ )
  497. If ``true``, recursive folding is enabled for this **Tree**. Holding down :kbd:`Shift` while clicking the fold arrow or using ``ui_right``/``ui_left`` shortcuts collapses or uncollapses the :ref:`TreeItem<class_TreeItem>` and all its descendants.
  498. .. rst-class:: classref-item-separator
  499. ----
  500. .. _class_Tree_property_hide_folding:
  501. .. rst-class:: classref-property
  502. :ref:`bool<class_bool>` **hide_folding** = ``false`` :ref:`๐Ÿ”—<class_Tree_property_hide_folding>`
  503. .. rst-class:: classref-property-setget
  504. - |void| **set_hide_folding**\ (\ value\: :ref:`bool<class_bool>`\ )
  505. - :ref:`bool<class_bool>` **is_folding_hidden**\ (\ )
  506. If ``true``, the folding arrow is hidden.
  507. .. rst-class:: classref-item-separator
  508. ----
  509. .. _class_Tree_property_hide_root:
  510. .. rst-class:: classref-property
  511. :ref:`bool<class_bool>` **hide_root** = ``false`` :ref:`๐Ÿ”—<class_Tree_property_hide_root>`
  512. .. rst-class:: classref-property-setget
  513. - |void| **set_hide_root**\ (\ value\: :ref:`bool<class_bool>`\ )
  514. - :ref:`bool<class_bool>` **is_root_hidden**\ (\ )
  515. If ``true``, the tree's root is hidden.
  516. .. rst-class:: classref-item-separator
  517. ----
  518. .. _class_Tree_property_scroll_horizontal_enabled:
  519. .. rst-class:: classref-property
  520. :ref:`bool<class_bool>` **scroll_horizontal_enabled** = ``true`` :ref:`๐Ÿ”—<class_Tree_property_scroll_horizontal_enabled>`
  521. .. rst-class:: classref-property-setget
  522. - |void| **set_h_scroll_enabled**\ (\ value\: :ref:`bool<class_bool>`\ )
  523. - :ref:`bool<class_bool>` **is_h_scroll_enabled**\ (\ )
  524. If ``true``, enables horizontal scrolling.
  525. .. rst-class:: classref-item-separator
  526. ----
  527. .. _class_Tree_property_scroll_vertical_enabled:
  528. .. rst-class:: classref-property
  529. :ref:`bool<class_bool>` **scroll_vertical_enabled** = ``true`` :ref:`๐Ÿ”—<class_Tree_property_scroll_vertical_enabled>`
  530. .. rst-class:: classref-property-setget
  531. - |void| **set_v_scroll_enabled**\ (\ value\: :ref:`bool<class_bool>`\ )
  532. - :ref:`bool<class_bool>` **is_v_scroll_enabled**\ (\ )
  533. If ``true``, enables vertical scrolling.
  534. .. rst-class:: classref-item-separator
  535. ----
  536. .. _class_Tree_property_select_mode:
  537. .. rst-class:: classref-property
  538. :ref:`SelectMode<enum_Tree_SelectMode>` **select_mode** = ``0`` :ref:`๐Ÿ”—<class_Tree_property_select_mode>`
  539. .. rst-class:: classref-property-setget
  540. - |void| **set_select_mode**\ (\ value\: :ref:`SelectMode<enum_Tree_SelectMode>`\ )
  541. - :ref:`SelectMode<enum_Tree_SelectMode>` **get_select_mode**\ (\ )
  542. Allows single or multiple selection. See the :ref:`SelectMode<enum_Tree_SelectMode>` constants.
  543. .. rst-class:: classref-section-separator
  544. ----
  545. .. rst-class:: classref-descriptions-group
  546. Method Descriptions
  547. -------------------
  548. .. _class_Tree_method_clear:
  549. .. rst-class:: classref-method
  550. |void| **clear**\ (\ ) :ref:`๐Ÿ”—<class_Tree_method_clear>`
  551. Clears the tree. This removes all items.
  552. .. rst-class:: classref-item-separator
  553. ----
  554. .. _class_Tree_method_create_item:
  555. .. rst-class:: classref-method
  556. :ref:`TreeItem<class_TreeItem>` **create_item**\ (\ parent\: :ref:`TreeItem<class_TreeItem>` = null, index\: :ref:`int<class_int>` = -1\ ) :ref:`๐Ÿ”—<class_Tree_method_create_item>`
  557. Creates an item in the tree and adds it as a child of ``parent``, which can be either a valid :ref:`TreeItem<class_TreeItem>` or ``null``.
  558. If ``parent`` is ``null``, the root item will be the parent, or the new item will be the root itself if the tree is empty.
  559. The new item will be the ``index``-th child of parent, or it will be the last child if there are not enough siblings.
  560. .. rst-class:: classref-item-separator
  561. ----
  562. .. _class_Tree_method_deselect_all:
  563. .. rst-class:: classref-method
  564. |void| **deselect_all**\ (\ ) :ref:`๐Ÿ”—<class_Tree_method_deselect_all>`
  565. Deselects all tree items (rows and columns). In :ref:`SELECT_MULTI<class_Tree_constant_SELECT_MULTI>` mode also removes selection cursor.
  566. .. rst-class:: classref-item-separator
  567. ----
  568. .. _class_Tree_method_edit_selected:
  569. .. rst-class:: classref-method
  570. :ref:`bool<class_bool>` **edit_selected**\ (\ force_edit\: :ref:`bool<class_bool>` = false\ ) :ref:`๐Ÿ”—<class_Tree_method_edit_selected>`
  571. Edits the selected tree item as if it was clicked.
  572. Either the item must be set editable with :ref:`TreeItem.set_editable<class_TreeItem_method_set_editable>` or ``force_edit`` must be ``true``.
  573. Returns ``true`` if the item could be edited. Fails if no item is selected.
  574. .. rst-class:: classref-item-separator
  575. ----
  576. .. _class_Tree_method_ensure_cursor_is_visible:
  577. .. rst-class:: classref-method
  578. |void| **ensure_cursor_is_visible**\ (\ ) :ref:`๐Ÿ”—<class_Tree_method_ensure_cursor_is_visible>`
  579. Makes the currently focused cell visible.
  580. This will scroll the tree if necessary. In :ref:`SELECT_ROW<class_Tree_constant_SELECT_ROW>` mode, this will not do horizontal scrolling, as all the cells in the selected row is focused logically.
  581. \ **Note:** Despite the name of this method, the focus cursor itself is only visible in :ref:`SELECT_MULTI<class_Tree_constant_SELECT_MULTI>` mode.
  582. .. rst-class:: classref-item-separator
  583. ----
  584. .. _class_Tree_method_get_button_id_at_position:
  585. .. rst-class:: classref-method
  586. :ref:`int<class_int>` **get_button_id_at_position**\ (\ position\: :ref:`Vector2<class_Vector2>`\ ) |const| :ref:`๐Ÿ”—<class_Tree_method_get_button_id_at_position>`
  587. Returns the button ID at ``position``, or -1 if no button is there.
  588. .. rst-class:: classref-item-separator
  589. ----
  590. .. _class_Tree_method_get_column_at_position:
  591. .. rst-class:: classref-method
  592. :ref:`int<class_int>` **get_column_at_position**\ (\ position\: :ref:`Vector2<class_Vector2>`\ ) |const| :ref:`๐Ÿ”—<class_Tree_method_get_column_at_position>`
  593. Returns the column index at ``position``, or -1 if no item is there.
  594. .. rst-class:: classref-item-separator
  595. ----
  596. .. _class_Tree_method_get_column_expand_ratio:
  597. .. rst-class:: classref-method
  598. :ref:`int<class_int>` **get_column_expand_ratio**\ (\ column\: :ref:`int<class_int>`\ ) |const| :ref:`๐Ÿ”—<class_Tree_method_get_column_expand_ratio>`
  599. Returns the expand ratio assigned to the column.
  600. .. rst-class:: classref-item-separator
  601. ----
  602. .. _class_Tree_method_get_column_title:
  603. .. rst-class:: classref-method
  604. :ref:`String<class_String>` **get_column_title**\ (\ column\: :ref:`int<class_int>`\ ) |const| :ref:`๐Ÿ”—<class_Tree_method_get_column_title>`
  605. Returns the column's title.
  606. .. rst-class:: classref-item-separator
  607. ----
  608. .. _class_Tree_method_get_column_title_alignment:
  609. .. rst-class:: classref-method
  610. :ref:`HorizontalAlignment<enum_@GlobalScope_HorizontalAlignment>` **get_column_title_alignment**\ (\ column\: :ref:`int<class_int>`\ ) |const| :ref:`๐Ÿ”—<class_Tree_method_get_column_title_alignment>`
  611. Returns the column title alignment.
  612. .. rst-class:: classref-item-separator
  613. ----
  614. .. _class_Tree_method_get_column_title_direction:
  615. .. rst-class:: classref-method
  616. :ref:`TextDirection<enum_Control_TextDirection>` **get_column_title_direction**\ (\ column\: :ref:`int<class_int>`\ ) |const| :ref:`๐Ÿ”—<class_Tree_method_get_column_title_direction>`
  617. Returns column title base writing direction.
  618. .. rst-class:: classref-item-separator
  619. ----
  620. .. _class_Tree_method_get_column_title_language:
  621. .. rst-class:: classref-method
  622. :ref:`String<class_String>` **get_column_title_language**\ (\ column\: :ref:`int<class_int>`\ ) |const| :ref:`๐Ÿ”—<class_Tree_method_get_column_title_language>`
  623. Returns column title language code.
  624. .. rst-class:: classref-item-separator
  625. ----
  626. .. _class_Tree_method_get_column_width:
  627. .. rst-class:: classref-method
  628. :ref:`int<class_int>` **get_column_width**\ (\ column\: :ref:`int<class_int>`\ ) |const| :ref:`๐Ÿ”—<class_Tree_method_get_column_width>`
  629. Returns the column's width in pixels.
  630. .. rst-class:: classref-item-separator
  631. ----
  632. .. _class_Tree_method_get_custom_popup_rect:
  633. .. rst-class:: classref-method
  634. :ref:`Rect2<class_Rect2>` **get_custom_popup_rect**\ (\ ) |const| :ref:`๐Ÿ”—<class_Tree_method_get_custom_popup_rect>`
  635. Returns the rectangle for custom popups. Helper to create custom cell controls that display a popup. See :ref:`TreeItem.set_cell_mode<class_TreeItem_method_set_cell_mode>`.
  636. .. rst-class:: classref-item-separator
  637. ----
  638. .. _class_Tree_method_get_drop_section_at_position:
  639. .. rst-class:: classref-method
  640. :ref:`int<class_int>` **get_drop_section_at_position**\ (\ position\: :ref:`Vector2<class_Vector2>`\ ) |const| :ref:`๐Ÿ”—<class_Tree_method_get_drop_section_at_position>`
  641. Returns the drop section at ``position``, or -100 if no item is there.
  642. Values -1, 0, or 1 will be returned for the "above item", "on item", and "below item" drop sections, respectively. See :ref:`DropModeFlags<enum_Tree_DropModeFlags>` for a description of each drop section.
  643. To get the item which the returned drop section is relative to, use :ref:`get_item_at_position<class_Tree_method_get_item_at_position>`.
  644. .. rst-class:: classref-item-separator
  645. ----
  646. .. _class_Tree_method_get_edited:
  647. .. rst-class:: classref-method
  648. :ref:`TreeItem<class_TreeItem>` **get_edited**\ (\ ) |const| :ref:`๐Ÿ”—<class_Tree_method_get_edited>`
  649. Returns the currently edited item. Can be used with :ref:`item_edited<class_Tree_signal_item_edited>` to get the item that was modified.
  650. .. tabs::
  651. .. code-tab:: gdscript
  652. func _ready():
  653. $Tree.item_edited.connect(on_Tree_item_edited)
  654. func on_Tree_item_edited():
  655. print($Tree.get_edited()) # This item just got edited (e.g. checked).
  656. .. code-tab:: csharp
  657. public override void _Ready()
  658. {
  659. GetNode<Tree>("Tree").ItemEdited += OnTreeItemEdited;
  660. }
  661. public void OnTreeItemEdited()
  662. {
  663. GD.Print(GetNode<Tree>("Tree").GetEdited()); // This item just got edited (e.g. checked).
  664. }
  665. .. rst-class:: classref-item-separator
  666. ----
  667. .. _class_Tree_method_get_edited_column:
  668. .. rst-class:: classref-method
  669. :ref:`int<class_int>` **get_edited_column**\ (\ ) |const| :ref:`๐Ÿ”—<class_Tree_method_get_edited_column>`
  670. Returns the column for the currently edited item.
  671. .. rst-class:: classref-item-separator
  672. ----
  673. .. _class_Tree_method_get_item_area_rect:
  674. .. rst-class:: classref-method
  675. :ref:`Rect2<class_Rect2>` **get_item_area_rect**\ (\ item\: :ref:`TreeItem<class_TreeItem>`, column\: :ref:`int<class_int>` = -1, button_index\: :ref:`int<class_int>` = -1\ ) |const| :ref:`๐Ÿ”—<class_Tree_method_get_item_area_rect>`
  676. Returns the rectangle area for the specified :ref:`TreeItem<class_TreeItem>`. If ``column`` is specified, only get the position and size of that column, otherwise get the rectangle containing all columns. If a button index is specified, the rectangle of that button will be returned.
  677. .. rst-class:: classref-item-separator
  678. ----
  679. .. _class_Tree_method_get_item_at_position:
  680. .. rst-class:: classref-method
  681. :ref:`TreeItem<class_TreeItem>` **get_item_at_position**\ (\ position\: :ref:`Vector2<class_Vector2>`\ ) |const| :ref:`๐Ÿ”—<class_Tree_method_get_item_at_position>`
  682. Returns the tree item at the specified position (relative to the tree origin position).
  683. .. rst-class:: classref-item-separator
  684. ----
  685. .. _class_Tree_method_get_next_selected:
  686. .. rst-class:: classref-method
  687. :ref:`TreeItem<class_TreeItem>` **get_next_selected**\ (\ from\: :ref:`TreeItem<class_TreeItem>`\ ) :ref:`๐Ÿ”—<class_Tree_method_get_next_selected>`
  688. Returns the next selected :ref:`TreeItem<class_TreeItem>` after the given one, or ``null`` if the end is reached.
  689. If ``from`` is ``null``, this returns the first selected item.
  690. .. rst-class:: classref-item-separator
  691. ----
  692. .. _class_Tree_method_get_pressed_button:
  693. .. rst-class:: classref-method
  694. :ref:`int<class_int>` **get_pressed_button**\ (\ ) |const| :ref:`๐Ÿ”—<class_Tree_method_get_pressed_button>`
  695. Returns the last pressed button's index.
  696. .. rst-class:: classref-item-separator
  697. ----
  698. .. _class_Tree_method_get_root:
  699. .. rst-class:: classref-method
  700. :ref:`TreeItem<class_TreeItem>` **get_root**\ (\ ) |const| :ref:`๐Ÿ”—<class_Tree_method_get_root>`
  701. Returns the tree's root item, or ``null`` if the tree is empty.
  702. .. rst-class:: classref-item-separator
  703. ----
  704. .. _class_Tree_method_get_scroll:
  705. .. rst-class:: classref-method
  706. :ref:`Vector2<class_Vector2>` **get_scroll**\ (\ ) |const| :ref:`๐Ÿ”—<class_Tree_method_get_scroll>`
  707. Returns the current scrolling position.
  708. .. rst-class:: classref-item-separator
  709. ----
  710. .. _class_Tree_method_get_selected:
  711. .. rst-class:: classref-method
  712. :ref:`TreeItem<class_TreeItem>` **get_selected**\ (\ ) |const| :ref:`๐Ÿ”—<class_Tree_method_get_selected>`
  713. Returns the currently focused item, or ``null`` if no item is focused.
  714. In :ref:`SELECT_ROW<class_Tree_constant_SELECT_ROW>` and :ref:`SELECT_SINGLE<class_Tree_constant_SELECT_SINGLE>` modes, the focused item is same as the selected item. In :ref:`SELECT_MULTI<class_Tree_constant_SELECT_MULTI>` mode, the focused item is the item under the focus cursor, not necessarily selected.
  715. To get the currently selected item(s), use :ref:`get_next_selected<class_Tree_method_get_next_selected>`.
  716. .. rst-class:: classref-item-separator
  717. ----
  718. .. _class_Tree_method_get_selected_column:
  719. .. rst-class:: classref-method
  720. :ref:`int<class_int>` **get_selected_column**\ (\ ) |const| :ref:`๐Ÿ”—<class_Tree_method_get_selected_column>`
  721. Returns the currently focused column, or -1 if no column is focused.
  722. In :ref:`SELECT_SINGLE<class_Tree_constant_SELECT_SINGLE>` mode, the focused column is the selected column. In :ref:`SELECT_ROW<class_Tree_constant_SELECT_ROW>` mode, the focused column is always 0 if any item is selected. In :ref:`SELECT_MULTI<class_Tree_constant_SELECT_MULTI>` mode, the focused column is the column under the focus cursor, and there are not necessarily any column selected.
  723. To tell whether a column of an item is selected, use :ref:`TreeItem.is_selected<class_TreeItem_method_is_selected>`.
  724. .. rst-class:: classref-item-separator
  725. ----
  726. .. _class_Tree_method_is_column_clipping_content:
  727. .. rst-class:: classref-method
  728. :ref:`bool<class_bool>` **is_column_clipping_content**\ (\ column\: :ref:`int<class_int>`\ ) |const| :ref:`๐Ÿ”—<class_Tree_method_is_column_clipping_content>`
  729. Returns ``true`` if the column has enabled clipping (see :ref:`set_column_clip_content<class_Tree_method_set_column_clip_content>`).
  730. .. rst-class:: classref-item-separator
  731. ----
  732. .. _class_Tree_method_is_column_expanding:
  733. .. rst-class:: classref-method
  734. :ref:`bool<class_bool>` **is_column_expanding**\ (\ column\: :ref:`int<class_int>`\ ) |const| :ref:`๐Ÿ”—<class_Tree_method_is_column_expanding>`
  735. Returns ``true`` if the column has enabled expanding (see :ref:`set_column_expand<class_Tree_method_set_column_expand>`).
  736. .. rst-class:: classref-item-separator
  737. ----
  738. .. _class_Tree_method_scroll_to_item:
  739. .. rst-class:: classref-method
  740. |void| **scroll_to_item**\ (\ item\: :ref:`TreeItem<class_TreeItem>`, center_on_item\: :ref:`bool<class_bool>` = false\ ) :ref:`๐Ÿ”—<class_Tree_method_scroll_to_item>`
  741. Causes the **Tree** to jump to the specified :ref:`TreeItem<class_TreeItem>`.
  742. .. rst-class:: classref-item-separator
  743. ----
  744. .. _class_Tree_method_set_column_clip_content:
  745. .. rst-class:: classref-method
  746. |void| **set_column_clip_content**\ (\ column\: :ref:`int<class_int>`, enable\: :ref:`bool<class_bool>`\ ) :ref:`๐Ÿ”—<class_Tree_method_set_column_clip_content>`
  747. Allows to enable clipping for column's content, making the content size ignored.
  748. .. rst-class:: classref-item-separator
  749. ----
  750. .. _class_Tree_method_set_column_custom_minimum_width:
  751. .. rst-class:: classref-method
  752. |void| **set_column_custom_minimum_width**\ (\ column\: :ref:`int<class_int>`, min_width\: :ref:`int<class_int>`\ ) :ref:`๐Ÿ”—<class_Tree_method_set_column_custom_minimum_width>`
  753. Overrides the calculated minimum width of a column. It can be set to ``0`` to restore the default behavior. Columns that have the "Expand" flag will use their "min_width" in a similar fashion to :ref:`Control.size_flags_stretch_ratio<class_Control_property_size_flags_stretch_ratio>`.
  754. .. rst-class:: classref-item-separator
  755. ----
  756. .. _class_Tree_method_set_column_expand:
  757. .. rst-class:: classref-method
  758. |void| **set_column_expand**\ (\ column\: :ref:`int<class_int>`, expand\: :ref:`bool<class_bool>`\ ) :ref:`๐Ÿ”—<class_Tree_method_set_column_expand>`
  759. If ``true``, the column will have the "Expand" flag of :ref:`Control<class_Control>`. Columns that have the "Expand" flag will use their expand ratio in a similar fashion to :ref:`Control.size_flags_stretch_ratio<class_Control_property_size_flags_stretch_ratio>` (see :ref:`set_column_expand_ratio<class_Tree_method_set_column_expand_ratio>`).
  760. .. rst-class:: classref-item-separator
  761. ----
  762. .. _class_Tree_method_set_column_expand_ratio:
  763. .. rst-class:: classref-method
  764. |void| **set_column_expand_ratio**\ (\ column\: :ref:`int<class_int>`, ratio\: :ref:`int<class_int>`\ ) :ref:`๐Ÿ”—<class_Tree_method_set_column_expand_ratio>`
  765. Sets the relative expand ratio for a column. See :ref:`set_column_expand<class_Tree_method_set_column_expand>`.
  766. .. rst-class:: classref-item-separator
  767. ----
  768. .. _class_Tree_method_set_column_title:
  769. .. rst-class:: classref-method
  770. |void| **set_column_title**\ (\ column\: :ref:`int<class_int>`, title\: :ref:`String<class_String>`\ ) :ref:`๐Ÿ”—<class_Tree_method_set_column_title>`
  771. Sets the title of a column.
  772. .. rst-class:: classref-item-separator
  773. ----
  774. .. _class_Tree_method_set_column_title_alignment:
  775. .. rst-class:: classref-method
  776. |void| **set_column_title_alignment**\ (\ column\: :ref:`int<class_int>`, title_alignment\: :ref:`HorizontalAlignment<enum_@GlobalScope_HorizontalAlignment>`\ ) :ref:`๐Ÿ”—<class_Tree_method_set_column_title_alignment>`
  777. Sets the column title alignment. Note that :ref:`@GlobalScope.HORIZONTAL_ALIGNMENT_FILL<class_@GlobalScope_constant_HORIZONTAL_ALIGNMENT_FILL>` is not supported for column titles.
  778. .. rst-class:: classref-item-separator
  779. ----
  780. .. _class_Tree_method_set_column_title_direction:
  781. .. rst-class:: classref-method
  782. |void| **set_column_title_direction**\ (\ column\: :ref:`int<class_int>`, direction\: :ref:`TextDirection<enum_Control_TextDirection>`\ ) :ref:`๐Ÿ”—<class_Tree_method_set_column_title_direction>`
  783. Sets column title base writing direction.
  784. .. rst-class:: classref-item-separator
  785. ----
  786. .. _class_Tree_method_set_column_title_language:
  787. .. rst-class:: classref-method
  788. |void| **set_column_title_language**\ (\ column\: :ref:`int<class_int>`, language\: :ref:`String<class_String>`\ ) :ref:`๐Ÿ”—<class_Tree_method_set_column_title_language>`
  789. Sets language code of column title used for line-breaking and text shaping algorithms, if left empty current locale is used instead.
  790. .. rst-class:: classref-item-separator
  791. ----
  792. .. _class_Tree_method_set_selected:
  793. .. rst-class:: classref-method
  794. |void| **set_selected**\ (\ item\: :ref:`TreeItem<class_TreeItem>`, column\: :ref:`int<class_int>`\ ) :ref:`๐Ÿ”—<class_Tree_method_set_selected>`
  795. Selects the specified :ref:`TreeItem<class_TreeItem>` and column.
  796. .. rst-class:: classref-section-separator
  797. ----
  798. .. rst-class:: classref-descriptions-group
  799. Theme Property Descriptions
  800. ---------------------------
  801. .. _class_Tree_theme_color_children_hl_line_color:
  802. .. rst-class:: classref-themeproperty
  803. :ref:`Color<class_Color>` **children_hl_line_color** = ``Color(0.27, 0.27, 0.27, 1)`` :ref:`๐Ÿ”—<class_Tree_theme_color_children_hl_line_color>`
  804. The :ref:`Color<class_Color>` of the relationship lines between the selected :ref:`TreeItem<class_TreeItem>` and its children.
  805. .. rst-class:: classref-item-separator
  806. ----
  807. .. _class_Tree_theme_color_custom_button_font_highlight:
  808. .. rst-class:: classref-themeproperty
  809. :ref:`Color<class_Color>` **custom_button_font_highlight** = ``Color(0.95, 0.95, 0.95, 1)`` :ref:`๐Ÿ”—<class_Tree_theme_color_custom_button_font_highlight>`
  810. Text :ref:`Color<class_Color>` for a :ref:`TreeItem.CELL_MODE_CUSTOM<class_TreeItem_constant_CELL_MODE_CUSTOM>` mode cell when it's hovered.
  811. .. rst-class:: classref-item-separator
  812. ----
  813. .. _class_Tree_theme_color_drop_position_color:
  814. .. rst-class:: classref-themeproperty
  815. :ref:`Color<class_Color>` **drop_position_color** = ``Color(1, 1, 1, 1)`` :ref:`๐Ÿ”—<class_Tree_theme_color_drop_position_color>`
  816. :ref:`Color<class_Color>` used to draw possible drop locations. See :ref:`DropModeFlags<enum_Tree_DropModeFlags>` constants for further description of drop locations.
  817. .. rst-class:: classref-item-separator
  818. ----
  819. .. _class_Tree_theme_color_font_color:
  820. .. rst-class:: classref-themeproperty
  821. :ref:`Color<class_Color>` **font_color** = ``Color(0.7, 0.7, 0.7, 1)`` :ref:`๐Ÿ”—<class_Tree_theme_color_font_color>`
  822. Default text :ref:`Color<class_Color>` of the item.
  823. .. rst-class:: classref-item-separator
  824. ----
  825. .. _class_Tree_theme_color_font_disabled_color:
  826. .. rst-class:: classref-themeproperty
  827. :ref:`Color<class_Color>` **font_disabled_color** = ``Color(0.875, 0.875, 0.875, 0.5)`` :ref:`๐Ÿ”—<class_Tree_theme_color_font_disabled_color>`
  828. Text :ref:`Color<class_Color>` for a :ref:`TreeItem.CELL_MODE_CHECK<class_TreeItem_constant_CELL_MODE_CHECK>` mode cell when it's non-editable (see :ref:`TreeItem.set_editable<class_TreeItem_method_set_editable>`).
  829. .. rst-class:: classref-item-separator
  830. ----
  831. .. _class_Tree_theme_color_font_hovered_color:
  832. .. rst-class:: classref-themeproperty
  833. :ref:`Color<class_Color>` **font_hovered_color** = ``Color(0.95, 0.95, 0.95, 1)`` :ref:`๐Ÿ”—<class_Tree_theme_color_font_hovered_color>`
  834. Text :ref:`Color<class_Color>` used when the item is hovered.
  835. .. rst-class:: classref-item-separator
  836. ----
  837. .. _class_Tree_theme_color_font_hovered_dimmed_color:
  838. .. rst-class:: classref-themeproperty
  839. :ref:`Color<class_Color>` **font_hovered_dimmed_color** = ``Color(0.875, 0.875, 0.875, 1)`` :ref:`๐Ÿ”—<class_Tree_theme_color_font_hovered_dimmed_color>`
  840. Text :ref:`Color<class_Color>` used when the item is hovered, while a button of the same item is hovered as the same time.
  841. .. rst-class:: classref-item-separator
  842. ----
  843. .. _class_Tree_theme_color_font_outline_color:
  844. .. rst-class:: classref-themeproperty
  845. :ref:`Color<class_Color>` **font_outline_color** = ``Color(0, 0, 0, 1)`` :ref:`๐Ÿ”—<class_Tree_theme_color_font_outline_color>`
  846. The tint of text outline of the item.
  847. .. rst-class:: classref-item-separator
  848. ----
  849. .. _class_Tree_theme_color_font_selected_color:
  850. .. rst-class:: classref-themeproperty
  851. :ref:`Color<class_Color>` **font_selected_color** = ``Color(1, 1, 1, 1)`` :ref:`๐Ÿ”—<class_Tree_theme_color_font_selected_color>`
  852. Text :ref:`Color<class_Color>` used when the item is selected.
  853. .. rst-class:: classref-item-separator
  854. ----
  855. .. _class_Tree_theme_color_guide_color:
  856. .. rst-class:: classref-themeproperty
  857. :ref:`Color<class_Color>` **guide_color** = ``Color(0.7, 0.7, 0.7, 0.25)`` :ref:`๐Ÿ”—<class_Tree_theme_color_guide_color>`
  858. :ref:`Color<class_Color>` of the guideline.
  859. .. rst-class:: classref-item-separator
  860. ----
  861. .. _class_Tree_theme_color_parent_hl_line_color:
  862. .. rst-class:: classref-themeproperty
  863. :ref:`Color<class_Color>` **parent_hl_line_color** = ``Color(0.27, 0.27, 0.27, 1)`` :ref:`๐Ÿ”—<class_Tree_theme_color_parent_hl_line_color>`
  864. The :ref:`Color<class_Color>` of the relationship lines between the selected :ref:`TreeItem<class_TreeItem>` and its parents.
  865. .. rst-class:: classref-item-separator
  866. ----
  867. .. _class_Tree_theme_color_relationship_line_color:
  868. .. rst-class:: classref-themeproperty
  869. :ref:`Color<class_Color>` **relationship_line_color** = ``Color(0.27, 0.27, 0.27, 1)`` :ref:`๐Ÿ”—<class_Tree_theme_color_relationship_line_color>`
  870. The default :ref:`Color<class_Color>` of the relationship lines.
  871. .. rst-class:: classref-item-separator
  872. ----
  873. .. _class_Tree_theme_color_title_button_color:
  874. .. rst-class:: classref-themeproperty
  875. :ref:`Color<class_Color>` **title_button_color** = ``Color(0.875, 0.875, 0.875, 1)`` :ref:`๐Ÿ”—<class_Tree_theme_color_title_button_color>`
  876. Default text :ref:`Color<class_Color>` of the title button.
  877. .. rst-class:: classref-item-separator
  878. ----
  879. .. _class_Tree_theme_constant_button_margin:
  880. .. rst-class:: classref-themeproperty
  881. :ref:`int<class_int>` **button_margin** = ``4`` :ref:`๐Ÿ”—<class_Tree_theme_constant_button_margin>`
  882. The horizontal space between each button in a cell.
  883. .. rst-class:: classref-item-separator
  884. ----
  885. .. _class_Tree_theme_constant_children_hl_line_width:
  886. .. rst-class:: classref-themeproperty
  887. :ref:`int<class_int>` **children_hl_line_width** = ``1`` :ref:`๐Ÿ”—<class_Tree_theme_constant_children_hl_line_width>`
  888. The width of the relationship lines between the selected :ref:`TreeItem<class_TreeItem>` and its children.
  889. .. rst-class:: classref-item-separator
  890. ----
  891. .. _class_Tree_theme_constant_draw_guides:
  892. .. rst-class:: classref-themeproperty
  893. :ref:`int<class_int>` **draw_guides** = ``1`` :ref:`๐Ÿ”—<class_Tree_theme_constant_draw_guides>`
  894. Draws the guidelines if not zero, this acts as a boolean. The guideline is a horizontal line drawn at the bottom of each item.
  895. .. rst-class:: classref-item-separator
  896. ----
  897. .. _class_Tree_theme_constant_draw_relationship_lines:
  898. .. rst-class:: classref-themeproperty
  899. :ref:`int<class_int>` **draw_relationship_lines** = ``0`` :ref:`๐Ÿ”—<class_Tree_theme_constant_draw_relationship_lines>`
  900. Draws the relationship lines if not zero, this acts as a boolean. Relationship lines are drawn at the start of child items to show hierarchy.
  901. .. rst-class:: classref-item-separator
  902. ----
  903. .. _class_Tree_theme_constant_h_separation:
  904. .. rst-class:: classref-themeproperty
  905. :ref:`int<class_int>` **h_separation** = ``4`` :ref:`๐Ÿ”—<class_Tree_theme_constant_h_separation>`
  906. The horizontal space between item cells. This is also used as the margin at the start of an item when folding is disabled.
  907. .. rst-class:: classref-item-separator
  908. ----
  909. .. _class_Tree_theme_constant_icon_max_width:
  910. .. rst-class:: classref-themeproperty
  911. :ref:`int<class_int>` **icon_max_width** = ``0`` :ref:`๐Ÿ”—<class_Tree_theme_constant_icon_max_width>`
  912. The maximum allowed width of the icon in item's cells. This limit is applied on top of the default size of the icon, but before the value set with :ref:`TreeItem.set_icon_max_width<class_TreeItem_method_set_icon_max_width>`. The height is adjusted according to the icon's ratio.
  913. .. rst-class:: classref-item-separator
  914. ----
  915. .. _class_Tree_theme_constant_inner_item_margin_bottom:
  916. .. rst-class:: classref-themeproperty
  917. :ref:`int<class_int>` **inner_item_margin_bottom** = ``0`` :ref:`๐Ÿ”—<class_Tree_theme_constant_inner_item_margin_bottom>`
  918. The inner bottom margin of a cell.
  919. .. rst-class:: classref-item-separator
  920. ----
  921. .. _class_Tree_theme_constant_inner_item_margin_left:
  922. .. rst-class:: classref-themeproperty
  923. :ref:`int<class_int>` **inner_item_margin_left** = ``0`` :ref:`๐Ÿ”—<class_Tree_theme_constant_inner_item_margin_left>`
  924. The inner left margin of a cell.
  925. .. rst-class:: classref-item-separator
  926. ----
  927. .. _class_Tree_theme_constant_inner_item_margin_right:
  928. .. rst-class:: classref-themeproperty
  929. :ref:`int<class_int>` **inner_item_margin_right** = ``0`` :ref:`๐Ÿ”—<class_Tree_theme_constant_inner_item_margin_right>`
  930. The inner right margin of a cell.
  931. .. rst-class:: classref-item-separator
  932. ----
  933. .. _class_Tree_theme_constant_inner_item_margin_top:
  934. .. rst-class:: classref-themeproperty
  935. :ref:`int<class_int>` **inner_item_margin_top** = ``0`` :ref:`๐Ÿ”—<class_Tree_theme_constant_inner_item_margin_top>`
  936. The inner top margin of a cell.
  937. .. rst-class:: classref-item-separator
  938. ----
  939. .. _class_Tree_theme_constant_item_margin:
  940. .. rst-class:: classref-themeproperty
  941. :ref:`int<class_int>` **item_margin** = ``16`` :ref:`๐Ÿ”—<class_Tree_theme_constant_item_margin>`
  942. The horizontal margin at the start of an item. This is used when folding is enabled for the item.
  943. .. rst-class:: classref-item-separator
  944. ----
  945. .. _class_Tree_theme_constant_outline_size:
  946. .. rst-class:: classref-themeproperty
  947. :ref:`int<class_int>` **outline_size** = ``0`` :ref:`๐Ÿ”—<class_Tree_theme_constant_outline_size>`
  948. The size of the text outline.
  949. \ **Note:** If using a font with :ref:`FontFile.multichannel_signed_distance_field<class_FontFile_property_multichannel_signed_distance_field>` enabled, its :ref:`FontFile.msdf_pixel_range<class_FontFile_property_msdf_pixel_range>` must be set to at least *twice* the value of :ref:`outline_size<class_Tree_theme_constant_outline_size>` for outline rendering to look correct. Otherwise, the outline may appear to be cut off earlier than intended.
  950. .. rst-class:: classref-item-separator
  951. ----
  952. .. _class_Tree_theme_constant_parent_hl_line_margin:
  953. .. rst-class:: classref-themeproperty
  954. :ref:`int<class_int>` **parent_hl_line_margin** = ``0`` :ref:`๐Ÿ”—<class_Tree_theme_constant_parent_hl_line_margin>`
  955. The space between the parent relationship lines for the selected :ref:`TreeItem<class_TreeItem>` and the relationship lines to its siblings that are not selected.
  956. .. rst-class:: classref-item-separator
  957. ----
  958. .. _class_Tree_theme_constant_parent_hl_line_width:
  959. .. rst-class:: classref-themeproperty
  960. :ref:`int<class_int>` **parent_hl_line_width** = ``1`` :ref:`๐Ÿ”—<class_Tree_theme_constant_parent_hl_line_width>`
  961. The width of the relationship lines between the selected :ref:`TreeItem<class_TreeItem>` and its parents.
  962. .. rst-class:: classref-item-separator
  963. ----
  964. .. _class_Tree_theme_constant_relationship_line_width:
  965. .. rst-class:: classref-themeproperty
  966. :ref:`int<class_int>` **relationship_line_width** = ``1`` :ref:`๐Ÿ”—<class_Tree_theme_constant_relationship_line_width>`
  967. The default width of the relationship lines.
  968. .. rst-class:: classref-item-separator
  969. ----
  970. .. _class_Tree_theme_constant_scroll_border:
  971. .. rst-class:: classref-themeproperty
  972. :ref:`int<class_int>` **scroll_border** = ``4`` :ref:`๐Ÿ”—<class_Tree_theme_constant_scroll_border>`
  973. The maximum distance between the mouse cursor and the control's border to trigger border scrolling when dragging.
  974. .. rst-class:: classref-item-separator
  975. ----
  976. .. _class_Tree_theme_constant_scroll_speed:
  977. .. rst-class:: classref-themeproperty
  978. :ref:`int<class_int>` **scroll_speed** = ``12`` :ref:`๐Ÿ”—<class_Tree_theme_constant_scroll_speed>`
  979. The speed of border scrolling.
  980. .. rst-class:: classref-item-separator
  981. ----
  982. .. _class_Tree_theme_constant_scrollbar_h_separation:
  983. .. rst-class:: classref-themeproperty
  984. :ref:`int<class_int>` **scrollbar_h_separation** = ``4`` :ref:`๐Ÿ”—<class_Tree_theme_constant_scrollbar_h_separation>`
  985. The horizontal separation of tree content and scrollbar.
  986. .. rst-class:: classref-item-separator
  987. ----
  988. .. _class_Tree_theme_constant_scrollbar_margin_bottom:
  989. .. rst-class:: classref-themeproperty
  990. :ref:`int<class_int>` **scrollbar_margin_bottom** = ``-1`` :ref:`๐Ÿ”—<class_Tree_theme_constant_scrollbar_margin_bottom>`
  991. The bottom margin of the scrollbars. When negative, uses :ref:`panel<class_Tree_theme_style_panel>` bottom margin.
  992. .. rst-class:: classref-item-separator
  993. ----
  994. .. _class_Tree_theme_constant_scrollbar_margin_left:
  995. .. rst-class:: classref-themeproperty
  996. :ref:`int<class_int>` **scrollbar_margin_left** = ``-1`` :ref:`๐Ÿ”—<class_Tree_theme_constant_scrollbar_margin_left>`
  997. The left margin of the horizontal scrollbar. When negative, uses :ref:`panel<class_Tree_theme_style_panel>` left margin.
  998. .. rst-class:: classref-item-separator
  999. ----
  1000. .. _class_Tree_theme_constant_scrollbar_margin_right:
  1001. .. rst-class:: classref-themeproperty
  1002. :ref:`int<class_int>` **scrollbar_margin_right** = ``-1`` :ref:`๐Ÿ”—<class_Tree_theme_constant_scrollbar_margin_right>`
  1003. The right margin of the scrollbars. When negative, uses :ref:`panel<class_Tree_theme_style_panel>` right margin.
  1004. .. rst-class:: classref-item-separator
  1005. ----
  1006. .. _class_Tree_theme_constant_scrollbar_margin_top:
  1007. .. rst-class:: classref-themeproperty
  1008. :ref:`int<class_int>` **scrollbar_margin_top** = ``-1`` :ref:`๐Ÿ”—<class_Tree_theme_constant_scrollbar_margin_top>`
  1009. The top margin of the vertical scrollbar. When negative, uses :ref:`panel<class_Tree_theme_style_panel>` top margin.
  1010. .. rst-class:: classref-item-separator
  1011. ----
  1012. .. _class_Tree_theme_constant_scrollbar_v_separation:
  1013. .. rst-class:: classref-themeproperty
  1014. :ref:`int<class_int>` **scrollbar_v_separation** = ``4`` :ref:`๐Ÿ”—<class_Tree_theme_constant_scrollbar_v_separation>`
  1015. The vertical separation of tree content and scrollbar.
  1016. .. rst-class:: classref-item-separator
  1017. ----
  1018. .. _class_Tree_theme_constant_v_separation:
  1019. .. rst-class:: classref-themeproperty
  1020. :ref:`int<class_int>` **v_separation** = ``4`` :ref:`๐Ÿ”—<class_Tree_theme_constant_v_separation>`
  1021. The vertical padding inside each item, i.e. the distance between the item's content and top/bottom border.
  1022. .. rst-class:: classref-item-separator
  1023. ----
  1024. .. _class_Tree_theme_font_font:
  1025. .. rst-class:: classref-themeproperty
  1026. :ref:`Font<class_Font>` **font** :ref:`๐Ÿ”—<class_Tree_theme_font_font>`
  1027. :ref:`Font<class_Font>` of the item's text.
  1028. .. rst-class:: classref-item-separator
  1029. ----
  1030. .. _class_Tree_theme_font_title_button_font:
  1031. .. rst-class:: classref-themeproperty
  1032. :ref:`Font<class_Font>` **title_button_font** :ref:`๐Ÿ”—<class_Tree_theme_font_title_button_font>`
  1033. :ref:`Font<class_Font>` of the title button's text.
  1034. .. rst-class:: classref-item-separator
  1035. ----
  1036. .. _class_Tree_theme_font_size_font_size:
  1037. .. rst-class:: classref-themeproperty
  1038. :ref:`int<class_int>` **font_size** :ref:`๐Ÿ”—<class_Tree_theme_font_size_font_size>`
  1039. Font size of the item's text.
  1040. .. rst-class:: classref-item-separator
  1041. ----
  1042. .. _class_Tree_theme_font_size_title_button_font_size:
  1043. .. rst-class:: classref-themeproperty
  1044. :ref:`int<class_int>` **title_button_font_size** :ref:`๐Ÿ”—<class_Tree_theme_font_size_title_button_font_size>`
  1045. Font size of the title button's text.
  1046. .. rst-class:: classref-item-separator
  1047. ----
  1048. .. _class_Tree_theme_icon_arrow:
  1049. .. rst-class:: classref-themeproperty
  1050. :ref:`Texture2D<class_Texture2D>` **arrow** :ref:`๐Ÿ”—<class_Tree_theme_icon_arrow>`
  1051. The arrow icon used when a foldable item is not collapsed.
  1052. .. rst-class:: classref-item-separator
  1053. ----
  1054. .. _class_Tree_theme_icon_arrow_collapsed:
  1055. .. rst-class:: classref-themeproperty
  1056. :ref:`Texture2D<class_Texture2D>` **arrow_collapsed** :ref:`๐Ÿ”—<class_Tree_theme_icon_arrow_collapsed>`
  1057. The arrow icon used when a foldable item is collapsed (for left-to-right layouts).
  1058. .. rst-class:: classref-item-separator
  1059. ----
  1060. .. _class_Tree_theme_icon_arrow_collapsed_mirrored:
  1061. .. rst-class:: classref-themeproperty
  1062. :ref:`Texture2D<class_Texture2D>` **arrow_collapsed_mirrored** :ref:`๐Ÿ”—<class_Tree_theme_icon_arrow_collapsed_mirrored>`
  1063. The arrow icon used when a foldable item is collapsed (for right-to-left layouts).
  1064. .. rst-class:: classref-item-separator
  1065. ----
  1066. .. _class_Tree_theme_icon_checked:
  1067. .. rst-class:: classref-themeproperty
  1068. :ref:`Texture2D<class_Texture2D>` **checked** :ref:`๐Ÿ”—<class_Tree_theme_icon_checked>`
  1069. The check icon to display when the :ref:`TreeItem.CELL_MODE_CHECK<class_TreeItem_constant_CELL_MODE_CHECK>` mode cell is checked and editable (see :ref:`TreeItem.set_editable<class_TreeItem_method_set_editable>`).
  1070. .. rst-class:: classref-item-separator
  1071. ----
  1072. .. _class_Tree_theme_icon_checked_disabled:
  1073. .. rst-class:: classref-themeproperty
  1074. :ref:`Texture2D<class_Texture2D>` **checked_disabled** :ref:`๐Ÿ”—<class_Tree_theme_icon_checked_disabled>`
  1075. The check icon to display when the :ref:`TreeItem.CELL_MODE_CHECK<class_TreeItem_constant_CELL_MODE_CHECK>` mode cell is checked and non-editable (see :ref:`TreeItem.set_editable<class_TreeItem_method_set_editable>`).
  1076. .. rst-class:: classref-item-separator
  1077. ----
  1078. .. _class_Tree_theme_icon_indeterminate:
  1079. .. rst-class:: classref-themeproperty
  1080. :ref:`Texture2D<class_Texture2D>` **indeterminate** :ref:`๐Ÿ”—<class_Tree_theme_icon_indeterminate>`
  1081. The check icon to display when the :ref:`TreeItem.CELL_MODE_CHECK<class_TreeItem_constant_CELL_MODE_CHECK>` mode cell is indeterminate and editable (see :ref:`TreeItem.set_editable<class_TreeItem_method_set_editable>`).
  1082. .. rst-class:: classref-item-separator
  1083. ----
  1084. .. _class_Tree_theme_icon_indeterminate_disabled:
  1085. .. rst-class:: classref-themeproperty
  1086. :ref:`Texture2D<class_Texture2D>` **indeterminate_disabled** :ref:`๐Ÿ”—<class_Tree_theme_icon_indeterminate_disabled>`
  1087. The check icon to display when the :ref:`TreeItem.CELL_MODE_CHECK<class_TreeItem_constant_CELL_MODE_CHECK>` mode cell is indeterminate and non-editable (see :ref:`TreeItem.set_editable<class_TreeItem_method_set_editable>`).
  1088. .. rst-class:: classref-item-separator
  1089. ----
  1090. .. _class_Tree_theme_icon_select_arrow:
  1091. .. rst-class:: classref-themeproperty
  1092. :ref:`Texture2D<class_Texture2D>` **select_arrow** :ref:`๐Ÿ”—<class_Tree_theme_icon_select_arrow>`
  1093. The arrow icon to display for the :ref:`TreeItem.CELL_MODE_RANGE<class_TreeItem_constant_CELL_MODE_RANGE>` mode cell.
  1094. .. rst-class:: classref-item-separator
  1095. ----
  1096. .. _class_Tree_theme_icon_unchecked:
  1097. .. rst-class:: classref-themeproperty
  1098. :ref:`Texture2D<class_Texture2D>` **unchecked** :ref:`๐Ÿ”—<class_Tree_theme_icon_unchecked>`
  1099. The check icon to display when the :ref:`TreeItem.CELL_MODE_CHECK<class_TreeItem_constant_CELL_MODE_CHECK>` mode cell is unchecked and editable (see :ref:`TreeItem.set_editable<class_TreeItem_method_set_editable>`).
  1100. .. rst-class:: classref-item-separator
  1101. ----
  1102. .. _class_Tree_theme_icon_unchecked_disabled:
  1103. .. rst-class:: classref-themeproperty
  1104. :ref:`Texture2D<class_Texture2D>` **unchecked_disabled** :ref:`๐Ÿ”—<class_Tree_theme_icon_unchecked_disabled>`
  1105. The check icon to display when the :ref:`TreeItem.CELL_MODE_CHECK<class_TreeItem_constant_CELL_MODE_CHECK>` mode cell is unchecked and non-editable (see :ref:`TreeItem.set_editable<class_TreeItem_method_set_editable>`).
  1106. .. rst-class:: classref-item-separator
  1107. ----
  1108. .. _class_Tree_theme_icon_updown:
  1109. .. rst-class:: classref-themeproperty
  1110. :ref:`Texture2D<class_Texture2D>` **updown** :ref:`๐Ÿ”—<class_Tree_theme_icon_updown>`
  1111. The updown arrow icon to display for the :ref:`TreeItem.CELL_MODE_RANGE<class_TreeItem_constant_CELL_MODE_RANGE>` mode cell.
  1112. .. rst-class:: classref-item-separator
  1113. ----
  1114. .. _class_Tree_theme_style_button_hover:
  1115. .. rst-class:: classref-themeproperty
  1116. :ref:`StyleBox<class_StyleBox>` **button_hover** :ref:`๐Ÿ”—<class_Tree_theme_style_button_hover>`
  1117. :ref:`StyleBox<class_StyleBox>` used when a button in the tree is hovered.
  1118. .. rst-class:: classref-item-separator
  1119. ----
  1120. .. _class_Tree_theme_style_button_pressed:
  1121. .. rst-class:: classref-themeproperty
  1122. :ref:`StyleBox<class_StyleBox>` **button_pressed** :ref:`๐Ÿ”—<class_Tree_theme_style_button_pressed>`
  1123. :ref:`StyleBox<class_StyleBox>` used when a button in the tree is pressed.
  1124. .. rst-class:: classref-item-separator
  1125. ----
  1126. .. _class_Tree_theme_style_cursor:
  1127. .. rst-class:: classref-themeproperty
  1128. :ref:`StyleBox<class_StyleBox>` **cursor** :ref:`๐Ÿ”—<class_Tree_theme_style_cursor>`
  1129. :ref:`StyleBox<class_StyleBox>` used for the cursor, when the **Tree** is being focused.
  1130. .. rst-class:: classref-item-separator
  1131. ----
  1132. .. _class_Tree_theme_style_cursor_unfocused:
  1133. .. rst-class:: classref-themeproperty
  1134. :ref:`StyleBox<class_StyleBox>` **cursor_unfocused** :ref:`๐Ÿ”—<class_Tree_theme_style_cursor_unfocused>`
  1135. :ref:`StyleBox<class_StyleBox>` used for the cursor, when the **Tree** is not being focused.
  1136. .. rst-class:: classref-item-separator
  1137. ----
  1138. .. _class_Tree_theme_style_custom_button:
  1139. .. rst-class:: classref-themeproperty
  1140. :ref:`StyleBox<class_StyleBox>` **custom_button** :ref:`๐Ÿ”—<class_Tree_theme_style_custom_button>`
  1141. Default :ref:`StyleBox<class_StyleBox>` for a :ref:`TreeItem.CELL_MODE_CUSTOM<class_TreeItem_constant_CELL_MODE_CUSTOM>` mode cell when button is enabled with :ref:`TreeItem.set_custom_as_button<class_TreeItem_method_set_custom_as_button>`.
  1142. .. rst-class:: classref-item-separator
  1143. ----
  1144. .. _class_Tree_theme_style_custom_button_hover:
  1145. .. rst-class:: classref-themeproperty
  1146. :ref:`StyleBox<class_StyleBox>` **custom_button_hover** :ref:`๐Ÿ”—<class_Tree_theme_style_custom_button_hover>`
  1147. :ref:`StyleBox<class_StyleBox>` for a :ref:`TreeItem.CELL_MODE_CUSTOM<class_TreeItem_constant_CELL_MODE_CUSTOM>` mode button cell when it's hovered.
  1148. .. rst-class:: classref-item-separator
  1149. ----
  1150. .. _class_Tree_theme_style_custom_button_pressed:
  1151. .. rst-class:: classref-themeproperty
  1152. :ref:`StyleBox<class_StyleBox>` **custom_button_pressed** :ref:`๐Ÿ”—<class_Tree_theme_style_custom_button_pressed>`
  1153. :ref:`StyleBox<class_StyleBox>` for a :ref:`TreeItem.CELL_MODE_CUSTOM<class_TreeItem_constant_CELL_MODE_CUSTOM>` mode button cell when it's pressed.
  1154. .. rst-class:: classref-item-separator
  1155. ----
  1156. .. _class_Tree_theme_style_focus:
  1157. .. rst-class:: classref-themeproperty
  1158. :ref:`StyleBox<class_StyleBox>` **focus** :ref:`๐Ÿ”—<class_Tree_theme_style_focus>`
  1159. The focused style for the **Tree**, drawn on top of everything.
  1160. .. rst-class:: classref-item-separator
  1161. ----
  1162. .. _class_Tree_theme_style_hovered:
  1163. .. rst-class:: classref-themeproperty
  1164. :ref:`StyleBox<class_StyleBox>` **hovered** :ref:`๐Ÿ”—<class_Tree_theme_style_hovered>`
  1165. :ref:`StyleBox<class_StyleBox>` for the item being hovered.
  1166. .. rst-class:: classref-item-separator
  1167. ----
  1168. .. _class_Tree_theme_style_hovered_dimmed:
  1169. .. rst-class:: classref-themeproperty
  1170. :ref:`StyleBox<class_StyleBox>` **hovered_dimmed** :ref:`๐Ÿ”—<class_Tree_theme_style_hovered_dimmed>`
  1171. :ref:`StyleBox<class_StyleBox>` for the item being hovered, while a button of the same item is hovered as the same time.
  1172. .. rst-class:: classref-item-separator
  1173. ----
  1174. .. _class_Tree_theme_style_panel:
  1175. .. rst-class:: classref-themeproperty
  1176. :ref:`StyleBox<class_StyleBox>` **panel** :ref:`๐Ÿ”—<class_Tree_theme_style_panel>`
  1177. The background style for the **Tree**.
  1178. .. rst-class:: classref-item-separator
  1179. ----
  1180. .. _class_Tree_theme_style_selected:
  1181. .. rst-class:: classref-themeproperty
  1182. :ref:`StyleBox<class_StyleBox>` **selected** :ref:`๐Ÿ”—<class_Tree_theme_style_selected>`
  1183. :ref:`StyleBox<class_StyleBox>` for the selected items, used when the **Tree** is not being focused.
  1184. .. rst-class:: classref-item-separator
  1185. ----
  1186. .. _class_Tree_theme_style_selected_focus:
  1187. .. rst-class:: classref-themeproperty
  1188. :ref:`StyleBox<class_StyleBox>` **selected_focus** :ref:`๐Ÿ”—<class_Tree_theme_style_selected_focus>`
  1189. :ref:`StyleBox<class_StyleBox>` for the selected items, used when the **Tree** is being focused.
  1190. .. rst-class:: classref-item-separator
  1191. ----
  1192. .. _class_Tree_theme_style_title_button_hover:
  1193. .. rst-class:: classref-themeproperty
  1194. :ref:`StyleBox<class_StyleBox>` **title_button_hover** :ref:`๐Ÿ”—<class_Tree_theme_style_title_button_hover>`
  1195. :ref:`StyleBox<class_StyleBox>` used when the title button is being hovered.
  1196. .. rst-class:: classref-item-separator
  1197. ----
  1198. .. _class_Tree_theme_style_title_button_normal:
  1199. .. rst-class:: classref-themeproperty
  1200. :ref:`StyleBox<class_StyleBox>` **title_button_normal** :ref:`๐Ÿ”—<class_Tree_theme_style_title_button_normal>`
  1201. Default :ref:`StyleBox<class_StyleBox>` for the title button.
  1202. .. rst-class:: classref-item-separator
  1203. ----
  1204. .. _class_Tree_theme_style_title_button_pressed:
  1205. .. rst-class:: classref-themeproperty
  1206. :ref:`StyleBox<class_StyleBox>` **title_button_pressed** :ref:`๐Ÿ”—<class_Tree_theme_style_title_button_pressed>`
  1207. :ref:`StyleBox<class_StyleBox>` used when the title button is being pressed.
  1208. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  1209. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  1210. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  1211. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  1212. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  1213. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
  1214. .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`
  1215. .. |void| replace:: :abbr:`void (No return value.)`