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
Help improve this article
Was this article helpful?
(or select a word/phrase and press Ctrl+Enter)