1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/x11/clipbrd.h
3 // Purpose: Clipboard functionality.
4 // Author: Robert Roebling
7 // Copyright: (c) Robert Roebling
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_X11_CLIPBRD_H_
12 #define _WX_X11_CLIPBRD_H_
16 #include "wx/object.h"
18 #include "wx/dataobj.h"
19 #include "wx/control.h"
20 #include "wx/module.h"
22 // ----------------------------------------------------------------------------
24 // ----------------------------------------------------------------------------
26 class WXDLLIMPEXP_CORE wxClipboard
: public wxClipboardBase
30 virtual ~wxClipboard();
32 // open the clipboard before SetData() and GetData()
35 // close the clipboard after SetData() and GetData()
38 // query whether the clipboard is opened
39 virtual bool IsOpened() const;
41 // set the clipboard data. all other formats will be deleted.
42 virtual bool SetData( wxDataObject
*data
);
44 // add to the clipboard data.
45 virtual bool AddData( wxDataObject
*data
);
47 // ask if data in correct format is available
48 virtual bool IsSupported( const wxDataFormat
& format
);
50 // fill data with data on the clipboard (if available)
51 virtual bool GetData( wxDataObject
& data
);
53 // clears wxTheClipboard and the system's clipboard if possible
56 // implementation from now on
59 bool m_ownsPrimarySelection
;
62 WXWindow m_clipboardWidget
; /* for getting and offering data */
63 WXWindow m_targetsWidget
; /* for getting list of supported formats */
64 bool m_waiting
; /* querying data or formats is asynchronous */
66 bool m_formatSupported
;
67 Atom m_targetRequested
;
68 wxDataObject
*m_receivedData
;
71 DECLARE_DYNAMIC_CLASS(wxClipboard
)
74 #endif // wxUSE_CLIPBOARD
76 #endif // _WX_X11_CLIPBRD_H_