-public:
-
- wxClipboard();
- ~wxClipboard();
-
- virtual void SetData( wxDataObject *data );
-
- virtual bool IsSupportedFormat( wxDataFormat format );
- virtual bool ObtainData( wxDataFormat format );
-
- // call these after ObtainData()
- virtual size_t GetDataSize() const;
- virtual void GetDataHere( void *data ) const;
-
- // clears wxTheClipboard and the system's clipboard if possible
- virtual void Clear();
-
- // implementation
-
- wxDataObject *m_data;
- char *m_sentString,
- *m_receivedString;
- void *m_receivedTargets;
- GtkWidget *m_clipboardWidget;
-
- bool m_formatSupported;
- GdkAtom m_targetRequested;
-
- size_t m_receivedSize;
- char *m_receivedData;
-};