]>
Commit | Line | Data |
---|---|---|
7cf83330 | 1 | ///////////////////////////////////////////////////////////////////////////// |
23f681ec | 2 | // Name: wx/msw/dragimag.h |
7cf83330 JS |
3 | // Purpose: wxDragImage class: a kind of a cursor, that can cope |
4 | // with more sophisticated images | |
5 | // Author: Julian Smart | |
6 | // Modified by: | |
7 | // Created: 08/04/99 | |
8 | // RCS-ID: $Id$ | |
9 | // Copyright: (c) Julian Smart | |
65571936 | 10 | // Licence: wxWindows licence |
7cf83330 JS |
11 | ///////////////////////////////////////////////////////////////////////////// |
12 | ||
13 | #ifndef _WX_DRAGIMAG_H_ | |
14 | #define _WX_DRAGIMAG_H_ | |
15 | ||
12028905 | 16 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
7cf83330 JS |
17 | #pragma interface "dragimag.h" |
18 | #endif | |
19 | ||
20 | #include "wx/bitmap.h" | |
21 | #include "wx/icon.h" | |
22 | #include "wx/cursor.h" | |
23 | #include "wx/treectrl.h" | |
24 | #include "wx/listctrl.h" | |
25 | ||
aa2d25a5 JS |
26 | // If 1, use a simple wxCursor instead of ImageList_SetDragCursorImage |
27 | #define wxUSE_SIMPLER_DRAGIMAGE 0 | |
6ea5c52d | 28 | |
7cf83330 JS |
29 | /* |
30 | To use this class, create a wxDragImage when you start dragging, for example: | |
31 | ||
32 | void MyTreeCtrl::OnBeginDrag(wxTreeEvent& event) | |
33 | { | |
34 | #ifdef __WXMSW__ | |
77ffb593 | 35 | ::UpdateWindow((HWND) GetHWND()); // We need to implement this in wxWidgets |
7cf83330 JS |
36 | #endif |
37 | ||
38 | CaptureMouse(); | |
39 | ||
40 | m_dragImage = new wxDragImage(* this, itemId); | |
41 | m_dragImage->BeginDrag(wxPoint(0, 0), this); | |
42 | m_dragImage->Move(pt, this); | |
43 | m_dragImage->Show(this); | |
44 | ... | |
45 | } | |
46 | ||
47 | In your OnMouseMove function, hide the image, do any display updating required, | |
48 | then move and show the image again: | |
49 | ||
50 | void MyTreeCtrl::OnMouseMove(wxMouseEvent& event) | |
51 | { | |
52 | if (m_dragMode == MY_TREE_DRAG_NONE) | |
53 | { | |
54 | event.Skip(); | |
55 | return; | |
56 | } | |
57 | ||
58 | // Prevent screen corruption by hiding the image | |
59 | if (m_dragImage) | |
60 | m_dragImage->Hide(this); | |
61 | ||
62 | // Do some updating of the window, such as highlighting the drop target | |
63 | ... | |
64 | ||
65 | #ifdef __WXMSW__ | |
66 | if (updateWindow) | |
67 | ::UpdateWindow((HWND) GetHWND()); | |
68 | #endif | |
69 | ||
70 | // Move and show the image again | |
71 | m_dragImage->Move(event.GetPosition(), this); | |
72 | m_dragImage->Show(this); | |
73 | } | |
74 | ||
75 | Eventually we end the drag and delete the drag image. | |
76 | ||
77 | void MyTreeCtrl::OnLeftUp(wxMouseEvent& event) | |
78 | { | |
79 | ... | |
80 | ||
81 | // End the drag and delete the drag image | |
82 | if (m_dragImage) | |
83 | { | |
84 | m_dragImage->EndDrag(this); | |
85 | delete m_dragImage; | |
86 | m_dragImage = NULL; | |
87 | } | |
88 | ReleaseMouse(); | |
89 | } | |
90 | */ | |
91 | ||
92 | /* | |
93 | Notes for Unix version: | |
94 | Can we simply use cursors instead, creating a cursor dynamically, setting it into the window | |
95 | in BeginDrag, and restoring the old cursor in EndDrag? | |
96 | For a really bog-standard implementation, we could simply use a normal dragging cursor | |
97 | and ignore the image. | |
98 | */ | |
99 | ||
100 | /* | |
101 | * wxDragImage | |
102 | */ | |
103 | ||
104 | class WXDLLEXPORT wxDragImage: public wxObject | |
105 | { | |
7cf83330 | 106 | public: |
23f681ec | 107 | |
7cf83330 JS |
108 | // Ctors & dtor |
109 | //////////////////////////////////////////////////////////////////////////// | |
110 | ||
111 | wxDragImage(); | |
aa2d25a5 JS |
112 | wxDragImage(const wxBitmap& image, const wxCursor& cursor = wxNullCursor) |
113 | { | |
114 | Init(); | |
115 | ||
116 | Create(image, cursor); | |
117 | } | |
118 | ||
119 | // Deprecated form of the above | |
120 | wxDragImage(const wxBitmap& image, const wxCursor& cursor, const wxPoint& cursorHotspot) | |
7cf83330 | 121 | { |
68be9f09 JS |
122 | Init(); |
123 | ||
6ea5c52d | 124 | Create(image, cursor, cursorHotspot); |
7cf83330 | 125 | } |
aa2d25a5 JS |
126 | |
127 | wxDragImage(const wxIcon& image, const wxCursor& cursor = wxNullCursor) | |
128 | { | |
129 | Init(); | |
130 | ||
131 | Create(image, cursor); | |
132 | } | |
133 | ||
134 | // Deprecated form of the above | |
135 | wxDragImage(const wxIcon& image, const wxCursor& cursor, const wxPoint& cursorHotspot) | |
7cf83330 | 136 | { |
68be9f09 JS |
137 | Init(); |
138 | ||
6ea5c52d | 139 | Create(image, cursor, cursorHotspot); |
7cf83330 | 140 | } |
aa2d25a5 JS |
141 | |
142 | wxDragImage(const wxString& str, const wxCursor& cursor = wxNullCursor) | |
143 | { | |
144 | Init(); | |
145 | ||
146 | Create(str, cursor); | |
147 | } | |
148 | ||
149 | // Deprecated form of the above | |
150 | wxDragImage(const wxString& str, const wxCursor& cursor, const wxPoint& cursorHotspot) | |
7cf83330 | 151 | { |
68be9f09 JS |
152 | Init(); |
153 | ||
6ea5c52d | 154 | Create(str, cursor, cursorHotspot); |
7cf83330 | 155 | } |
aa2d25a5 | 156 | |
3080bf59 | 157 | #if wxUSE_TREECTRL |
7cf83330 JS |
158 | wxDragImage(const wxTreeCtrl& treeCtrl, wxTreeItemId& id) |
159 | { | |
68be9f09 JS |
160 | Init(); |
161 | ||
7cf83330 JS |
162 | Create(treeCtrl, id); |
163 | } | |
3080bf59 | 164 | #endif |
aa2d25a5 | 165 | |
3080bf59 | 166 | #if wxUSE_LISTCTRL |
7cf83330 JS |
167 | wxDragImage(const wxListCtrl& listCtrl, long id) |
168 | { | |
68be9f09 JS |
169 | Init(); |
170 | ||
7cf83330 JS |
171 | Create(listCtrl, id); |
172 | } | |
3080bf59 | 173 | #endif |
aa2d25a5 | 174 | |
7cf83330 | 175 | ~wxDragImage(); |
23f681ec | 176 | |
7cf83330 JS |
177 | // Attributes |
178 | //////////////////////////////////////////////////////////////////////////// | |
23f681ec | 179 | |
7cf83330 JS |
180 | // Operations |
181 | //////////////////////////////////////////////////////////////////////////// | |
23f681ec | 182 | |
7cf83330 | 183 | // Create a drag image from a bitmap and optional cursor |
aa2d25a5 JS |
184 | bool Create(const wxBitmap& image, const wxCursor& cursor = wxNullCursor); |
185 | bool Create(const wxBitmap& image, const wxCursor& cursor, const wxPoint& WXUNUSED(cursorHotspot)) | |
186 | { | |
187 | wxLogDebug(wxT("wxDragImage::Create: use of a cursor hotspot is now deprecated. Please omit this argument.")); | |
188 | return Create(image, cursor); | |
189 | } | |
23f681ec | 190 | |
7cf83330 | 191 | // Create a drag image from an icon and optional cursor |
aa2d25a5 JS |
192 | bool Create(const wxIcon& image, const wxCursor& cursor = wxNullCursor); |
193 | bool Create(const wxIcon& image, const wxCursor& cursor, const wxPoint& WXUNUSED(cursorHotspot)) | |
194 | { | |
195 | wxLogDebug(wxT("wxDragImage::Create: use of a cursor hotspot is now deprecated. Please omit this argument.")); | |
196 | return Create(image, cursor); | |
197 | } | |
23f681ec | 198 | |
7cf83330 | 199 | // Create a drag image from a string and optional cursor |
aa2d25a5 JS |
200 | bool Create(const wxString& str, const wxCursor& cursor = wxNullCursor); |
201 | bool Create(const wxString& str, const wxCursor& cursor, const wxPoint& WXUNUSED(cursorHotspot)) | |
202 | { | |
203 | wxLogDebug(wxT("wxDragImage::Create: use of a cursor hotspot is now deprecated. Please omit this argument.")); | |
204 | return Create(str, cursor); | |
205 | } | |
7cf83330 | 206 | |
3080bf59 | 207 | #if wxUSE_TREECTRL |
7cf83330 JS |
208 | // Create a drag image for the given tree control item |
209 | bool Create(const wxTreeCtrl& treeCtrl, wxTreeItemId& id); | |
3080bf59 | 210 | #endif |
7cf83330 | 211 | |
3080bf59 | 212 | #if wxUSE_LISTCTRL |
7cf83330 JS |
213 | // Create a drag image for the given list control item |
214 | bool Create(const wxListCtrl& listCtrl, long id); | |
3080bf59 | 215 | #endif |
7cf83330 JS |
216 | |
217 | // Begin drag. hotspot is the location of the drag position relative to the upper-left | |
218 | // corner of the image. | |
d71cc120 | 219 | bool BeginDrag(const wxPoint& hotspot, wxWindow* window, bool fullScreen = false, wxRect* rect = (wxRect*) NULL); |
68be9f09 JS |
220 | |
221 | // Begin drag. hotspot is the location of the drag position relative to the upper-left | |
222 | // corner of the image. This is full screen only. fullScreenRect gives the | |
223 | // position of the window on the screen, to restrict the drag to. | |
224 | bool BeginDrag(const wxPoint& hotspot, wxWindow* window, wxWindow* fullScreenRect); | |
23f681ec | 225 | |
7cf83330 | 226 | // End drag |
68be9f09 | 227 | bool EndDrag(); |
23f681ec | 228 | |
7cf83330 JS |
229 | // Move the image: call from OnMouseMove. Pt is in window client coordinates if window |
230 | // is non-NULL, or in screen coordinates if NULL. | |
68be9f09 | 231 | bool Move(const wxPoint& pt); |
7cf83330 JS |
232 | |
233 | // Show the image | |
68be9f09 | 234 | bool Show(); |
7cf83330 JS |
235 | |
236 | // Hide the image | |
68be9f09 | 237 | bool Hide(); |
23f681ec | 238 | |
7cf83330 JS |
239 | // Implementation |
240 | //////////////////////////////////////////////////////////////////////////// | |
23f681ec | 241 | |
68be9f09 JS |
242 | // Initialize variables |
243 | void Init(); | |
244 | ||
7cf83330 | 245 | // Returns the native image list handle |
23f681ec VZ |
246 | WXHIMAGELIST GetHIMAGELIST() const { return m_hImageList; } |
247 | ||
6ea5c52d | 248 | #if !wxUSE_SIMPLER_DRAGIMAGE |
68be9f09 JS |
249 | // Returns the native image list handle for the cursor |
250 | WXHIMAGELIST GetCursorHIMAGELIST() const { return m_hCursorImageList; } | |
6ea5c52d | 251 | #endif |
68be9f09 | 252 | |
7cf83330 JS |
253 | protected: |
254 | WXHIMAGELIST m_hImageList; | |
6ea5c52d JS |
255 | |
256 | #if wxUSE_SIMPLER_DRAGIMAGE | |
257 | wxCursor m_oldCursor; | |
258 | #else | |
68be9f09 | 259 | WXHIMAGELIST m_hCursorImageList; |
6ea5c52d JS |
260 | #endif |
261 | ||
7cf83330 | 262 | wxCursor m_cursor; |
aa2d25a5 | 263 | // wxPoint m_cursorHotspot; // Obsolete |
7cf83330 | 264 | wxPoint m_position; |
68be9f09 JS |
265 | wxWindow* m_window; |
266 | wxRect m_boundingRect; | |
267 | bool m_fullScreen; | |
23f681ec VZ |
268 | |
269 | private: | |
270 | DECLARE_DYNAMIC_CLASS(wxDragImage) | |
22f3361e | 271 | DECLARE_NO_COPY_CLASS(wxDragImage) |
7cf83330 JS |
272 | }; |
273 | ||
274 | #endif | |
275 | // _WX_DRAGIMAG_H_ |