1 //////////////////////////////////////////////////////////////////////////////
2 // Name: wx/generic/dragimgg.h
3 // Purpose: wxDragImage class: a kind of a cursor, that can cope
4 // with more sophisticated images
5 // Author: Julian Smart
9 // Copyright: (c) Julian Smart
10 // Licence: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
13 #ifndef _WX_DRAGIMGG_H_
14 #define _WX_DRAGIMGG_H_
16 #include "wx/bitmap.h"
18 #include "wx/cursor.h"
19 #include "wx/treectrl.h"
20 #include "wx/listctrl.h"
22 #include "wx/overlay.h"
25 To use this class, create a wxDragImage when you start dragging, for example:
27 void MyTreeCtrl::OnBeginDrag(wxTreeEvent& event)
30 ::UpdateWindow((HWND) GetHWND()); // We need to implement this in wxWidgets
35 m_dragImage = new wxDragImage(* this, itemId);
36 m_dragImage->BeginDrag(wxPoint(0, 0), this);
37 m_dragImage->Move(pt, this);
38 m_dragImage->Show(this);
42 In your OnMouseMove function, hide the image, do any display updating required,
43 then move and show the image again:
45 void MyTreeCtrl::OnMouseMove(wxMouseEvent& event)
47 if (m_dragMode == MY_TREE_DRAG_NONE)
53 // Prevent screen corruption by hiding the image
55 m_dragImage->Hide(this);
57 // Do some updating of the window, such as highlighting the drop target
62 ::UpdateWindow((HWND) GetHWND());
65 // Move and show the image again
66 m_dragImage->Move(event.GetPosition(), this);
67 m_dragImage->Show(this);
70 Eventually we end the drag and delete the drag image.
72 void MyTreeCtrl::OnLeftUp(wxMouseEvent& event)
76 // End the drag and delete the drag image
79 m_dragImage->EndDrag(this);
91 class WXDLLIMPEXP_CORE wxGenericDragImage
: public wxObject
96 ////////////////////////////////////////////////////////////////////////////
98 wxGenericDragImage(const wxCursor
& cursor
= wxNullCursor
)
104 wxGenericDragImage(const wxBitmap
& image
, const wxCursor
& cursor
= wxNullCursor
)
108 Create(image
, cursor
);
111 wxGenericDragImage(const wxIcon
& image
, const wxCursor
& cursor
= wxNullCursor
)
115 Create(image
, cursor
);
118 wxGenericDragImage(const wxString
& str
, const wxCursor
& cursor
= wxNullCursor
)
125 #if WXWIN_COMPATIBILITY_2_6
126 // don't use in new code, use versions without hot spot parameter
127 wxDEPRECATED( wxGenericDragImage(const wxCursor
& cursor
, const wxPoint
& cursorHotspot
) );
128 wxDEPRECATED( wxGenericDragImage(const wxBitmap
& image
, const wxCursor
& cursor
, const wxPoint
& cursorHotspot
) );
129 wxDEPRECATED( wxGenericDragImage(const wxIcon
& image
, const wxCursor
& cursor
, const wxPoint
& cursorHotspot
) );
130 wxDEPRECATED( wxGenericDragImage(const wxString
& str
, const wxCursor
& cursor
, const wxPoint
& cursorHotspot
) );
131 wxDEPRECATED( bool Create(const wxCursor
& cursor
, const wxPoint
& cursorHotspot
) );
132 wxDEPRECATED( bool Create(const wxBitmap
& image
, const wxCursor
& cursor
, const wxPoint
& cursorHotspot
) );
133 wxDEPRECATED( bool Create(const wxIcon
& image
, const wxCursor
& cursor
, const wxPoint
& cursorHotspot
) );
134 wxDEPRECATED( bool Create(const wxString
& str
, const wxCursor
& cursor
, const wxPoint
& cursorHotspot
) );
135 #endif // WXWIN_COMPATIBILITY_2_6
138 wxGenericDragImage(const wxTreeCtrl
& treeCtrl
, wxTreeItemId
& id
)
142 Create(treeCtrl
, id
);
147 wxGenericDragImage(const wxListCtrl
& listCtrl
, long id
)
151 Create(listCtrl
, id
);
155 virtual ~wxGenericDragImage();
158 ////////////////////////////////////////////////////////////////////////////
160 #ifdef wxHAS_NATIVE_OVERLAY
161 // backing store is not used when native overlays are
162 void SetBackingBitmap(wxBitmap
* WXUNUSED(bitmap
)) { }
164 // For efficiency, tell wxGenericDragImage to use a bitmap that's already
165 // created (e.g. from last drag)
166 void SetBackingBitmap(wxBitmap
* bitmap
) { m_pBackingBitmap
= bitmap
; }
167 #endif // wxHAS_NATIVE_OVERLAY/!wxHAS_NATIVE_OVERLAY
170 ////////////////////////////////////////////////////////////////////////////
172 // Create a drag image with a virtual image (need to override DoDrawImage, GetImageRect)
173 bool Create(const wxCursor
& cursor
= wxNullCursor
);
175 // Create a drag image from a bitmap and optional cursor
176 bool Create(const wxBitmap
& image
, const wxCursor
& cursor
= wxNullCursor
);
178 // Create a drag image from an icon and optional cursor
179 bool Create(const wxIcon
& image
, const wxCursor
& cursor
= wxNullCursor
);
181 // Create a drag image from a string and optional cursor
182 bool Create(const wxString
& str
, const wxCursor
& cursor
= wxNullCursor
);
185 // Create a drag image for the given tree control item
186 bool Create(const wxTreeCtrl
& treeCtrl
, wxTreeItemId
& id
);
190 // Create a drag image for the given list control item
191 bool Create(const wxListCtrl
& listCtrl
, long id
);
194 // Begin drag. hotspot is the location of the drag position relative to the upper-left
195 // corner of the image.
196 bool BeginDrag(const wxPoint
& hotspot
, wxWindow
* window
, bool fullScreen
= false, wxRect
* rect
= NULL
);
198 // Begin drag. hotspot is the location of the drag position relative to the upper-left
199 // corner of the image. This is full screen only. fullScreenRect gives the
200 // position of the window on the screen, to restrict the drag to.
201 bool BeginDrag(const wxPoint
& hotspot
, wxWindow
* window
, wxWindow
* fullScreenRect
);
206 // Move the image: call from OnMouseMove. Pt is in window client coordinates if window
207 // is non-NULL, or in screen coordinates if NULL.
208 bool Move(const wxPoint
& pt
);
217 ////////////////////////////////////////////////////////////////////////////
221 // Override this if you are using a virtual image (drawing your own image)
222 virtual wxRect
GetImageRect(const wxPoint
& pos
) const;
224 // Override this if you are using a virtual image (drawing your own image)
225 virtual bool DoDrawImage(wxDC
& dc
, const wxPoint
& pos
) const;
227 // Override this if you wish to draw the window contents to the backing bitmap
228 // yourself. This can be desirable if you wish to avoid flicker by not having to
229 // redraw the window itself before dragging in order to be graphic-minus-dragged-objects.
230 // Instead, paint the drag image's backing bitmap to be correct, and leave the window
231 // to be updated only when dragging the objects away (thus giving a smoother appearance).
232 virtual bool UpdateBackingFromWindow(wxDC
& windowDC
, wxMemoryDC
& destDC
,
233 const wxRect
& sourceRect
, const wxRect
& destRect
) const;
235 // Erase and redraw simultaneously if possible
236 virtual bool RedrawImage(const wxPoint
& oldPos
, const wxPoint
& newPos
, bool eraseOld
, bool drawNew
);
242 wxCursor m_oldCursor
;
243 // wxPoint m_hotspot;
244 wxPoint m_offset
; // The hostpot value passed to BeginDrag
251 #ifdef wxHAS_NATIVE_OVERLAY
253 wxDCOverlay
* m_dcOverlay
;
255 // Stores the window contents while we're dragging the image around
256 wxBitmap m_backingBitmap
;
257 wxBitmap
* m_pBackingBitmap
; // Pointer to existing backing bitmap
258 // (pass to wxGenericDragImage as an efficiency measure)
259 // A temporary bitmap for repairing/redrawing
260 wxBitmap m_repairBitmap
;
261 #endif // !wxHAS_NATIVE_OVERLAY
263 wxRect m_boundingRect
;
267 DECLARE_DYNAMIC_CLASS(wxGenericDragImage
)
268 wxDECLARE_NO_COPY_CLASS(wxGenericDragImage
);