This page has been translated automatically.
Video Tutorials
Interface
Essentials
Advanced
How To
Professional (SIM)
UnigineEditor
Interface Overview
Assets Workflow
Settings and Preferences
Working With Projects
Adjusting Node Parameters
Setting Up Materials
Setting Up Properties
Lighting
Sandworm
Using Editor Tools for Specific Tasks
Extending Editor Functionality
Built-in Node Types
Nodes
Objects
Effects
Decals
Light Sources
Geodetics
World Nodes
Sound Objects
Pathfinding Objects
Players
Programming
Fundamentals
Setting Up Development Environment
Usage Examples
C++
C#
UnigineScript
UUSL (Unified UNIGINE Shader Language)
Plugins
File Formats
Materials and Shaders
Rebuilding the Engine Tools
GUI
Double Precision Coordinates
API
Containers
Common Functionality
Controls-Related Classes
Engine-Related Classes
Filesystem Functionality
Math Functionality
Node-Related Classes
Objects-Related Classes
Networking Functionality
Pathfinding-Related Classes
Physics-Related Classes
Plugins-Related Classes
IG Plugin
CIGIConnector Plugin
Rendering-Related Classes
Content Creation
Content Optimization
Materials
Material Nodes Library
Miscellaneous
Input
Math
Matrix
Textures
Art Samples
Tutorials
Warning! This version of documentation is OUTDATED, as it describes an older SDK version! Please switch to the documentation for the latest SDK version.
Warning! This version of documentation describes an old SDK version which is no longer supported! Please upgrade to the latest SDK version.

Unigine.WidgetTreeBox Class

Inherits from: Widget

This class creates a box with a tree-like hierarchy. For example:

Source code (UnigineScript)
int init() {

Gui gui = engine.getGui();

WidgetTreeBox tree = new WidgetTreeBox(gui);

tree.addItem("1st item");  // Add items into the tree.
tree.addItem("2nd item");
tree.addItem("3rd item");
tree.addItem("4th item");

tree.addItemChild(0,1);   // Make a 2nd item a child of the 1st one.
tree.setItemFolded(0,1);  // Collapse children of the 1st child.

WidgetWindow window = new WidgetWindow(gui);  // Create a window.
gui.addChild(window,GUI_ALIGN_CENTER);

window.addChild(tree,GUI_ALIGN_CENTER); // Render a tree in the window.

return 1;
}

As a result, you will get:

WidgetTreeBox in a window

WidgetTreeBox Class

Properties

int NumSelectedItems#

The number of selected items in the box (multi-selection mode).

string CurrentItemData#

The data of the currently focused item (multi-selection mode). the data can be used as a text identifier of the item (instead of using the number of the item).

string CurrentItemText#

The text of the currently focused item (multi-selection mode).

int CurrentItem#

The item currently in focus (multi-selection mode).

int NumItems#

The number of visible items in the tree box. items that are currently collapsed to a parent level are not returned.

string Texture#

The file name of the image with mini-icons. the texture is a vertical strip of square icons.

bool MultiSelection#

The value indicating if multiple selection of items is enabled. the default is 0.

bool Editable#

The value indicating if item hierarchy can be edited. the default is 0.

vec4 SelectionColor#

The color to be used to highlight the current selection for the widget.

int ItemUnderCursor#

The ID of the item, over which the cursor is currently hovering.

bool NeedSortChildren#

The value indicating if sorting of children is enabled.

Members


WidgetTreeBox ( Gui gui ) #

Constructor. Creates an empty tree box and adds it to the specified GUI.

Arguments

  • Gui gui - GUI, to which the new tree box will belong.

WidgetTreeBox ( ) #

Constructor. Creates an empty tree box and adds it to the Engine GUI.

void SetImage ( Image image ) #

Sets an image with mini-icons to be used with items. The image is a vertical strip of square icons.

Arguments

  • Image image - Image to set.

Image GetImage ( ) #

Returns the image with mini-icons.

Return value

Image with mini-icons (the vertical strip of square icons).

int GetItem ( int num ) #

Returns the ID of a given item by its number. The IDs are unique, and the numbers simply point at the place in the list of all items.

Arguments

  • int num - Item ID in range from 0 to the total number of items.

Return value

Item ID.

int GetItemChild ( int item, int num ) #

Returns a child of a given item.

Arguments

  • int item - Item ID in range from 0 to the total number of items.
  • int num - Child number in the list of children in range from 0 to the total number.

Return value

Child item ID.

int IsItemChild ( int item, int child ) #

Checks if a given item is a child of another specified item.

Arguments

  • int item - Item ID in range from 0 to the total number of items.
  • int child - Child item ID.

Return value

1 if child is actually a child of the item; otherwise, 0.

void SetItemColor ( int item, vec4 color ) #

Sets a custom color for a given item.

Arguments

  • int item - Item number in range from 0 to the total number of items.
  • vec4 color - Color to set.

vec4 GetItemColor ( int item ) #

Returns a color set to a given item.

Arguments

  • int item - Item ID in range from 0 to the total number of items.

Return value

Color.

void SetItemData ( int item, string str ) #

Sets a custom text data for the given item. The data can be used as a text identifier of the item (instead of using the item number).

Arguments

  • int item - Item ID in range from 0 to the total number of items.
  • string str - Text data to be set.

