+ DocDeclStr(
+ virtual bool , IsSupported( const wxDataFormat& format ),
+ "Returns True if the given format is available in the data object(s) on\n"
+ "the clipboard.");
+
+ DocDeclStr(
+ virtual bool , GetData( wxDataObject& data ),
+ "Call this function to fill data with data on the clipboard, if available\n"
+ "in the required format. Returns true on success.");
+
+
+ DocDeclStr(
+ virtual void , Clear(),
+ "Clears data from the clipboard object and also the system's clipboard\n"
+ "if possible.");
+
+
+ DocDeclStr(
+ virtual bool , Flush(),
+ "Flushes the clipboard: this means that the data which is currently on\n"
+ "clipboard will stay available even after the application exits (possibly\n"
+ "eating memory), otherwise the clipboard will be emptied on exit.\n"
+ "Returns False if the operation is unsuccesful for any reason.");
+
+
+ DocDeclStr(
+ virtual void , UsePrimarySelection( bool primary = True ),
+ "On platforms supporting it (the X11 based platforms), selects the so\n"
+ "called PRIMARY SELECTION as the clipboard as opposed to the normal\n"
+ "clipboard, if primary is True.");