Changeset View
Changeset View
Standalone View
Standalone View
intern/ghost/GHOST_C-api.h
| Show First 20 Lines • Show All 64 Lines • ▼ Show 20 Lines | |||||
| */ | */ | ||||
| extern GHOST_TSuccess GHOST_DisposeSystem(GHOST_SystemHandle systemhandle); | extern GHOST_TSuccess GHOST_DisposeSystem(GHOST_SystemHandle systemhandle); | ||||
| /** | /** | ||||
| * Show a system message box to the user | * Show a system message box to the user | ||||
| * \param systemhandle The handle to the system | * \param systemhandle The handle to the system | ||||
| * \param title Title of the message box | * \param title Title of the message box | ||||
| * \param message Message of the message box | * \param message Message of the message box | ||||
| * \param help_label Text to show on the help button that opens a link | |||||
| * \param continue_label Text to show on the ok button that continues | |||||
| * \param link Optional (hyper)link to a webpage to show when pressing help | * \param link Optional (hyper)link to a webpage to show when pressing help | ||||
| * \param dialog_options Options to configure the message box. | * \param dialog_options Options to configure the message box. | ||||
| * \return void. | * \return void. | ||||
| */ | */ | ||||
| extern void GHOST_ShowMessageBox(GHOST_SystemHandle systemhandle, | extern void GHOST_ShowMessageBox(GHOST_SystemHandle systemhandle, | ||||
| const char *title, | 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); | GHOST_DialogOptions dialog_options); | ||||
| /** | /** | ||||
| * Creates an event consumer object | * Creates an event consumer object | ||||
| * \param eventCallback The event callback routine. | * \param eventCallback The event callback routine. | ||||
| * \param userdata Pointer to user data returned to the callback routine. | * \param userdata Pointer to user data returned to the callback routine. | ||||
| */ | */ | ||||
| ▲ Show 20 Lines • Show All 898 Lines • Show Last 20 Lines | |||||