string GetItemData ( int item ) #

Returns the text data of the item with the specified ID. The data can be used as a text identifier of the item (instead of using the item number).

Arguments

  • int item - Item ID in range from 0 to the total number of items.

Return value

Item text data.

void SetItemFolded ( int item, int folded ) #

Expands or collapses an hierarchy of a given item.

Arguments

  • int item - Item ID in range from 0 to the total number of items.
  • int folded - 1 to collapse the item hierarchy, 0 to expand it.

int IsItemFolded ( int item ) #

Returns a value indicating if a given item is collapsed.

Arguments

  • int item - Item ID in range from 0 to the total number of items.

Return value

1 if the item is collapsed; otherwise, 0.

void SetItemHidden ( int item, int hidden ) #

Sets a value indicating if a given item is hidden.

Arguments

  • int item - Item ID in range from 0 to the total number of items.
  • int hidden - 1 to hide the item, 0 to show it.

int IsItemHidden ( int item ) #

Returns a value indicating if an item is hidden or not.

Arguments

  • int item - Item ID in range from 0 to the total number of items.

Return value

1 if the item is hidden; otherwise, 0.

void SetItemParent ( int item, int parent ) #

Sets a parent for a given item.

Arguments

  • int item - Item ID in range from 0 to the total number of items.
  • int parent - Parent item ID. -1 removes the current parent.

int GetItemParent ( int item ) #

Returns the parent of a given item.

Arguments

  • int item - Item ID in range from 0 to the total number of items.

Return value

Parent item ID.

void GetItems ( int[] items ) #

Returns all items in the tree box.

Arguments

  • int[] items - An array with item IDs.

void SetItemSelectable ( int item, int selectable ) #

Sets a value indicating if a given item can be selected.

Arguments

  • int item - Item ID in range from 0 to the total number of items.
  • int selectable - 1 to set the item as selectable, 0 to set it as unselectable.

int IsItemSelectable ( int item ) #

Returns a value indicating if a given item can be selected.

Arguments

  • int item - Item ID in range from 0 to the total number of items.

Return value

1 if the item is selectable; otherwise, 0.

void SetItemSelected ( int item, int selected ) #

Selects or deselects a given item.

Arguments

  • int item - Item ID in range from 0 to the total number of items.
  • int selected - 1 to select the item, 0 to deselect it.

int IsItemSelected ( int item ) #

Returns a value indicating if a given item is selected.

Arguments

  • int item - Item ID in range from 0 to the total number of items.

Return value

1 if the item is selected; otherwise, 0.

void SetItemText ( int item, string str ) #

Sets a text for a given item.

Arguments

  • int item - Item ID in range from 0 to the total number of items.
  • string str - Item text.

string GetItemText ( int item ) #

Returns the text of a given item.

Arguments

  • int item - Item ID in range from 0 to the total number of items.

Return value

Item text.

void SetItemTexture ( int item, int texture ) #

Sets an icon for a given item.

Arguments

  • int item - Item ID in range from 0 to the total number of items.
  • int texture - Zero-based ID of the icon (i.e. number of the icon in the icon texture).

int GetItemTexture ( int item ) #

Returns the icon of a given item.

Arguments

  • int item - Item ID in range from 0 to the total number of items.

Return value

Zero-based ID of the icon (i.e. number of the icon in the icon texture).

int GetNumItemChildren ( int item ) #

Returns the number of child items of a given item.

Arguments

  • int item - Item ID in range from 0 to the total number of items.

Return value

Number of child items.

int GetSelectedItem ( int num ) #

Returns ID of a selected item (multi-selection mode).

Arguments

  • int num - Number of an item in the list of selected items.

Return value

ID of the selected item.

int AddItem ( string str, int texture = -1 ) #

Adds a new item with a given text and and an icon.

Arguments

  • string str - Item text.
  • int texture - Zero-based ID of the icon (i.e. number of the icon in the icon texture). -1 means that an item has no icon.

Return value

ID of the added item.

void AddItemChild ( int item, int child ) #

Adds a child to a given item.

Arguments

  • int item - Item ID in range from 0 to the total number of items.
  • int child - Child item ID.

void Clear ( ) #

Removes all items from the tree box.

void ClearSelection ( ) #

Clears list of selected items.

void RemoveItem ( int item ) #

Removes a given item from the tree box. Children items will be kept.

Arguments

  • int item - Item ID in range from 0 to the total number of items.

void RemoveItemChild ( int item, int child ) #

Removes a child of a given item.

Arguments

  • int item - Item ID in range from 0 to the total number of items.
  • int child - Child item ID.

void ShowItem ( int item ) #

Scrolls a tree box so that a given item is visible.

Arguments

  • int item - Item ID in range from 0 to the total number of items.

int GetItemUnderCursor ( ) #

Returns the ID of the item, over which the cursor is currently hovering.

Return value

Item ID in range from 0 to the total number of items.

void SetNeedSortChildren ( bool children ) #

Sets the value specifying if sorting of children is required. Sorting is performed with the default compare algorithm.

Arguments

  • bool children - true to enable sorting of children, false to disable it.

bool IsNeedSortChildren ( ) #

Returns the value specifying if sorting of children is required. Sorting is performed with the default compare algorithm.

Return value

true if sorting of children is enabled, otherwise false.
Last update: 2022-12-14
Build: ()