]>
Commit | Line | Data |
---|---|---|
dc86cb34 RR |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: clipboard.h | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
5 | // Id: $Id$ | |
6 | // Copyright: (c) 1998 Robert Roebling | |
26f86486 | 7 | // Licence: wxWindows licence |
dc86cb34 RR |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
10 | ||
11 | #ifndef __GTKCLIPBOARDH__ | |
12 | #define __GTKCLIPBOARDH__ | |
13 | ||
14 | #ifdef __GNUG__ | |
15 | #pragma interface | |
16 | #endif | |
17 | ||
06cfab17 | 18 | #if wxUSE_CLIPBOARD |
ac57418f | 19 | |
dc86cb34 RR |
20 | #include "wx/object.h" |
21 | #include "wx/list.h" | |
8b53e5a2 | 22 | #include "wx/dataobj.h" |
dc86cb34 | 23 | #include "wx/control.h" |
b527aac5 | 24 | #include "wx/module.h" |
dc86cb34 | 25 | |
e1ee679c | 26 | // ---------------------------------------------------------------------------- |
dc86cb34 | 27 | // wxClipboard |
e1ee679c | 28 | // ---------------------------------------------------------------------------- |
dc86cb34 | 29 | |
e1ee679c | 30 | class wxClipboard : public wxClipboardBase |
dc86cb34 | 31 | { |
dc86cb34 | 32 | public: |
26f86486 VZ |
33 | wxClipboard(); |
34 | ~wxClipboard(); | |
35 | ||
36 | // open the clipboard before SetData() and GetData() | |
37 | virtual bool Open(); | |
38 | ||
39 | // close the clipboard after SetData() and GetData() | |
40 | virtual void Close(); | |
41 | ||
42 | // set the clipboard data. all other formats will be deleted. | |
43 | virtual bool SetData( wxDataObject *data ); | |
44 | ||
45 | // add to the clipboard data. | |
46 | virtual bool AddData( wxDataObject *data ); | |
47 | ||
48 | // ask if data in correct format is available | |
e1ee679c | 49 | virtual bool IsSupported( const wxDataFormat& format ); |
26f86486 VZ |
50 | |
51 | // fill data with data on the clipboard (if available) | |
e1ee679c | 52 | virtual bool GetData( wxDataObject& data ); |
26f86486 VZ |
53 | |
54 | // clears wxTheClipboard and the system's clipboard if possible | |
55 | virtual void Clear(); | |
56 | ||
e1ee679c VZ |
57 | // If primary == TRUE, use primary selection in all further ops, |
58 | // primary == FALSE resets it. | |
59 | virtual void UsePrimarySelection(bool primary = TRUE) | |
60 | { m_usePrimary = primary; } | |
e839ce8d | 61 | |
e1ee679c | 62 | // implementation from now on |
26f86486 | 63 | bool m_open; |
26f86486 VZ |
64 | bool m_ownsClipboard; |
65 | bool m_ownsPrimarySelection; | |
1dd989e1 | 66 | wxDataObject *m_data; |
26f86486 | 67 | |
034be888 RR |
68 | GtkWidget *m_clipboardWidget; /* for getting and offering data */ |
69 | GtkWidget *m_targetsWidget; /* for getting list of supported formats */ | |
70 | bool m_waiting; /* querying data or formats is asynchronous */ | |
26f86486 VZ |
71 | |
72 | bool m_formatSupported; | |
73 | GdkAtom m_targetRequested; | |
e839ce8d | 74 | bool m_usePrimary; |
e1ee679c | 75 | wxDataObject *m_receivedData; |
b527aac5 | 76 | |
738f9e5a | 77 | private: |
e1ee679c | 78 | DECLARE_DYNAMIC_CLASS(wxClipboard) |
dc86cb34 RR |
79 | }; |
80 | ||
ac57418f | 81 | #endif |
ac57418f | 82 | // wxUSE_CLIPBOARD |
b527aac5 | 83 | |
dc86cb34 RR |
84 | #endif |
85 | // __GTKCLIPBOARDH__ |