- wxClipboard
Default constructor.
- AddData
Call this function to add the data object to the clipboard.
- Clear
Clears the global clipboard object and the system's clipboard if possible.
- Close
Call this function to close the clipboard, having opened it with Open().
- Flush
Flushes the clipboard: this means that the data which is currently on clipboard will stay available even after the application exits (possibly eating memory), otherwise the clipboard will be emptied on exit.
- GetData
Call this function to fill data with data on the clipboard, if available in the required format.
- IsOpened
Returns true if the clipboard has been opened.
- IsSupported
Returns true if there is data which matches the data format of the given data object currently available on the clipboard.
- IsUsingPrimarySelection
Returns true if we are using the primary selection, false if clipboard one.
- Open
Call this function to open the clipboard before calling SetData() and GetData().
- SetData
Call this function to set the data object to the clipboard.
- UsePrimarySelection
On platforms supporting it (all X11-based ports), wxClipboard uses the CLIPBOARD X11 selection by default.