diff options
author | Kevin Fischer <46539626+Phischermen@users.noreply.github.com> | 2021-07-22 13:34:54 -0700 |
---|---|---|
committer | Kevin Fischer <46539626+Phischermen@users.noreply.github.com> | 2021-08-16 10:13:06 -0700 |
commit | 75866c81e7163a264bbbf1684a4564fae37fc50f (patch) | |
tree | d5bb773da62325e32e8021670e01ef1ee0ecb8d5 /doc/classes/TreeItem.xml | |
parent | cfdac0973c2f1e5a3349c3d80262be130744384a (diff) | |
download | redot-engine-75866c81e7163a264bbbf1684a4564fae37fc50f.tar.gz |
Added icons and API for indeterminate checkmarks for the Tree class.
Diffstat (limited to 'doc/classes/TreeItem.xml')
-rw-r--r-- | doc/classes/TreeItem.xml | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/doc/classes/TreeItem.xml b/doc/classes/TreeItem.xml index 944b9fdc06..406c074758 100644 --- a/doc/classes/TreeItem.xml +++ b/doc/classes/TreeItem.xml @@ -340,6 +340,13 @@ Returns [code]true[/code] if column [code]column[/code] is editable. </description> </method> + <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> <method name="is_selectable" qualifiers="const"> <return type="bool" /> <argument index="0" name="column" type="int" /> @@ -415,7 +422,7 @@ <argument index="0" name="column" type="int" /> <argument index="1" name="checked" type="bool" /> <description> - If [code]true[/code], the column [code]column[/code] is checked. + If [code]true[/code], the column [code]column[/code] is checked. Clears column's indeterminate status. </description> </method> <method name="set_custom_as_button"> @@ -507,6 +514,15 @@ Sets the given column's icon's texture region. </description> </method> + <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> <method name="set_language"> <return type="void" /> <argument index="0" name="column" type="int" /> |