2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2022-02-14 14:18:53 +01:00
<class name= "TreeItem" inherits= "Object" version= "4.0" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation= "../class.xsd" >
2017-09-12 22:42:36 +02:00
<brief_description >
2017-10-07 19:43:24 +02:00
Control for a single item inside a [Tree].
2017-09-12 22:42:36 +02:00
</brief_description>
<description >
2019-03-29 23:37:35 +01:00
Control for a single item inside a [Tree]. May have child [TreeItem]s and be styled as well as contain buttons.
2020-04-21 12:45:25 +02:00
You can remove a [TreeItem] by using [method Object.free].
2017-09-12 22:42:36 +02:00
</description>
<tutorials >
</tutorials>
<methods >
<method name= "add_button" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "column" type= "int" />
<argument index= "1" name= "button" type= "Texture2D" />
2022-02-08 16:56:13 +01:00
<argument index= "2" name= "id" type= "int" default= "-1" />
2021-07-30 15:28:05 +02:00
<argument index= "3" name= "disabled" type= "bool" default= "false" />
<argument index= "4" name= "tooltip" type= "String" default= """" />
2017-09-12 22:42:36 +02:00
<description >
2022-02-16 17:29:00 +01:00
Adds a button with [Texture2D] [code]button[/code] at column [code]column[/code]. The [code]id[/code] is used to identify the button. If not specified, the next available index is used, which may be retrieved by calling [method get_button_count] immediately before this method. Optionally, the button can be [code]disabled[/code] and have a [code]tooltip[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
2019-10-11 08:45:03 +02:00
<method name= "call_recursive" qualifiers= "vararg" >
2022-02-22 12:15:43 +01:00
<return type= "void" />
2021-07-30 15:28:05 +02:00
<argument index= "0" name= "method" type= "StringName" />
2019-10-11 08:45:03 +02:00
<description >
Calls the [code]method[/code] on the actual TreeItem and its children recursively. Pass parameters as a comma separated list.
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "clear_custom_bg_color" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "column" type= "int" />
2017-09-12 22:42:36 +02:00
<description >
2017-10-07 19:43:24 +02:00
Resets the background color for the given column to default.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "clear_custom_color" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "column" type= "int" />
2017-09-12 22:42:36 +02:00
<description >
2017-10-07 19:43:24 +02:00
Resets the color for the given column to default.
2017-09-12 22:42:36 +02:00
</description>
</method>
2020-08-12 13:49:10 +02:00
<method name= "clear_opentype_features" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "column" type= "int" />
2020-08-12 13:49:10 +02:00
<description >
Removes all OpenType features.
</description>
</method>
2021-03-07 21:07:30 +01:00
<method name= "create_child" >
2021-07-30 15:28:05 +02:00
<return type= "TreeItem" />
<argument index= "0" name= "idx" type= "int" default= "-1" />
2021-03-07 21:07:30 +01:00
<description >
Creates an item and adds it as a child.
The new item will be inserted as position [code]idx[/code] (the default value [code]-1[/code] means the last position), or it will be the last child if [code]idx[/code] is higher than the child count.
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "deselect" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "column" type= "int" />
2017-09-12 22:42:36 +02:00
<description >
2017-10-07 19:43:24 +02:00
Deselects the given column.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "erase_button" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "column" type= "int" />
<argument index= "1" name= "button_idx" type= "int" />
2017-09-12 22:42:36 +02:00
<description >
2017-10-07 19:43:24 +02:00
Removes the button at index [code]button_idx[/code] in column [code]column[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_button" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "Texture2D" />
<argument index= "0" name= "column" type= "int" />
<argument index= "1" name= "button_idx" type= "int" />
2017-09-12 22:42:36 +02:00
<description >
2020-02-12 09:59:06 +01:00
Returns the [Texture2D] of the button at index [code]button_idx[/code] in column [code]column[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
2022-02-08 16:56:13 +01:00
<method name= "get_button_by_id" qualifiers= "const" >
<return type= "int" />
<argument index= "0" name= "column" type= "int" />
<argument index= "1" name= "id" type= "int" />
<description >
Returns the button index if there is a button with id [code]id[/code] in column [code]column[/code], otherwise returns -1.
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "get_button_count" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "int" />
<argument index= "0" name= "column" type= "int" />
2017-09-12 22:42:36 +02:00
<description >
2022-02-16 17:29:00 +01:00
Returns the number of buttons in column [code]column[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
2022-02-08 16:56:13 +01:00
<method name= "get_button_id" qualifiers= "const" >
<return type= "int" />
<argument index= "0" name= "column" type= "int" />
<argument index= "1" name= "button_idx" type= "int" />
<description >
Returns the id for the button at index [code]button_idx[/code] in column [code]column[/code].
</description>
</method>
2019-09-04 16:47:47 +02:00
<method name= "get_button_tooltip" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "String" />
<argument index= "0" name= "column" type= "int" />
<argument index= "1" name= "button_idx" type= "int" />
2019-09-04 16:47:47 +02:00
<description >
2019-09-27 22:16:32 +02:00
Returns the tooltip string for the button at index [code]button_idx[/code] in column [code]column[/code].
2019-09-04 16:47:47 +02:00
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "get_cell_mode" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "int" enum= "TreeItem.TreeCellMode" />
<argument index= "0" name= "column" type= "int" />
2017-09-12 22:42:36 +02:00
<description >
2019-06-22 01:04:47 +02:00
Returns the column's cell mode.
2017-09-12 22:42:36 +02:00
</description>
</method>
2021-03-07 21:07:30 +01:00
<method name= "get_child" >
2021-07-30 15:28:05 +02:00
<return type= "TreeItem" />
<argument index= "0" name= "idx" type= "int" />
2021-03-07 21:07:30 +01:00
<description >
Returns a child item by its index (see [method get_child_count]). This method is often used for iterating all children of an item.
Negative indices access the children from the last one.
</description>
</method>
<method name= "get_child_count" >
2021-07-30 15:28:05 +02:00
<return type= "int" />
2017-09-12 22:42:36 +02:00
<description >
2021-03-07 21:07:30 +01:00
Returns the number of child items.
</description>
</method>
<method name= "get_children" >
2021-07-30 15:28:05 +02:00
<return type= "Array" />
2021-03-07 21:07:30 +01:00
<description >
Returns an array of references to the item's children.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_custom_bg_color" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "Color" />
<argument index= "0" name= "column" type= "int" />
2017-09-12 22:42:36 +02:00
<description >
2017-10-07 19:43:24 +02:00
Returns the custom background color of column [code]column[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
2019-10-06 22:07:50 +02:00
<method name= "get_custom_color" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "Color" />
<argument index= "0" name= "column" type= "int" />
2019-10-06 22:07:50 +02:00
<description >
Returns the custom color of column [code]column[/code].
</description>
</method>
2021-05-27 17:32:30 +02:00
<method name= "get_custom_font" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "Font" />
<argument index= "0" name= "column" type= "int" />
2021-05-27 17:32:30 +02:00
<description >
2020-12-27 14:30:33 +01:00
Returns custom font used to draw text in the column [code]column[/code].
</description>
</method>
<method name= "get_custom_font_size" qualifiers= "const" >
<return type= "int" />
<argument index= "0" name= "column" type= "int" />
<description >
Returns custom font size used to draw text in the column [code]column[/code].
2021-05-27 17:32:30 +02:00
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "get_expand_right" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "bool" />
<argument index= "0" name= "column" type= "int" />
2017-09-12 22:42:36 +02:00
<description >
2017-10-07 19:43:24 +02:00
Returns [code]true[/code] if [code]expand_right[/code] is set.
2017-09-12 22:42:36 +02:00
</description>
</method>
2021-06-28 15:40:56 +02:00
<method name= "get_first_child" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "TreeItem" />
2021-03-07 21:07:30 +01:00
<description >
Returns the TreeItem's first child.
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "get_icon" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "Texture2D" />
<argument index= "0" name= "column" type= "int" />
2017-09-12 22:42:36 +02:00
<description >
2020-02-12 09:59:06 +01:00
Returns the given column's icon [Texture2D]. Error if no icon is set.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_icon_max_width" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "int" />
<argument index= "0" name= "column" type= "int" />
2017-09-12 22:42:36 +02:00
<description >
2017-10-07 19:43:24 +02:00
Returns the column's icon's maximum width.
2017-09-12 22:42:36 +02:00
</description>
</method>
2019-08-24 17:13:48 +02:00
<method name= "get_icon_modulate" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "Color" />
<argument index= "0" name= "column" type= "int" />
2019-08-24 17:13:48 +02:00
<description >
Returns the [Color] modulating the column's icon.
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "get_icon_region" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "Rect2" />
<argument index= "0" name= "column" type= "int" />
2017-09-12 22:42:36 +02:00
<description >
2020-02-12 09:59:06 +01:00
Returns the icon [Texture2D] region as [Rect2].
2017-09-12 22:42:36 +02:00
</description>
</method>
2021-03-07 21:07:30 +01:00
<method name= "get_index" >
2021-07-30 15:28:05 +02:00
<return type= "int" />
2021-03-07 21:07:30 +01:00
<description >
Returns the node's order in the tree. For example, if called on the first child item the position is [code]0[/code].
</description>
</method>
2020-08-12 13:49:10 +02:00
<method name= "get_language" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "String" />
<argument index= "0" name= "column" type= "int" />
2020-08-12 13:49:10 +02:00
<description >
Returns item's text language code.
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "get_metadata" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "Variant" />
<argument index= "0" name= "column" type= "int" />
2017-09-12 22:42:36 +02:00
<description >
2021-01-29 05:34:29 +01:00
Returns the metadata value that was set for the given column using [method set_metadata].
2017-09-12 22:42:36 +02:00
</description>
</method>
2021-06-28 15:40:56 +02:00
<method name= "get_next" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "TreeItem" />
2017-09-12 22:42:36 +02:00
<description >
2020-07-20 14:38:34 +02:00
Returns the next TreeItem in the tree or a null object if there is none.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_next_visible" >
2021-07-30 15:28:05 +02:00
<return type= "TreeItem" />
<argument index= "0" name= "wrap" type= "bool" default= "false" />
2017-09-12 22:42:36 +02:00
<description >
2020-07-20 14:38:34 +02:00
Returns the next visible TreeItem in the tree or a null object if there is none.
2019-06-01 12:34:29 +02:00
If [code]wrap[/code] is enabled, the method will wrap around to the first visible element in the tree when called on the last visible element, otherwise it returns [code]null[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
2020-08-12 13:49:10 +02:00
<method name= "get_opentype_feature" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "int" />
<argument index= "0" name= "column" type= "int" />
<argument index= "1" name= "tag" type= "String" />
2020-08-12 13:49:10 +02:00
<description >
Returns OpenType feature [code]tag[/code] of the item's text.
</description>
</method>
2021-06-28 15:40:56 +02:00
<method name= "get_parent" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "TreeItem" />
2017-09-12 22:42:36 +02:00
<description >
2020-07-20 14:38:34 +02:00
Returns the parent TreeItem or a null object if there is none.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_prev" >
2021-07-30 15:28:05 +02:00
<return type= "TreeItem" />
2017-09-12 22:42:36 +02:00
<description >
2020-07-20 14:38:34 +02:00
Returns the previous TreeItem in the tree or a null object if there is none.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_prev_visible" >
2021-07-30 15:28:05 +02:00
<return type= "TreeItem" />
<argument index= "0" name= "wrap" type= "bool" default= "false" />
2017-09-12 22:42:36 +02:00
<description >
2020-07-20 14:38:34 +02:00
Returns the previous visible TreeItem in the tree or a null object if there is none.
2019-06-01 12:34:29 +02:00
If [code]wrap[/code] is enabled, the method will wrap around to the last visible element in the tree when called on the first visible element, otherwise it returns [code]null[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_range" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "float" />
<argument index= "0" name= "column" type= "int" />
2017-09-12 22:42:36 +02:00
<description >
2021-01-29 05:34:29 +01:00
Returns the value of a [constant CELL_MODE_RANGE] column.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_range_config" >
2021-07-30 15:28:05 +02:00
<return type= "Dictionary" />
<argument index= "0" name= "column" type= "int" />
2017-09-12 22:42:36 +02:00
<description >
2021-01-29 05:34:29 +01:00
Returns a dictionary containing the range parameters for a given column. The keys are "min", "max", "step", and "expr".
2017-09-12 22:42:36 +02:00
</description>
</method>
2020-08-12 13:49:10 +02:00
<method name= "get_structured_text_bidi_override" qualifiers= "const" >
2022-04-19 12:27:18 +02:00
<return type= "int" enum= "TextServer.StructuredTextParser" />
2021-07-30 15:28:05 +02:00
<argument index= "0" name= "column" type= "int" />
2020-08-12 13:49:10 +02:00
<description >
</description>
</method>
<method name= "get_structured_text_bidi_override_options" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "Array" />
<argument index= "0" name= "column" type= "int" />
2020-08-12 13:49:10 +02:00
<description >
</description>
</method>
2020-05-11 13:23:39 +02:00
<method name= "get_suffix" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "String" />
<argument index= "0" name= "column" type= "int" />
2020-05-11 13:23:39 +02:00
<description >
2021-01-29 05:34:29 +01:00
Gets the suffix string shown after the column value.
2020-05-11 13:23:39 +02:00
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "get_text" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "String" />
<argument index= "0" name= "column" type= "int" />
2017-09-12 22:42:36 +02:00
<description >
2017-10-07 19:43:24 +02:00
Returns the given column's text.
2017-09-12 22:42:36 +02:00
</description>
</method>
2021-11-25 03:58:47 +01:00
<method name= "get_text_alignment" qualifiers= "const" >
<return type= "int" enum= "HorizontalAlignment" />
2021-07-30 15:28:05 +02:00
<argument index= "0" name= "column" type= "int" />
2017-09-12 22:42:36 +02:00
<description >
2017-10-07 19:43:24 +02:00
Returns the given column's text alignment.
2017-09-12 22:42:36 +02:00
</description>
</method>
2020-08-12 13:49:10 +02:00
<method name= "get_text_direction" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "int" enum= "Control.TextDirection" />
<argument index= "0" name= "column" type= "int" />
2020-08-12 13:49:10 +02:00
<description >
Returns item's text base writing direction.
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "get_tooltip" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "String" />
<argument index= "0" name= "column" type= "int" />
2017-09-12 22:42:36 +02:00
<description >
2017-10-07 19:43:24 +02:00
Returns the given column's tooltip.
2017-09-12 22:42:36 +02:00
</description>
</method>
2021-06-28 15:40:56 +02:00
<method name= "get_tree" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "Tree" />
2021-03-07 21:07:30 +01:00
<description >
Returns the [Tree] that owns this TreeItem.
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "is_button_disabled" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "bool" />
<argument index= "0" name= "column" type= "int" />
<argument index= "1" name= "button_idx" type= "int" />
2017-09-12 22:42:36 +02:00
<description >
2017-10-07 19:43:24 +02:00
Returns [code]true[/code] if the button at index [code]button_idx[/code] for the given column is disabled.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "is_checked" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "bool" />
<argument index= "0" name= "column" type= "int" />
2017-09-12 22:42:36 +02:00
<description >
2017-10-07 19:43:24 +02:00
Returns [code]true[/code] if the given column is checked.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "is_custom_set_as_button" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "bool" />
<argument index= "0" name= "column" type= "int" />
2017-09-12 22:42:36 +02:00
<description >
</description>
</method>
<method name= "is_editable" >
2021-07-30 15:28:05 +02:00
<return type= "bool" />
<argument index= "0" name= "column" type= "int" />
2017-09-12 22:42:36 +02:00
<description >
2017-10-07 19:43:24 +02:00
Returns [code]true[/code] if column [code]column[/code] is editable.
2017-09-12 22:42:36 +02:00
</description>
</method>
2021-07-22 22:34:54 +02:00
<method name= "is_indeterminate" qualifiers= "const" >
<return type= "bool" />
<argument index= "0" name= "column" type= "int" />
<description >
Returns [code]true[/code] if the given column is indeterminate.
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "is_selectable" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "bool" />
<argument index= "0" name= "column" type= "int" />
2017-09-12 22:42:36 +02:00
<description >
2017-10-07 19:43:24 +02:00
Returns [code]true[/code] if column [code]column[/code] is selectable.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "is_selected" >
2021-07-30 15:28:05 +02:00
<return type= "bool" />
<argument index= "0" name= "column" type= "int" />
2017-09-12 22:42:36 +02:00
<description >
2017-10-07 19:43:24 +02:00
Returns [code]true[/code] if column [code]column[/code] is selected.
2017-09-12 22:42:36 +02:00
</description>
</method>
2021-03-07 21:07:30 +01:00
<method name= "move_after" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
2022-01-28 15:06:54 +01:00
<argument index= "0" name= "item" type= "TreeItem" />
2017-09-12 22:42:36 +02:00
<description >
2021-03-07 21:07:30 +01:00
Moves this TreeItem right after the given [code]item[/code].
[b]Note:[/b] You can't move to the root or move the root.
2017-09-12 22:42:36 +02:00
</description>
</method>
2021-03-07 21:07:30 +01:00
<method name= "move_before" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
2022-01-28 15:06:54 +01:00
<argument index= "0" name= "item" type= "TreeItem" />
2017-09-12 22:42:36 +02:00
<description >
2021-03-07 21:07:30 +01:00
Moves this TreeItem right before the given [code]item[/code].
[b]Note:[/b] You can't move to the root or move the root.
2017-09-12 22:42:36 +02:00
</description>
2021-09-17 17:50:24 +02:00
</method>
<method name= "propagate_check" >
<return type= "void" />
<argument index= "0" name= "column" type= "int" />
<argument index= "1" name= "emit_signal" type= "bool" default= "true" />
<description >
2022-01-22 21:10:30 +01:00
Propagates this item's checked status to its children and parents for the given [code]column[/code]. It is possible to process the items affected by this method call by connecting to [signal Tree.check_propagated_to_item]. The order that the items affected will be processed is as follows: the item invoking this method, children of that item, and finally parents of that item. If [code]emit_signal[/code] is [code]false[/code], then [signal Tree.check_propagated_to_item] will not be emitted.
2021-09-17 17:50:24 +02:00
</description>
2017-09-12 22:42:36 +02:00
</method>
<method name= "remove_child" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
2022-01-28 15:06:54 +01:00
<argument index= "0" name= "child" type= "TreeItem" />
2017-09-12 22:42:36 +02:00
<description >
2020-04-21 12:45:25 +02:00
Removes the given child [TreeItem] and all its children from the [Tree]. Note that it doesn't free the item from memory, so it can be reused later. To completely remove a [TreeItem] use [method Object.free].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "select" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "column" type= "int" />
2017-09-12 22:42:36 +02:00
<description >
2017-10-07 19:43:24 +02:00
Selects the column [code]column[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "set_button" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "column" type= "int" />
<argument index= "1" name= "button_idx" type= "int" />
<argument index= "2" name= "button" type= "Texture2D" />
2017-09-12 22:42:36 +02:00
<description >
2020-02-12 09:59:06 +01:00
Sets the given column's button [Texture2D] at index [code]button_idx[/code] to [code]button[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
2019-07-09 09:13:00 +02:00
<method name= "set_button_disabled" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "column" type= "int" />
<argument index= "1" name= "button_idx" type= "int" />
<argument index= "2" name= "disabled" type= "bool" />
2019-07-09 09:13:00 +02:00
<description >
2019-07-17 10:22:02 +02:00
If [code]true[/code], disables the button at index [code]button_idx[/code] in column [code]column[/code].
2019-07-09 09:13:00 +02:00
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "set_cell_mode" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "column" type= "int" />
<argument index= "1" name= "mode" type= "int" enum= "TreeItem.TreeCellMode" />
2017-09-12 22:42:36 +02:00
<description >
2019-12-06 23:09:20 +01:00
Sets the given column's cell mode to [code]mode[/code]. See [enum TreeCellMode] constants.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "set_checked" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "column" type= "int" />
<argument index= "1" name= "checked" type= "bool" />
2017-09-12 22:42:36 +02:00
<description >
2021-07-22 22:34:54 +02:00
If [code]true[/code], the column [code]column[/code] is checked. Clears column's indeterminate status.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "set_custom_as_button" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "column" type= "int" />
<argument index= "1" name= "enable" type= "bool" />
2017-09-12 22:42:36 +02:00
<description >
</description>
</method>
<method name= "set_custom_bg_color" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "column" type= "int" />
<argument index= "1" name= "color" type= "Color" />
<argument index= "2" name= "just_outline" type= "bool" default= "false" />
2017-09-12 22:42:36 +02:00
<description >
2017-10-07 19:43:24 +02:00
Sets the given column's custom background color and whether to just use it as an outline.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "set_custom_color" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "column" type= "int" />
<argument index= "1" name= "color" type= "Color" />
2017-09-12 22:42:36 +02:00
<description >
2017-10-07 19:43:24 +02:00
Sets the given column's custom color.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "set_custom_draw" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "column" type= "int" />
<argument index= "1" name= "object" type= "Object" />
<argument index= "2" name= "callback" type= "StringName" />
2017-09-12 22:42:36 +02:00
<description >
2017-10-07 19:43:24 +02:00
Sets the given column's custom draw callback to [code]callback[/code] method on [code]object[/code].
2018-10-02 18:43:09 +02:00
The [code]callback[/code] should accept two arguments: the [TreeItem] that is drawn and its position and size as a [Rect2].
2017-09-12 22:42:36 +02:00
</description>
</method>
2021-05-27 17:32:30 +02:00
<method name= "set_custom_font" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "column" type= "int" />
<argument index= "1" name= "font" type= "Font" />
2021-05-27 17:32:30 +02:00
<description >
2020-12-27 14:30:33 +01:00
Sets custom font used to draw text in the column [code]column[/code].
</description>
</method>
<method name= "set_custom_font_size" >
<return type= "void" />
<argument index= "0" name= "column" type= "int" />
<argument index= "1" name= "font_size" type= "int" />
<description >
Sets custom font size used to draw text in the column [code]column[/code].
2021-05-27 17:32:30 +02:00
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "set_editable" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "column" type= "int" />
<argument index= "1" name= "enabled" type= "bool" />
2017-09-12 22:42:36 +02:00
<description >
2018-12-20 13:46:54 +01:00
If [code]true[/code], column [code]column[/code] is editable.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "set_expand_right" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "column" type= "int" />
<argument index= "1" name= "enable" type= "bool" />
2017-09-12 22:42:36 +02:00
<description >
2018-12-20 13:46:54 +01:00
If [code]true[/code], column [code]column[/code] is expanded to the right.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "set_icon" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "column" type= "int" />
<argument index= "1" name= "texture" type= "Texture2D" />
2017-09-12 22:42:36 +02:00
<description >
2020-02-12 09:59:06 +01:00
Sets the given column's icon [Texture2D].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "set_icon_max_width" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "column" type= "int" />
<argument index= "1" name= "width" type= "int" />
2017-09-12 22:42:36 +02:00
<description >
2017-10-07 19:43:24 +02:00
Sets the given column's icon's maximum width.
2017-09-12 22:42:36 +02:00
</description>
</method>
2019-08-24 17:13:48 +02:00
<method name= "set_icon_modulate" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "column" type= "int" />
<argument index= "1" name= "modulate" type= "Color" />
2019-08-24 17:13:48 +02:00
<description >
Modulates the given column's icon with [code]modulate[/code].
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "set_icon_region" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "column" type= "int" />
<argument index= "1" name= "region" type= "Rect2" />
2017-09-12 22:42:36 +02:00
<description >
2017-10-07 19:43:24 +02:00
Sets the given column's icon's texture region.
2017-09-12 22:42:36 +02:00
</description>
</method>
2021-07-22 22:34:54 +02:00
<method name= "set_indeterminate" >
<return type= "void" />
<argument index= "0" name= "column" type= "int" />
<argument index= "1" name= "indeterminate" type= "bool" />
<description >
If [code]true[/code], the column [code]column[/code] is marked indeterminate.
[b]Note:[/b] If set [code]true[/code] from [code]false[/code], then column is cleared of checked status.
</description>
</method>
2020-08-12 13:49:10 +02:00
<method name= "set_language" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "column" type= "int" />
<argument index= "1" name= "language" type= "String" />
2020-08-12 13:49:10 +02:00
<description >
Sets language code of item's text used for line-breaking and text shaping algorithms, if left empty current locale is used instead.
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "set_metadata" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "column" type= "int" />
<argument index= "1" name= "meta" type= "Variant" />
2017-09-12 22:42:36 +02:00
<description >
2021-01-29 05:34:29 +01:00
Sets the metadata value for the given column, which can be retrieved later using [method get_metadata]. This can be used, for example, to store a reference to the original data.
2017-09-12 22:42:36 +02:00
</description>
</method>
2020-08-12 13:49:10 +02:00
<method name= "set_opentype_feature" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "column" type= "int" />
<argument index= "1" name= "tag" type= "String" />
<argument index= "2" name= "value" type= "int" />
2020-08-12 13:49:10 +02:00
<description >
Sets OpenType feature [code]tag[/code] for the item's text.
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "set_range" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "column" type= "int" />
<argument index= "1" name= "value" type= "float" />
2017-09-12 22:42:36 +02:00
<description >
2021-01-29 05:34:29 +01:00
Sets the value of a [constant CELL_MODE_RANGE] column.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "set_range_config" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "column" type= "int" />
<argument index= "1" name= "min" type= "float" />
<argument index= "2" name= "max" type= "float" />
<argument index= "3" name= "step" type= "float" />
<argument index= "4" name= "expr" type= "bool" default= "false" />
2017-09-12 22:42:36 +02:00
<description >
2021-01-29 05:34:29 +01:00
Sets the range of accepted values for a column. The column must be in the [constant CELL_MODE_RANGE] mode.
If [code]expr[/code] is [code]true[/code], the edit mode slider will use an exponential scale as with [member Range.exp_edit].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "set_selectable" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "column" type= "int" />
<argument index= "1" name= "selectable" type= "bool" />
2017-09-12 22:42:36 +02:00
<description >
2018-12-20 13:46:54 +01:00
If [code]true[/code], the given column is selectable.
2017-09-12 22:42:36 +02:00
</description>
</method>
2020-08-12 13:49:10 +02:00
<method name= "set_structured_text_bidi_override" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "column" type= "int" />
2022-04-19 12:27:18 +02:00
<argument index= "1" name= "parser" type= "int" enum= "TextServer.StructuredTextParser" />
2020-08-12 13:49:10 +02:00
<description >
</description>
</method>
<method name= "set_structured_text_bidi_override_options" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "column" type= "int" />
<argument index= "1" name= "args" type= "Array" />
2020-08-12 13:49:10 +02:00
<description >
</description>
</method>
2020-05-11 13:23:39 +02:00
<method name= "set_suffix" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "column" type= "int" />
<argument index= "1" name= "text" type= "String" />
2020-05-11 13:23:39 +02:00
<description >
2021-01-29 05:34:29 +01:00
Sets a string to be shown after a column's value (for example, a unit abbreviation).
2020-05-11 13:23:39 +02:00
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "set_text" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "column" type= "int" />
<argument index= "1" name= "text" type= "String" />
2017-09-12 22:42:36 +02:00
<description >
2021-01-29 05:34:29 +01:00
Sets the given column's text value.
2017-09-12 22:42:36 +02:00
</description>
</method>
2021-11-25 03:58:47 +01:00
<method name= "set_text_alignment" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "column" type= "int" />
2021-11-25 03:58:47 +01:00
<argument index= "1" name= "text_alignment" type= "int" enum= "HorizontalAlignment" />
2017-09-12 22:42:36 +02:00
<description >
2021-11-25 03:58:47 +01:00
Sets the given column's text alignment. See [enum HorizontalAlignment] for possible values.
2017-09-12 22:42:36 +02:00
</description>
</method>
2020-08-12 13:49:10 +02:00
<method name= "set_text_direction" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "column" type= "int" />
<argument index= "1" name= "direction" type= "int" enum= "Control.TextDirection" />
2020-08-12 13:49:10 +02:00
<description >
Sets item's text base writing direction.
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "set_tooltip" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "column" type= "int" />
<argument index= "1" name= "tooltip" type= "String" />
2017-09-12 22:42:36 +02:00
<description >
2017-10-07 19:43:24 +02:00
Sets the given column's tooltip text.
2017-09-12 22:42:36 +02:00
</description>
</method>
2021-03-25 12:19:51 +01:00
<method name= "uncollapse_tree" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
2021-03-25 12:19:51 +01:00
<description >
</description>
</method>
2017-09-12 22:42:36 +02:00
</methods>
2018-01-11 23:38:35 +01:00
<members >
<member name= "collapsed" type= "bool" setter= "set_collapsed" getter= "is_collapsed" >
2018-12-20 13:46:54 +01:00
If [code]true[/code], the TreeItem is collapsed.
2018-01-11 23:38:35 +01:00
</member>
<member name= "custom_minimum_height" type= "int" setter= "set_custom_minimum_height" getter= "get_custom_minimum_height" >
The custom minimum height.
</member>
<member name= "disable_folding" type= "bool" setter= "set_disable_folding" getter= "is_folding_disabled" >
2018-12-20 13:46:54 +01:00
If [code]true[/code], folding is disabled for this TreeItem.
2018-01-11 23:38:35 +01:00
</member>
2022-04-03 10:37:08 +02:00
<member name= "visible" type= "bool" setter= "set_visible" getter= "is_visible" >
If [code]true[/code], the [TreeItem] is visible (default).
Note that if a [TreeItem] is set to not be visible, none of its children will be visible either.
</member>
2018-01-11 23:38:35 +01:00
</members>
2017-09-12 22:42:36 +02:00
<constants >
2017-11-24 23:16:30 +01:00
<constant name= "CELL_MODE_STRING" value= "0" enum= "TreeCellMode" >
2017-10-07 19:43:24 +02:00
Cell contains a string.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "CELL_MODE_CHECK" value= "1" enum= "TreeCellMode" >
2021-01-29 05:34:29 +01:00
Cell contains a checkbox.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "CELL_MODE_RANGE" value= "2" enum= "TreeCellMode" >
2017-10-07 19:43:24 +02:00
Cell contains a range.
2017-09-12 22:42:36 +02:00
</constant>
2018-10-07 15:52:07 +02:00
<constant name= "CELL_MODE_ICON" value= "3" enum= "TreeCellMode" >
2017-10-07 19:43:24 +02:00
Cell contains an icon.
2017-09-12 22:42:36 +02:00
</constant>
2018-10-07 15:52:07 +02:00
<constant name= "CELL_MODE_CUSTOM" value= "4" enum= "TreeCellMode" >
2017-09-12 22:42:36 +02:00
</constant>
</constants>
</class>