]>
git.saurik.com Git - wxWidgets.git/blob - interface/dragimag.h
94d2bdee8462e37ad3814dbc5818f483776b080f
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: documentation for wxDragImage class
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
13 This class is used when you wish to drag an object on the screen,
14 and a simple cursor is not enough.
16 On Windows, the Win32 API is used to achieve smooth dragging. On other
18 wxGenericDragImage is used. Applications may also prefer to use
19 wxGenericDragImage on Windows, too.
21 @b wxPython note: wxPython uses wxGenericDragImage on all platforms, but
22 uses the wxDragImage name.
24 To use this class, when you wish to start dragging an image, create a
26 object and store it somewhere you can access it as the drag progresses.
27 Call BeginDrag to start, and EndDrag to stop the drag. To move the image,
28 initially call Show and then Move. If you wish to update the screen contents
29 during the drag (for example, highlight an item as in the dragimag sample),
31 update the screen, call Move, and then call Show.
33 You can drag within one window, or you can use full-screen dragging
34 either across the whole screen, or just restricted to one area
35 of the screen to save resources. If you want the user to drag between
36 two windows, then you will need to use full-screen dragging.
38 If you wish to draw the image yourself, use wxGenericDragImage and
39 override wxDragImage::DoDrawImage and
40 wxDragImage::GetImageRect.
42 Please see @c samples/dragimag for an example.
47 class wxDragImage
: public wxObject
54 Constructs a drag image an optional cursor. This constructor is only available
56 wxGenericDragImage, and can be used when the application
57 supplies DoDrawImage() and GetImageRect().
60 Icon or bitmap to be used as the drag image. The bitmap can
64 Text used to construct a drag image.
67 Optional cursor to combine with the image.
70 This parameter is deprecated.
73 Tree control for constructing a tree drag image.
76 List control for constructing a list drag image.
79 Tree or list control item id.
82 wxDragImage(const wxBitmap
& image
,
83 const wxCursor
& cursor
= wxNullCursor
);
84 wxDragImage(const wxIcon
& image
,
85 const wxCursor
& cursor
= wxNullCursor
);
86 wxDragImage(const wxString
& text
,
87 const wxCursor
& cursor
= wxNullCursor
);
88 wxDragImage(const wxTreeCtrl
& treeCtrl
, wxTreeItemId
& id
);
89 wxDragImage(const wxListCtrl
& treeCtrl
, long id
);
90 wxDragImage(const wxCursor
& cursor
= wxNullCursor
);
95 Start dragging the image, using the first window to capture the mouse and the
97 to specify the bounding area. This form is equivalent to using the first form,
98 but more convenient than working out the bounding rectangle explicitly.
100 You need to then call Show()
101 and Move() to show the image on the screen.
103 Call EndDrag() when the drag has finished.
105 Note that this call automatically calls CaptureMouse.
108 The location of the drag position relative to the upper-left corner
112 The window that captures the mouse, and within which the dragging
113 is limited unless fullScreen is @true.
115 @param boundingWindow
116 In the second form of the function, specifies the
117 area within which the drag occurs.
120 If @true, specifies that the drag will be visible over the full
121 screen, or over as much of the screen as is specified by rect. Note that the
123 still be captured in window.
126 If non-@NULL, specifies the rectangle (in screen coordinates) that
127 bounds the dragging operation. Specifying this can make the operation more
129 by cutting down on the area under consideration, and it can also make a visual
131 since the drag is clipped to this area.
133 bool BeginDrag(const wxPoint
& hotspot
, wxWindow
* window
,
134 bool fullScreen
= @
false,
135 wxRect
* rect
= @NULL
);
136 bool BeginDrag(const wxPoint
& hotspot
, wxWindow
* window
,
137 wxWindow
* boundingWindow
);
141 Draws the image on the device context with top-left corner at the given
144 This function is only available with wxGenericDragImage, to allow applications
146 draw their own image instead of using an actual bitmap. If you override this
148 you must also override GetImageRect().
150 virtual bool DoDrawImage(wxDC
& dc
, const wxPoint
& pos
);
153 Call this when the drag has finished.
155 Note that this call automatically calls ReleaseMouse.
160 Returns the rectangle enclosing the image, assuming that the image is drawn
162 top-left corner at the given point.
164 This function is available in wxGenericDragImage only, and may be overridden
166 wxDragImage::DoDrawImage) to provide a virtual drawing capability.
168 virtual wxRect
GetImageRect(const wxPoint
& pos
);
171 Hides the image. You may wish to call this before updating the window
172 contents (perhaps highlighting an item). Then call Move()
178 Call this to move the image to a new position. The image will only be shown if
179 Show() has been called previously (for example
180 at the start of the drag).
182 @e pt is the position in client coordinates (relative to the window specified
185 You can move the image either when the image is hidden or shown, but in general
187 will be smoother if you move the image when it is shown.
189 bool Move(const wxPoint
& pt
);
192 Shows the image. Call this at least once when dragging.
197 Override this if you wish to draw the window contents to the backing bitmap
198 yourself. This can be desirable if you wish to avoid flicker by not having to
199 redraw the updated window itself just before dragging, which can cause a
201 as the drag starts. Instead, paint the drag image's backing bitmap to show the
203 graphic @e minus the objects to be dragged, and leave the window itself to be
205 by the drag image. This can provide eerily smooth, flicker-free drag behaviour.
207 The default implementation copies the window contents to the backing bitmap. A
209 implementation will normally copy information from another source, such as from
211 own backing bitmap if it has one, or directly from internal data structures.
213 This function is available in wxGenericDragImage only.
215 bool UpdateBackingFromWindow(wxDC
& windowDC
, wxMemoryDC
& destDC
,
216 const wxRect
& sourceRect
,
217 const wxRect
& destRect
);