Changeset View
Changeset View
Standalone View
Standalone View
intern/ghost/GHOST_ISystem.h
| Show First 20 Lines • Show All 440 Lines • ▼ Show 20 Lines | #endif | ||||
| * System Message Box. | * System Message Box. | ||||
| ***************************************************************************************/ | ***************************************************************************************/ | ||||
| /** | /** | ||||
| * Show a system message box | * Show a system message box | ||||
| * | * | ||||
| * \param title The title of the message box | * \param title The title of the message box | ||||
| * \param message The message to display | * \param message The message to display | ||||
| * \param help_label Help button label | |||||
| * \param continue_label Continue button label | |||||
| * \param link An optional hyperlink | * \param link An optional hyperlink | ||||
| * \param dialog_options Options how to display the message | * \param dialog_options Options how to display the message | ||||
| */ | */ | ||||
| virtual GHOST_TSuccess showMessageBox(const char * /*title*/, | virtual GHOST_TSuccess showMessageBox(const char * /*title*/, | ||||
| const char * /*message*/, | const char * /*message*/, | ||||
| const char * /*help_label*/, | |||||
| const char * /*continue_label*/, | |||||
| const char * /*link*/, | const char * /*link*/, | ||||
| GHOST_DialogOptions /*dialog_options*/) const = 0; | GHOST_DialogOptions /*dialog_options*/) const = 0; | ||||
| protected: | protected: | ||||
| /** | /** | ||||
| * Initialize the system. | * Initialize the system. | ||||
| * \return Indication of success. | * \return Indication of success. | ||||
| */ | */ | ||||
| Show All 17 Lines | |||||