Changeset View
Changeset View
Standalone View
Standalone View
intern/ghost/GHOST_ISystem.h
| Show First 20 Lines • Show All 429 Lines • ▼ Show 20 Lines | #endif | ||||
| */ | */ | ||||
| virtual GHOST_TUns8 *getClipboard(bool selection) const = 0; | virtual GHOST_TUns8 *getClipboard(bool selection) const = 0; | ||||
| /** | /** | ||||
| * Put data to the Clipboard | * Put data to the Clipboard | ||||
| */ | */ | ||||
| virtual void putClipboard(GHOST_TInt8 *buffer, bool selection) const = 0; | virtual void putClipboard(GHOST_TInt8 *buffer, bool selection) const = 0; | ||||
| /*************************************************************************************** | |||||
| * System Message Box. | |||||
| ***************************************************************************************/ | |||||
| /** | |||||
| * 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 = 0; | |||||
| protected: | protected: | ||||
| /** | /** | ||||
| * Initialize the system. | * Initialize the system. | ||||
| * \return Indication of success. | * \return Indication of success. | ||||
| */ | */ | ||||
| virtual GHOST_TSuccess init() = 0; | virtual GHOST_TSuccess init() = 0; | ||||
| /** | /** | ||||
| Show All 14 Lines | |||||