]>
Commit | Line | Data |
---|---|---|
e1ee679c VZ |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/dnd.h | |
3 | // Purpose: Drag and drop classes declarations | |
4 | // Author: Vadim Zeitlin, Robert Roebling | |
5 | // Modified by: | |
6 | // Created: 26.05.99 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) wxWindows Team | |
371a5b4e | 9 | // Licence: wxWindows licence |
e1ee679c VZ |
10 | /////////////////////////////////////////////////////////////////////////////// |
11 | ||
34138703 JS |
12 | #ifndef _WX_DND_H_BASE_ |
13 | #define _WX_DND_H_BASE_ | |
c801d85f | 14 | |
12028905 | 15 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
510fc784 RR |
16 | #pragma interface "dndbase.h" |
17 | #endif | |
18 | ||
e1ee679c VZ |
19 | #include "wx/defs.h" |
20 | ||
21 | #if wxUSE_DRAG_AND_DROP | |
22 | ||
3f480da3 | 23 | #include "wx/dataobj.h" |
974e8d94 | 24 | #include "wx/cursor.h" |
e1ee679c VZ |
25 | |
26 | // ---------------------------------------------------------------------------- | |
27 | // constants | |
28 | // ---------------------------------------------------------------------------- | |
29 | ||
2245b2b2 VZ |
30 | // flags for wxDropSource::DoDragDrop() |
31 | // | |
32 | // NB: wxDrag_CopyOnly must be 0 (== FALSE) and wxDrag_AllowMove must be 1 | |
33 | // (== TRUE) for compatibility with the old DoDragDrop(bool) method! | |
34 | enum | |
35 | { | |
36 | wxDrag_CopyOnly = 0, // allow only copying | |
37 | wxDrag_AllowMove = 1, // allow moving (copying is always allowed) | |
38 | wxDrag_DefaultMove = 3 // the default operation is move, not copy | |
39 | }; | |
40 | ||
e1ee679c VZ |
41 | // result of wxDropSource::DoDragDrop() call |
42 | enum wxDragResult | |
43 | { | |
44 | wxDragError, // error prevented the d&d operation from completing | |
45 | wxDragNone, // drag target didn't accept the data | |
46 | wxDragCopy, // the data was successfully copied | |
47 | wxDragMove, // the data was successfully moved (MSW only) | |
e6d318c2 | 48 | wxDragLink, // operation is a drag-link |
e1ee679c VZ |
49 | wxDragCancel // the operation was cancelled by user (not an error) |
50 | }; | |
51 | ||
8ee9d618 VZ |
52 | inline WXDLLEXPORT bool wxIsDragResultOk(wxDragResult res) |
53 | { | |
e6d318c2 | 54 | return res == wxDragCopy || res == wxDragMove || res == wxDragLink; |
8ee9d618 VZ |
55 | } |
56 | ||
e1ee679c VZ |
57 | // ---------------------------------------------------------------------------- |
58 | // wxDropSource is the object you need to create (and call DoDragDrop on it) | |
59 | // to initiate a drag-and-drop operation | |
60 | // ---------------------------------------------------------------------------- | |
61 | ||
62 | class WXDLLEXPORT wxDropSourceBase | |
63 | { | |
64 | public: | |
2d93e133 VZ |
65 | wxDropSourceBase(const wxCursor &cursorCopy = wxNullCursor, |
66 | const wxCursor &cursorMove = wxNullCursor, | |
67 | const wxCursor &cursorStop = wxNullCursor) | |
68 | : m_cursorCopy(cursorCopy), | |
69 | m_cursorMove(cursorMove), | |
70 | m_cursorStop(cursorStop) | |
71 | { m_data = (wxDataObject *)NULL; } | |
e1ee679c VZ |
72 | virtual ~wxDropSourceBase() { } |
73 | ||
74 | // set the data which is transfered by drag and drop | |
6dddc146 | 75 | void SetData(wxDataObject& data) |
97c79de2 | 76 | { m_data = &data; } |
6dddc146 | 77 | |
97c79de2 RR |
78 | wxDataObject *GetDataObject() |
79 | { return m_data; } | |
e1ee679c | 80 | |
2d93e133 VZ |
81 | // set the icon corresponding to given drag result |
82 | void SetCursor(wxDragResult res, const wxCursor& cursor) | |
83 | { | |
84 | if ( res == wxDragCopy ) | |
85 | m_cursorCopy = cursor; | |
86 | else if ( res == wxDragMove ) | |
87 | m_cursorMove = cursor; | |
88 | else | |
89 | m_cursorStop = cursor; | |
90 | } | |
91 | ||
e1ee679c VZ |
92 | // start drag action, see enum wxDragResult for return value description |
93 | // | |
2245b2b2 VZ |
94 | // if flags contains wxDrag_AllowMove, moving (and only copying) data is |
95 | // allowed, if it contains wxDrag_DefaultMove (which includes the previous | |
96 | // flag), it is even the default operation | |
97 | virtual wxDragResult DoDragDrop(int flags = wxDrag_CopyOnly) = 0; | |
e1ee679c VZ |
98 | |
99 | // override to give feedback depending on the current operation result | |
2d93e133 VZ |
100 | // "effect" and return TRUE if you did something, FALSE to let the library |
101 | // give the default feedback | |
102 | virtual bool GiveFeedback(wxDragResult WXUNUSED(effect)) { return FALSE; } | |
103 | ||
104 | protected: | |
105 | const wxCursor& GetCursor(wxDragResult res) const | |
e1ee679c | 106 | { |
2d93e133 VZ |
107 | if ( res == wxDragCopy ) |
108 | return m_cursorCopy; | |
109 | else if ( res == wxDragMove ) | |
110 | return m_cursorMove; | |
111 | else | |
112 | return m_cursorStop; | |
e1ee679c VZ |
113 | } |
114 | ||
2245b2b2 | 115 | // the data we're dragging |
e1ee679c | 116 | wxDataObject *m_data; |
2d93e133 VZ |
117 | |
118 | // the cursors to use for feedback | |
2245b2b2 VZ |
119 | wxCursor m_cursorCopy, |
120 | m_cursorMove, | |
121 | m_cursorStop; | |
22f3361e VZ |
122 | |
123 | DECLARE_NO_COPY_CLASS(wxDropSourceBase) | |
e1ee679c VZ |
124 | }; |
125 | ||
126 | // ---------------------------------------------------------------------------- | |
127 | // wxDropTarget should be associated with a window if it wants to be able to | |
9e2896e5 VZ |
128 | // receive data via drag and drop. |
129 | // | |
130 | // To use this class, you should derive from wxDropTarget and implement | |
131 | // OnData() pure virtual method. You may also wish to override OnDrop() if you | |
132 | // want to accept the data only inside some region of the window (this may | |
133 | // avoid having to copy the data to this application which happens only when | |
134 | // OnData() is called) | |
e1ee679c VZ |
135 | // ---------------------------------------------------------------------------- |
136 | ||
137 | class WXDLLEXPORT wxDropTargetBase | |
138 | { | |
139 | public: | |
140 | // ctor takes a pointer to heap-allocated wxDataObject which will be owned | |
141 | // by wxDropTarget and deleted by it automatically. If you don't give it | |
142 | // here, you can use SetDataObject() later. | |
b068c4e8 | 143 | wxDropTargetBase(wxDataObject *dataObject = (wxDataObject*)NULL) |
e1ee679c VZ |
144 | { m_dataObject = dataObject; } |
145 | // dtor deletes our data object | |
146 | virtual ~wxDropTargetBase() | |
147 | { delete m_dataObject; } | |
148 | ||
149 | // get/set the associated wxDataObject | |
150 | wxDataObject *GetDataObject() const | |
151 | { return m_dataObject; } | |
152 | void SetDataObject(wxDataObject *dataObject) | |
6dddc146 DW |
153 | { if (m_dataObject) delete m_dataObject; |
154 | m_dataObject = dataObject; } | |
e1ee679c | 155 | |
c9057ae1 VZ |
156 | // these functions are called when data is moved over position (x, y) and |
157 | // may return either wxDragCopy, wxDragMove or wxDragNone depending on | |
158 | // what would happen if the data were dropped here. | |
159 | // | |
160 | // the last parameter is what would happen by default and is determined by | |
161 | // the platform-specific logic (for example, under Windows it's wxDragCopy | |
162 | // if Ctrl key is pressed and wxDragMove otherwise) except that it will | |
163 | // always be wxDragNone if the carried data is in an unsupported format. | |
164 | ||
165 | // called when the mouse enters the window (only once until OnLeave()) | |
166 | virtual wxDragResult OnEnter(wxCoord x, wxCoord y, wxDragResult def) | |
167 | { return OnDragOver(x, y, def); } | |
168 | ||
169 | // called when the mouse moves in the window - shouldn't take long to | |
170 | // execute or otherwise mouse movement would be too slow | |
171 | virtual wxDragResult OnDragOver(wxCoord WXUNUSED(x), wxCoord WXUNUSED(y), | |
172 | wxDragResult def) | |
173 | { return def; } | |
6dddc146 | 174 | |
c9057ae1 VZ |
175 | // called when mouse leaves the window: might be used to remove the |
176 | // feedback which was given in OnEnter() | |
177 | virtual void OnLeave() { } | |
6dddc146 | 178 | |
e1ee679c VZ |
179 | // this function is called when data is dropped at position (x, y) - if it |
180 | // returns TRUE, OnData() will be called immediately afterwards which will | |
181 | // allow to retrieve the data dropped. | |
182 | virtual bool OnDrop(wxCoord x, wxCoord y) = 0; | |
183 | ||
184 | // called after OnDrop() returns TRUE: you will usually just call | |
185 | // GetData() from here and, probably, also refresh something to update the | |
8ee9d618 VZ |
186 | // new data and, finally, return the code indicating how did the operation |
187 | // complete (returning default value in case of success and wxDragError on | |
188 | // failure is usually ok) | |
189 | virtual wxDragResult OnData(wxCoord x, wxCoord y, wxDragResult def) = 0; | |
e1ee679c VZ |
190 | |
191 | // may be called *only* from inside OnData() and will fill m_dataObject | |
192 | // with the data from the drop source if it returns TRUE | |
193 | virtual bool GetData() = 0; | |
194 | ||
195 | protected: | |
196 | wxDataObject *m_dataObject; | |
22f3361e VZ |
197 | |
198 | DECLARE_NO_COPY_CLASS(wxDropTargetBase) | |
e1ee679c VZ |
199 | }; |
200 | ||
201 | // ---------------------------------------------------------------------------- | |
202 | // include platform dependent class declarations | |
203 | // ---------------------------------------------------------------------------- | |
204 | ||
205 | #if defined(__WXMSW__) | |
e1ee679c VZ |
206 | #include "wx/msw/ole/dropsrc.h" |
207 | #include "wx/msw/ole/droptgt.h" | |
2049ba38 | 208 | #elif defined(__WXMOTIF__) |
e1ee679c | 209 | #include "wx/motif/dnd.h" |
83df96d6 JS |
210 | #elif defined(__WXX11__) |
211 | #include "wx/x11/dnd.h" | |
2049ba38 | 212 | #elif defined(__WXGTK__) |
e1ee679c | 213 | #include "wx/gtk/dnd.h" |
34138703 | 214 | #elif defined(__WXMAC__) |
e1ee679c | 215 | #include "wx/mac/dnd.h" |
1777b9bb | 216 | #elif defined(__WXPM__) |
e1ee679c | 217 | #include "wx/os2/dnd.h" |
c801d85f KB |
218 | #endif |
219 | ||
8ee9d618 VZ |
220 | // ---------------------------------------------------------------------------- |
221 | // standard wxDropTarget implementations (implemented in common/dobjcmn.cpp) | |
222 | // ---------------------------------------------------------------------------- | |
223 | ||
224 | // A simple wxDropTarget derived class for text data: you only need to | |
225 | // override OnDropText() to get something working | |
226 | class WXDLLEXPORT wxTextDropTarget : public wxDropTarget | |
227 | { | |
228 | public: | |
229 | wxTextDropTarget(); | |
230 | ||
231 | virtual bool OnDropText(wxCoord x, wxCoord y, const wxString& text) = 0; | |
232 | ||
233 | virtual wxDragResult OnData(wxCoord x, wxCoord y, wxDragResult def); | |
fc7a2a60 VZ |
234 | |
235 | private: | |
236 | DECLARE_NO_COPY_CLASS(wxTextDropTarget) | |
8ee9d618 VZ |
237 | }; |
238 | ||
239 | // A drop target which accepts files (dragged from File Manager or Explorer) | |
240 | class WXDLLEXPORT wxFileDropTarget : public wxDropTarget | |
241 | { | |
242 | public: | |
243 | wxFileDropTarget(); | |
244 | ||
245 | // parameters are the number of files and the array of file names | |
246 | virtual bool OnDropFiles(wxCoord x, wxCoord y, | |
247 | const wxArrayString& filenames) = 0; | |
248 | ||
249 | virtual wxDragResult OnData(wxCoord x, wxCoord y, wxDragResult def); | |
fc7a2a60 VZ |
250 | |
251 | private: | |
252 | DECLARE_NO_COPY_CLASS(wxFileDropTarget) | |
8ee9d618 VZ |
253 | }; |
254 | ||
e1ee679c VZ |
255 | #endif // wxUSE_DRAG_AND_DROP |
256 | ||
257 | #endif // _WX_DND_H_BASE_ |