]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/dropsrc.tex
1. fixed memory leak in GAddress
[wxWidgets.git] / docs / latex / wx / dropsrc.tex
CommitLineData
dface61c
JS
1\section{\class{wxDropSource}}\label{wxdropsource}
2
dface61c
JS
3This class represents a source for a drag and drop operation.
4
fa482912 5See \helpref{Drag'n'Drop overview}{wxdndoverview} and \helpref{wxDataObject overview}{wxdataobjectoverview}
23efdd02
RR
6for more information.
7
dface61c
JS
8\wxheading{Derived from}
9
f59d80ca 10None
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
fa482912 20begin{verbatim}
dface61c 21enum 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\wxheading{See also}
32
23efdd02 33\helpref{wxDropTarget}{wxdroptarget},
dface61c
JS
34\helpref{wxTextDropTarget}{wxtextdroptarget}, \helpref{wxFileDropTarget}{wxfiledroptarget}
35
36\latexignore{\rtfignore{\wxheading{Members}}}
37
38\membersection{wxDropSource::wxDropSource}\label{wxdropsourcewxdropsource}
39
06ad8636 40\func{}{wxDropSource}{\param{wxWindow*}{ win = NULL}}
dface61c
JS
41
42Default/wxGTK-specific constructor. If you use the default constructor you must
f59d80ca 43call \helpref{SetData}{wxdropsourcesetdata} later.
dface61c 44
f59d80ca 45Note that {\it win} is required by the GTK port and therefore should always be set.
dface61c 46
dface61c
JS
47\membersection{wxDropSource::\destruct{wxDropSource}}\label{wxdropsourcedtor}
48
49\func{virtual }{\destruct{wxDropSource}}{\void}
50
51\membersection{wxDropSource::SetData}\label{wxdropsourcesetdata}
52
06ad8636 53\func{void}{SetData}{\param{wxDataObject\&}{ data}}
dface61c 54
f59d80ca
RR
55Sets the data \helpref{wxDataObject}{wxdataobject} associated with the
56drop source. This will not delete any previously associated data.
dface61c
JS
57
58\membersection{wxDropSource::DoDragDrop}\label{wxdropsourcedodragdrop}
59
fc9c7c09 60\func{virtual wxDragResult}{DoDragDrop}{\param{bool }{allowMove = FALSE}}
dface61c
JS
61
62Do it (call this in response to a mouse button press, for example).
63
fc9c7c09 64If {\bf allowMove} is FALSE, data can only be copied.
dface61c
JS
65
66\membersection{wxDropSource::GiveFeedback}\label{wxdropsourcegivefeedback}
67
fc9c7c09 68\func{virtual bool}{GiveFeedback}{\param{wxDragResult }{effect}, \param{bool }{scrolling}}
dface61c
JS
69
70Overridable: you may give some custom UI feedback during the drag and drop operation
71in this function. It is called on each mouse move, so your implementation must not be too
72slow.
73
74\wxheading{Parameters}
75
fc9c7c09 76\docparam{effect}{The effect to implement. One of wxDragCopy, wxDragMove and wxDragNone. }
dface61c 77
fc9c7c09 78\docparam{scrolling}{TRUE if the window is scrolling. MSW only. }
dface61c
JS
79
80\wxheading{Return value}
81
82Return FALSE if you want default feedback, or TRUE if you implement your own
fc9c7c09 83feedback. The return values is ignored under GTK.
dface61c 84