Changeset View
Changeset View
Standalone View
Standalone View
intern/ghost/intern/GHOST_SystemX11.h
| Show First 20 Lines • Show All 231 Lines • ▼ Show 20 Lines | #endif | ||||
| * \param selection Set the selection into the clipboard, X11 only feature | * \param selection Set the selection into the clipboard, X11 only feature | ||||
| */ | */ | ||||
| void putClipboard(GHOST_TInt8 *buffer, bool selection) const; | void putClipboard(GHOST_TInt8 *buffer, bool selection) const; | ||||
| /** | /** | ||||
| * 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 | ||||
| */ | */ | ||||
| GHOST_TSuccess showMessageBox(const char *title, | 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; | GHOST_DialogOptions dialog_options) const; | ||||
| #ifdef WITH_XDND | #ifdef WITH_XDND | ||||
| /** | /** | ||||
| * Creates a drag'n'drop event and pushes it immediately onto the event queue. | * Creates a drag'n'drop event and pushes it immediately onto the event queue. | ||||
| * Called by GHOST_DropTargetX11 class. | * Called by GHOST_DropTargetX11 class. | ||||
| * \param eventType The type of drag'n'drop event | * \param eventType The type of drag'n'drop event | ||||
| * \param draggedObjectType The type object concerned | * \param draggedObjectType The type object concerned | ||||
| ▲ Show 20 Lines • Show All 136 Lines • Show Last 20 Lines | |||||