]>
Commit | Line | Data |
---|---|---|
dface61c JS |
1 | \section{\class{wxDropSource}}\label{wxdropsource} |
2 | ||
dface61c JS |
3 | This class represents a source for a drag and drop operation. |
4 | ||
23efdd02 RR |
5 | See \helpref{Drag'n'Drop overview}{wxdndoverview} and \helpref{wxDataObject overview}{wxdataobjectoverview} |
6 | for more information. | |
7 | ||
dface61c JS |
8 | \wxheading{Derived from} |
9 | ||
f59d80ca | 10 | None |
dface61c | 11 | |
954b8ae6 JS |
12 | \wxheading{Include files} |
13 | ||
14 | <wx/dnd.h> | |
15 | ||
dface61c JS |
16 | \wxheading{Types} |
17 | ||
18 | \index{wxDragResult}wxDragResult is defined as follows: | |
19 | ||
20 | {\small\begin{verbatim} | |
21 | enum wxDragResult | |
f59d80ca | 22 | { |
dface61c JS |
23 | wxDragError, // error prevented the d&d operation from completing |
24 | wxDragNone, // drag target didn't accept the data | |
25 | wxDragCopy, // the data was successfully copied | |
26 | wxDragMove, // the data was successfully moved | |
27 | wxDragCancel // the operation was cancelled by user (not an error) | |
f59d80ca RR |
28 | }; |
29 | \end{verbatim} | |
dface61c JS |
30 | } |
31 | ||
32 | \wxheading{See also} | |
33 | ||
23efdd02 | 34 | \helpref{wxDropTarget}{wxdroptarget}, |
dface61c JS |
35 | \helpref{wxTextDropTarget}{wxtextdroptarget}, \helpref{wxFileDropTarget}{wxfiledroptarget} |
36 | ||
37 | \latexignore{\rtfignore{\wxheading{Members}}} | |
38 | ||
39 | \membersection{wxDropSource::wxDropSource}\label{wxdropsourcewxdropsource} | |
40 | ||
06ad8636 | 41 | \func{}{wxDropSource}{\param{wxWindow*}{ win = NULL}} |
dface61c JS |
42 | |
43 | Default/wxGTK-specific constructor. If you use the default constructor you must | |
f59d80ca | 44 | call \helpref{SetData}{wxdropsourcesetdata} later. |
dface61c | 45 | |
f59d80ca | 46 | Note that {\it win} is required by the GTK port and therefore should always be set. |
dface61c | 47 | |
dface61c JS |
48 | \membersection{wxDropSource::\destruct{wxDropSource}}\label{wxdropsourcedtor} |
49 | ||
50 | \func{virtual }{\destruct{wxDropSource}}{\void} | |
51 | ||
52 | \membersection{wxDropSource::SetData}\label{wxdropsourcesetdata} | |
53 | ||
06ad8636 | 54 | \func{void}{SetData}{\param{wxDataObject\&}{ data}} |
dface61c | 55 | |
f59d80ca RR |
56 | Sets the data \helpref{wxDataObject}{wxdataobject} associated with the |
57 | drop source. This will not delete any previously associated data. | |
dface61c JS |
58 | |
59 | \membersection{wxDropSource::DoDragDrop}\label{wxdropsourcedodragdrop} | |
60 | ||
fc9c7c09 | 61 | \func{virtual wxDragResult}{DoDragDrop}{\param{bool }{allowMove = FALSE}} |
dface61c JS |
62 | |
63 | Do it (call this in response to a mouse button press, for example). | |
64 | ||
fc9c7c09 | 65 | If {\bf allowMove} is FALSE, data can only be copied. |
dface61c JS |
66 | |
67 | \membersection{wxDropSource::GiveFeedback}\label{wxdropsourcegivefeedback} | |
68 | ||
fc9c7c09 | 69 | \func{virtual bool}{GiveFeedback}{\param{wxDragResult }{effect}, \param{bool }{scrolling}} |
dface61c JS |
70 | |
71 | Overridable: you may give some custom UI feedback during the drag and drop operation | |
72 | in this function. It is called on each mouse move, so your implementation must not be too | |
73 | slow. | |
74 | ||
75 | \wxheading{Parameters} | |
76 | ||
fc9c7c09 | 77 | \docparam{effect}{The effect to implement. One of wxDragCopy, wxDragMove and wxDragNone. } |
dface61c | 78 | |
fc9c7c09 | 79 | \docparam{scrolling}{TRUE if the window is scrolling. MSW only. } |
dface61c JS |
80 | |
81 | \wxheading{Return value} | |
82 | ||
83 | Return FALSE if you want default feedback, or TRUE if you implement your own | |
fc9c7c09 | 84 | feedback. The return values is ignored under GTK. |
dface61c | 85 |