Understanding the Kanji 0.1.5
A tool for understanding the meaning behind the Japanese Kanji characters.
|
Utility class to create and display message boxes to the user (without any logging). More...
Static Public Member Functions | |
static void | ShowInfoDialog (String message) |
Displays a basic modal info dialog. | |
static void | ShowInfoDialog (String message, String title) |
Displays a basic modal info dialog with a custom title. | |
static void | ShowInfoDialog (String message, String title, String headerContent) |
Displays a basic modal info dialog with a custom title and header content. | |
static void | ShowInfoDialog (String message, String title, String headerContent, boolean isModal) |
Displays a basic info dialog with a custom title and header content. | |
static void | ShowWarningDialog (String message) |
Displays a basic modal warning dialog. | |
static void | ShowWarningDialog (String message, String title) |
Displays a basic warning info dialog with a custom title. | |
static void | ShowWarningDialog (String message, String title, String headerContent) |
Displays a basic modal warning dialog with a custom title and header content. | |
static void | ShowWarningDialog (String message, String title, String headerContent, boolean isModal) |
Displays a basic warning dialog with a custom title and header content. | |
static void | ShowErrorDialog (String message) |
Displays a basic modal error dialog. | |
static void | ShowErrorDialog (String message, String title) |
Displays a basic error info dialog with a custom title. | |
static void | ShowErrorDialog (String message, String title, String headerContent) |
Displays a basic modal error dialog with a custom title and header content. | |
static void | ShowErrorDialog (String message, String title, String headerContent, boolean isModal) |
Displays a basic error dialog with a custom title and header content. | |
static boolean | ShowInfoPrompt (String message) |
Displays a basic yes/no prompt to the user. | |
Utility class to create and display message boxes to the user (without any logging).
|
static |
Displays a basic modal error dialog.
message | The message to be displayed to the user. |
|
static |
Displays a basic error info dialog with a custom title.
message | The message to be displayed to the user. |
title | The title of the message box. |
|
static |
Displays a basic modal error dialog with a custom title and header content.
message | The message to be displayed to the user. |
title | The title of the message box. |
headerContent | The header content of the message box. |
|
static |
Displays a basic error dialog with a custom title and header content.
Allows non-modal dialogs.
message | The message to be displayed to the user. |
title | The title of the message box. |
headerContent | The header content of the message box. |
isModal | Specifies whether the message box is modal. The default value is true. |
|
static |
Displays a basic modal info dialog.
message | The message to be displayed to the user. |
|
static |
Displays a basic modal info dialog with a custom title.
message | The message to be displayed to the user. |
title | The title of the message box. |
|
static |
Displays a basic modal info dialog with a custom title and header content.
message | The message to be displayed to the user. |
title | The title of the message box. |
headerContent | The header content of the message box. |
|
static |
Displays a basic info dialog with a custom title and header content.
Allows non-modal dialogs.
message | The message to be displayed to the user. |
title | The title of the message box. |
headerContent | The header content of the message box. |
isModal | Specifies whether or not the message box is modal. The default value is true. |
|
static |
Displays a basic yes/no prompt to the user.
message | The message to be promoted to the user. |
|
static |
Displays a basic modal warning dialog.
message | The message to be displayed to the user. |
|
static |
Displays a basic warning info dialog with a custom title.
message | The message to be displayed to the user. |
title | The title of the message box. |
|
static |
Displays a basic modal warning dialog with a custom title and header content.
message | The message to be displayed to the user. |
title | The title of the message box. |
headerContent | The header content of the message box. |
|
static |
Displays a basic warning dialog with a custom title and header content.
Allows non-modal dialogs.
message | The message to be displayed to the user. |
title | The title of the message box. |
headerContent | The header content of the message box. |
isModal | Specifies whether or not the message box is modal. The default value is true. |