![]() |
Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
|
Go to the source code of this file.
Classes | |
| class | SCR_ConfigurableDialogUi |
| class | SCR_ConfigurableDialogUiButtonPreset |
| Configuration for a button. More... | |
| class | SCR_ConfigurableDialogUiPreset |
| Configuration for a dialog. More... | |
| class | SCR_ConfigurableDialogUiPresets |
| Class for a .conf file with multiple presets. More... | |
Macros | |
| #define | DEBUG_CONFIGURABLE_DIALOGS |
Typedefs | |
| typedef func | ScriptInvokerConfigurableDialogMethod |
| typedef ScriptInvokerBase< ScriptInvokerConfigurableDialogMethod > | ScriptInvokerConfigurableDialog |
Enumerations | |
| enum | EConfigurableDialogUiButtonAlign { LEFT = 0 , RIGHT , CENTER } |
| Configuration for button alignment. More... | |
| enum | EConfigurableDialogStyle { NEUTRAL , ACTION , WARNING , POSITIVE , ONLINE } |
| Style of the dialog. More... | |
Functions | |
| void | ScriptInvokerConfigurableDialogMethod (SCR_ConfigurableDialogUi dialog) |
| void | Init (SCR_ConfigurableDialogUi dlg) |
| override void | OnMenuUpdate (float tDelta) |
| override void | OnMenuFocusGained () |
| override void | OnMenuFocusLost () |
| override void | OnMenuShow () |
| override void | OnMenuHide () |
| override void | OnMenuClose () |
Variables | |
| SCR_ConfigurableDialogUi | m_Dlg |
| It is here to expose the Menu API to the configurable dialog instance. | |
| #define DEBUG_CONFIGURABLE_DIALOGS |
Configurable dialog can be configured via .conf presets. It has many options for button positions, title, message, colors, style, ...
If you add buttons "confirm" or "cancel", they are automatically bound to methods OnCancel and OnConfirm
Definition at line 7 of file SCR_ConfigurableDialogUI.c.
| typedef ScriptInvokerBase<ScriptInvokerConfigurableDialogMethod> ScriptInvokerConfigurableDialog |
Definition at line 11 of file SCR_ConfigurableDialogUI.c.
Definition at line 10 of file SCR_ConfigurableDialogUI.c.
Style of the dialog.
| Enumerator | |
|---|---|
| NEUTRAL | |
| ACTION | |
| WARNING | |
| POSITIVE | |
| ONLINE | |
Definition at line 719 of file SCR_ConfigurableDialogUI.c.
Configuration for button alignment.
| Enumerator | |
|---|---|
| LEFT | |
| RIGHT | |
| CENTER | |
Definition at line 706 of file SCR_ConfigurableDialogUI.c.
| void Init | ( | SCR_ConfigurableDialogUi | dlg | ) |
Definition at line 645 of file SCR_ConfigurableDialogUI.c.
| override void OnMenuClose | ( | ) |
Definition at line 694 of file SCR_ConfigurableDialogUI.c.
| override void OnMenuFocusGained | ( | ) |
Definition at line 658 of file SCR_ConfigurableDialogUI.c.
| override void OnMenuFocusLost | ( | ) |
Definition at line 667 of file SCR_ConfigurableDialogUI.c.
| override void OnMenuHide | ( | ) |
Definition at line 685 of file SCR_ConfigurableDialogUI.c.
| override void OnMenuShow | ( | ) |
Definition at line 676 of file SCR_ConfigurableDialogUI.c.
| override void OnMenuUpdate | ( | float | tDelta | ) |
Definition at line 651 of file SCR_ConfigurableDialogUI.c.
| void ScriptInvokerConfigurableDialogMethod | ( | SCR_ConfigurableDialogUi | dialog | ) |
| SCR_ConfigurableDialogUi m_Dlg |
It is here to expose the Menu API to the configurable dialog instance.