]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/clipbrd.h
compilation fixes
[wxWidgets.git] / include / wx / gtk / clipbrd.h
index 913379cac7631cd26f89afb2ce9434d1f7d83165..508a3b0dd7fe2c5237dfd7fe7417a5d7aac4e9ab 100644 (file)
@@ -63,10 +63,10 @@ public:
     virtual bool AddData( wxDataObject *data );
 
     // ask if data in correct format is available
-    virtual bool IsSupported( wxDataObject &data );
+    virtual bool IsSupported( wxDataFormat format );
 
     // fill data with data on the clipboard (if available)
-    virtual bool GetData( wxDataObject &data );
+    virtual bool GetData( wxDataObject *data );
 
     // clears wxTheClipboard and the system's clipboard if possible
     virtual void Clear();
@@ -79,7 +79,9 @@ public:
     bool              m_ownsPrimarySelection;
 
     wxDataBroker     *m_dataBroker;
-    GtkWidget        *m_clipboardWidget;
+    GtkWidget        *m_clipboardWidget;  /* for getting and offering data */
+    GtkWidget        *m_targetsWidget;    /* for getting list of supported formats */
+    bool              m_waiting;          /* querying data or formats is asynchronous */
 
     bool              m_formatSupported;
     GdkAtom           m_targetRequested;