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.

WidgetWindow Class

Interface for widget window handling. See also UnigineScript analog.

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

WidgetWindow Class

Members


WidgetWindow (const Ptr<Gui> & gui, const char * str = 0, int x = 0, int y = 0)

Constructor. Creates a window with given parameters.

Arguments

  • const Ptr<Gui> & gui - GUI, to which the new window will belong.
  • const char * str - Window title. This is an optional parameter.
  • int x - Horizontal space between the widgets in the window and between them and the window border. This is an optional parameter.
  • int y - Vertical space between the widgets in the window and between them and the window border. This is an optional parameter.

void setMoveable (int moveable)

Sets a value indicating if the window is movable.

Arguments

  • int moveable - 1 to set the window movable; otherwise, 0.

Math::vec4 getColor ()

Returns a color of the global color multiplier.

Return value

Color for the color multiplier.

void setText (const char * text)

Sets a window title.

Arguments

  • const char * text - Window title.

void setColor (const Math::vec4 & color)

Sets a color for the global color multiplier. The default is equivalent to vec4(1,1,1,1) (white).

Arguments

  • const Math::vec4 & color - Color for the color multiplier.

int isSizeable ()

Returns a value indicating if the window is resizeable. The default is 0.

Return value

Returns 1 if the window is resizeable; otherwise, 0.

int getSpaceY ()

Returns the vertical space between the widgets in the window and between them and the window border.

Return value

Vertical space.

int getPaddingRight ()

Returns the current right-side padding for the widget content.

Return value

Right-side padding in pixels.

int getPaddingBottom ()

Returns the current bottom padding for the widget content.

Return value

Bottom padding in pixels.

void setTransform (const Math::mat4 & transform)

Sets the global widget transformation matrix. This 2D matrix can be tilted, rotated, moved or modified in many ways in 3D space.

Arguments

  • const Math::mat4 & transform - Transformation matrix.

int isBlendable ()

Returns a value indicating if the window can fade in and out when changing to the minimized state and back. The default is 0.

Return value

Returns 1 if the window can fade in and out; otherwise, 0.

int isFloatable ()

Returns a value indicating if the window is animated when changing to the minimized state and back. The default is 0.

Return value

Returns 1 if the window is animated; otherwise, 0.

void setMaxHeight (int height)

Sets the maximum height value for the window.

Arguments

  • int height - Maximum height value.

int isMoveable ()

Returns a value indicating if the window is movable. The default is 1.

Return value

Returns 1 if the window is movable; otherwise, 0.

int getTextAlign ()

Returns the alignment of the window title.

Return value

One of the Gui::Enumeration with ALIGN_* prefixes.

int getPaddingLeft ()

Returns the current left-side padding for the widget content.

Return value

Left-side padding in pixels.

Math::mat4 getTransform ()

Returns the global widget transformation matrix.

Return value

Transformation matrix.

void setMaxWidth (int width)

Sets the maximum width value for the window.

Arguments

  • int width - Maximum width value.

int getSnapDistance ()

Returns the distance, at which the window snaps to another window or screen edge. The default is 0 (do not snap).

Return value

Distance in pixels.

int getMaxWidth ()

Returns the maximum width value of the window.

Return value

Maximum width value.

const char * getText ()

Returns the current window title.

Return value

Window title.

int getSpaceX ()

Returns the horizontal space between the widgets in the window and between them and the window border.

Return value

Horizontal space.

void setTextAlign (int align)

Sets alignment of the window title.

Arguments

  • int align - One of theGui::Enumeration with ALIGN_* prefixes.

int type ()

WidgetWindow type.

Return value

WidgetWindow type identifier.

void setSnapDistance (int distance)

Sets a distance, at which the window snaps to another window or screen edge.

Arguments

  • int distance - Distance in pixels.

void setSpace (int x, int y)

Sets a space between the widgets in the window and between them and the window border.

Arguments

  • int x - Horizontal space. If a negative value is provided, 0 will be used instead.
  • int y - Vertical space. If a negative value is provided, 0 will be used instead.

Ptr<WidgetWindow> getWidgetWindow ()

Returns a window pointer.

Return value

WidgetWindow pointer.

void setTitleable (int titleable)

Sets a value indicating if the window is minimized when double-clicking on it. The default is 0.

Arguments

  • int titleable - 1 to allow minimization, 0 to disallow it.

void setPadding (int l, int r, int t, int b)

Sets widget paddings for all sides. Padding clears an area around the content of a widget (inside of it).

Arguments

  • int l - Left-side padding in pixels.
  • int r - Right-side padding in pixels.
  • int t - Top padding in pixels.
  • int b - Bottom padding in pixels.

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

WidgetWindow constructor.

Arguments

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

Return value

void setFloatable (int floatable)

Sets a value indicating if the window is animated when changing to the minimized state and back.

Arguments

  • int floatable - 1 to allow animating the window, 0 not to make it.

int isTitleable ()

Returns a value indicating if the window is minimized when double-clicking on it. The default is 0.

Return value

Returns 1 if the window is minimized when double-clicking on it; otherwise, 0.

void setSizeable (int sizeable)

Sets a value indicating if the window is resizeable.

Arguments

  • int sizeable - 1 to allow resizing the window, 0 to disallow it.

int getMaxHeight ()

Returns the maximum height value of the window.

Return value

Maximum height value.

int getPaddingTop ()

Returns the current top padding for the widget content.

Return value

Top padding in pixels.

void setBlendable (int blendable)

Sets a value indicating if the window can fade in and out when changing to the minimized state and back.

Arguments

  • int blendable - 1 to allow fading in and out, 0 to disallow it.
Last update: 2017-07-03
Build: ()