1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/x11/clipbrd.h
3 // Purpose: Clipboard functionality.
4 // Author: Robert Roebling
6 // Copyright: (c) Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 #ifndef _WX_X11_CLIPBRD_H_
11 #define _WX_X11_CLIPBRD_H_
15 #include "wx/object.h"
17 #include "wx/dataobj.h"
18 #include "wx/control.h"
19 #include "wx/module.h"
21 // ----------------------------------------------------------------------------
23 // ----------------------------------------------------------------------------
25 class WXDLLIMPEXP_CORE wxClipboard
: public wxClipboardBase
29 virtual ~wxClipboard();
31 // open the clipboard before SetData() and GetData()
34 // close the clipboard after SetData() and GetData()
37 // query whether the clipboard is opened
38 virtual bool IsOpened() const;
40 // set the clipboard data. all other formats will be deleted.
41 virtual bool SetData( wxDataObject
*data
);
43 // add to the clipboard data.
44 virtual bool AddData( wxDataObject
*data
);
46 // ask if data in correct format is available
47 virtual bool IsSupported( const wxDataFormat
& format
);
49 // fill data with data on the clipboard (if available)
50 virtual bool GetData( wxDataObject
& data
);
52 // clears wxTheClipboard and the system's clipboard if possible
55 // implementation from now on
58 bool m_ownsPrimarySelection
;
61 WXWindow m_clipboardWidget
; /* for getting and offering data */
62 WXWindow m_targetsWidget
; /* for getting list of supported formats */
63 bool m_waiting
; /* querying data or formats is asynchronous */
65 bool m_formatSupported
;
66 Atom m_targetRequested
;
67 wxDataObject
*m_receivedData
;
70 DECLARE_DYNAMIC_CLASS(wxClipboard
)
73 #endif // wxUSE_CLIPBOARD
75 #endif // _WX_X11_CLIPBRD_H_