/////////////////////////////////////////////////////////////////////////////
-// Name: wx/gtk/clipboard.h
+// Name: wx/gtk/clipbrd.h
// Purpose: wxClipboard for wxGTK
// Author: Robert Roebling, Vadim Zeitlin
-// Id: $Id$
// Copyright: (c) 1998 Robert Roebling
// (c) 2007 Vadim Zeitlin
// Licence: wxWindows licence
// get our clipboard item (depending on m_usePrimary value)
GdkAtom GTKGetClipboardAtom() const;
- // get the data object currently being used
- wxDataObject *GTKGetDataObject() { return Data(); }
+ // get the data object currently being requested
+ wxDataObject *GTKGetDataObject( GdkAtom atom );
// clear the data for the given clipboard kind
void GTKClearData(Kind kind);
GtkWidget *m_clipboardWidget; // for getting and offering data
GtkWidget *m_targetsWidget; // for getting list of supported formats
+ // ID of the connection to "selection_get" signal, initially 0.
+ unsigned long m_idSelectionGetHandler;
+
bool m_open;
bool m_formatSupported;