![]() |
pCon.planner Plugin SDK
Version 8.9
|
Static class to group message box functionality. More...
Public Types | |
enum | Button { Button::NoButton, Button::Ok, Button::Cancel, Button::Yes, Button::No, Button::Abort, Button::Retry, Button::Ignore } |
Default button types. More... | |
enum | Icon { Icon::NoIcon, Icon::Information, Icon::Warning, Icon::Error, Icon::Question } |
Icon types and titles available to show for a message box. More... | |
Static Public Member Functions | |
static Button | Show (Icon pIcon, System::String^ pText, Button pButton0, Button pButton1, Button pButton2, int pDefaultButtonIdx, int pEscapeButtonIdx) |
Show a message box with predefined button types. More... | |
static int | Show (Icon pIcon, System::String^ pText, System::String^ pButton0, System::String^ pButton1, System::String^ pButton2, int pDefaultButtonIdx, int pEscapeButtonIdx) |
Show a message box. More... | |
static void | Show (System::String^ pText) |
Show a message box with "Ok" button. More... | |
static void | Show (Icon pIcon, System::String^ pText) |
Show a message box with "Ok" button. More... | |
Properties | |
static IMessageBox^ | CustomMessageBox [get, set] |
Set/Get a custom handler for GUI messages. More... | |
Static class to group message box functionality.
|
strong |
|
strong |
|
static |
Show a message box with predefined button types.
pIcon | Dictates the Icon and title of the message box. |
pText | The central text for the message box. |
pButton0 | Request one Button to be part of the message box. |
pButton1 | Request one Button to be part of the message box. |
pButton2 | Request one Button to be part of the message box. |
pDefaultButtonIdx | Specify which button is focused by default based on their index. |
pEscapeButtonIdx | Specify which Button to return, when the user closes the message box. |
|
static |
Show a message box.
This method allows custom text for the message and each Button.
pIcon | Set the icon and title of the message box. |
pText | The central text for the message box. |
pButton0 | Text for the left button of the message box. This parameter is not allowed to be null or an empty String. |
pButton1 | Text for the centered button of the message box. This parameter is not allowed to be null or an empty String. |
pButton2 | Text for the right button of the message box. This parameter is not allowed to be null or an empty String. |
pDefaultButtonIdx | Specify which button is focused by default based on their index. |
pEscapeButtonIdx | Specify which button index to return, when the user closes the message box. |
|
static |
Show a message box with "Ok" button.
pText | The central text for the message box. |
|
static |
Show a message box with "Ok" button.
pIcon | Set the icon and title of the message box. |
pText | The central text for the message box. |
|
staticgetset |
Set/Get a custom handler for GUI messages.