This page has been translated automatically.
UnigineEditor
Interface Overview
Assets Workflow
Settings and Preferences
Working With Projects
Adjusting Node Parameters
Setting Up Materials
Setting Up Properties
Landscape Tool
Using Editor Tools for Specific Tasks
Extending Editor Functionality
FAQ
Programming
Fundamentals
Setting Up Development Environment
Usage Examples
UnigineScript
C++
C#
UUSL (Unified UNIGINE Shader Language)
File Formats
Rebuilding the Engine and 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
Rendering-Related 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.

Unigine::WidgetExternBase Class

Header: #include <UnigineWidgets.h>
Inherits: Base

The base class, from which custom user-defined widgets are inherited.

See Also#

  • C++ API sample <UnigineSDK>/source/samples/Api/Widgets/WidgetExtern

WidgetExternBase Class

Members


int getClassID ( ) #

Returns a unique class ID.

Return value

Unique class ID.

Ptr<Gui> getGui ( ) #

Returns the Gui smart pointer.

Return value

Gui smart pointer.

int getKeyActivity ( unsigned int key ) #

Checks the keyboard key.

Arguments

  • unsigned int key - Key code.

Return value

Returns 1 if the key is used by widget.

Ptr<Widget> getWidget ( ) #

Returns the Widget smart pointer.

Return value

Widget smart pointer.

Ptr<WidgetExtern> getWidgetExtern ( ) #

Returns the WidgetExtern smart pointer.

Return value

WidgetExtern smart pointer.

void arrange ( ) #

Calculates the widget size.

void checkCallbacks ( int x, int y ) #

Checks widget callbacks.

Arguments

  • int x - Mouse X coordinate.
  • int y - Mouse Y coordinate.

void destroy ( ) #

Destroys the widget resources.

void expand ( int width, int height ) #

Expands the widget size.

Arguments

  • int width - Maximum available width.
  • int height - Maximum available height.

void keyPress ( unsigned int key ) #

Keyboard press event.

Arguments

  • unsigned int key - Key code.

void render ( ) #

Renders the widget.

void update ( float ifps ) #

Widget update function.

Arguments

  • float ifps - Inverse FPS value.
Last update: 2019-12-25
Build: ()