This page has been translated automatically.
Programming
Fundamentials
Setting Up Development Environment
UnigineScript
High-Level Systems
C++
C#
UUSL (Unified UNIGINE Shader Language)
File Formats
Rebuilding the Engine and Tools
GUI
Double Precision Coordinates
API
Core Library
Containers
Engine Classes
Node-Related Classes
Rendering-Related Classes
Physics-Related Classes
Bounds-Related Classes
Controls-Related Classes
Pathfinding-Related Classes
Utility Classes
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.

WidgetVPaned Class

Interface for widget vpaned handling. See also UnigineScript analog.

To use this class, include the UnigineWidgetVPaned.h file.

WidgetVPaned Class

Members


WidgetVPaned (const Ptr<Gui> & gui)

Constructor. Creates a new vertical box, which children can be resized.

Arguments

  • const Ptr<Gui> & gui - GUI, to which the new container will belong.

Ptr<WidgetVPaned> create (const Ptr<Widget> & widget)

WidgetVPaned constructor.

Arguments

  • const Ptr<Widget> & widget - Widget smart pointer.

Return value

int type ()

WidgetVPaned type.

Return value

WidgetVPaned type identifier.

int getSecondSize ()

Returns the size of the second child.

Return value

Size of the second child in pixels.

int getFirstSize ()

Returns the size of the first child.

Return value

Size of the first child in pixels.

void setFirstSize (int size)

Sets the size of the first child.

Arguments

  • int size - Size of the first child in pixels.

int getFixed ()

Returns the number of the child with the fixed size.

Return value

Number of the child. 0 means that the size of both children is not fixed.

void setValue (int value)

Specifies how child widgets will be resized. The default is 0.

Arguments

  • int value - Value in range [-32767;32767]. -32767 means that during resize the upper child will remain fixed. 32767 means that during resize the lower child will remain fixed. 0 means that both children will be resized equally. Other values specify proportions, in which the children are resized.

Ptr<WidgetVPaned> getWidgetVPaned ()

Returns a widget vpaned pointer.

Return value

WidgetVPaned pointer.

void setSecondSize (int size)

Sets the size of the second child.

Arguments

  • int size - Size of the second child in pixels.

int getValue ()

Returns a value specifying how child widgets will be resized.

Return value

Value in range [-32767;32767]. -32767 means that during resize the upper child will remain fixed. 32767 means that during resize the lower child will remain fixed. 0 means that both children will be resized equally. Other values specify proportions, in which the children are resized.

void setFixed (int fixed)

Sets the number of the child with the fixed size. The default is 0.

Arguments

  • int fixed - Number of the child:
    • 0 - size of both children is not fixed.
    • 1 - size of the first child is fixed.
    • 2 - size of the second child is fixed.
Last update: 2017-07-03
Build: ()