Changeset View
Changeset View
Standalone View
Standalone View
intern/ghost/intern/GHOST_System.h
| Show First 20 Lines • Show All 311 Lines • ▼ Show 20 Lines | #endif | ||||
| /** | /** | ||||
| * Put data to the Clipboard | * Put data to the Clipboard | ||||
| * \param buffer The buffer to copy to the clipboard | * \param buffer The buffer to copy to the clipboard | ||||
| * \param selection The clipboard to copy too only used on X11 | * \param selection The clipboard to copy too only used on X11 | ||||
| */ | */ | ||||
| virtual void putClipboard(GHOST_TInt8 *buffer, bool selection) const = 0; | virtual void putClipboard(GHOST_TInt8 *buffer, bool selection) const = 0; | ||||
| /** | |||||
| * Show a system message box | |||||
| * \param title The title of the message box | |||||
| * \param message The message to display | |||||
| * \param link An optional hyperlink | |||||
| * \param dialog_options Options how to display the message | |||||
| */ | |||||
| virtual GHOST_TSuccess showMessageBox(const char * /*title*/, | |||||
| const char * /*message*/, | |||||
| const char * /*link*/, | |||||
| GHOST_DialogOptions /*dialog_options*/) const | |||||
| { | |||||
| return GHOST_kFailure; | |||||
| }; | |||||
| protected: | protected: | ||||
| /** | /** | ||||
| * Initialize the system. | * Initialize the system. | ||||
| * \return Indication of success. | * \return Indication of success. | ||||
| */ | */ | ||||
| virtual GHOST_TSuccess init(); | virtual GHOST_TSuccess init(); | ||||
| /** | /** | ||||
| ▲ Show 20 Lines • Show All 67 Lines • Show Last 20 Lines | |||||