This page has been translated automatically.
Video Tutorials
Interface
Essentials
Advanced
How To
Rendering
Professional (SIM)
UnigineEditor
Interface Overview
Assets Workflow
Version Control
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
Animations-Related Classes
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
VR-Related Classes
Content Creation
Content Optimization
Materials
Material Nodes Library
Miscellaneous
Input
Math
Matrix
Textures
Art Samples
Tutorials

Unigine.WidgetDialog Class

Inherits from: WidgetWindow

This class creates a dialog window.

See Also
#

  • C++ API sample <UnigineSDK>/source/samples/Api/Widgets/WidgetDialog
  • C# API sample <UnigineSDK>/source/csharp/samples/Api/Widgets/WidgetDialog

WidgetDialog Class

Properties

string CloseText#

The caption of the Close button. The default is empty.

string CancelText#

The caption of the Cancel button. The default is Cancel.

string OkText#

The caption of the OK button. The default is OK.

bool IsOkClicked#

The value indicating if the OK button is clicked.

int Result#

The value indicating which button has been clicked.

bool IsDone#

The value indicating if the dialog window is closed.

Members


WidgetDialog ( Gui gui, string str = 0, int x = 0, int y = 0 ) #

Constructor. Creates a dialog window with given parameters and adds it to the specified GUI.

Arguments

  • Gui gui - GUI, to which the dialog will belong.
  • string str - Window title. This is an optional parameter.
  • int x - Horizontal space between widgets in the window and between them and the window border. This is an optional parameter.
  • int y - Vertical space between widgets in the window and between them and the window border. This is an optional parameter.

WidgetDialog ( string str = 0, int x = 0, int y = 0 ) #

Constructor. Creates a dialog window with given parameters and adds it to the Engine GUI.

Arguments

  • string str - Window title. This is an optional parameter.
  • int x - Horizontal space between widgets in the window and between them and the window border. This is an optional parameter.
  • int y - Vertical space between widgets in the window and between them and the window border. This is an optional parameter.

WidgetButton GetCancelButton ( ) #

Returns the button that cancels an action.

Return value

Cancel button.

int IsCancelClicked ( ) #

Returns a value indicating if the Cancel button is clicked.

Return value

1 if the Cancel button is clicked; otherwise, 0.

WidgetButton GetCloseButton ( ) #

Returns the button that closes an action.

Return value

Close button.

int IsCloseClicked ( ) #

Returns a value indicating if the Close button is clicked.

Return value

1 if the Close button is clicked; otherwise, 0.

WidgetButton GetOkButton ( ) #

Returns the button that approves an action.

Return value

OK button.
Last update: 2022-09-26
Build: ()