1999-01-13 14:23:31 +00:00
|
|
|
\section{\class{wxDropSource}}\label{wxdropsource}
|
|
|
|
|
|
|
|
This class represents a source for a drag and drop operation.
|
|
|
|
|
1999-12-29 11:52:51 +00:00
|
|
|
See \helpref{Drag'n'Drop overview}{wxdndoverview} and \helpref{wxDataObject overview}{wxdataobjectoverview}
|
|
|
|
for more information.
|
|
|
|
|
1999-01-13 14:23:31 +00:00
|
|
|
\wxheading{Derived from}
|
|
|
|
|
1999-12-29 09:48:10 +00:00
|
|
|
None
|
1999-01-13 14:23:31 +00:00
|
|
|
|
1999-02-15 20:41:29 +00:00
|
|
|
\wxheading{Include files}
|
|
|
|
|
|
|
|
<wx/dnd.h>
|
|
|
|
|
1999-01-13 14:23:31 +00:00
|
|
|
\wxheading{Types}
|
|
|
|
|
|
|
|
\index{wxDragResult}wxDragResult is defined as follows:
|
|
|
|
|
|
|
|
{\small\begin{verbatim}
|
|
|
|
enum wxDragResult
|
1999-12-29 09:48:10 +00:00
|
|
|
{
|
1999-01-13 14:23:31 +00:00
|
|
|
wxDragError, // error prevented the d&d operation from completing
|
|
|
|
wxDragNone, // drag target didn't accept the data
|
|
|
|
wxDragCopy, // the data was successfully copied
|
|
|
|
wxDragMove, // the data was successfully moved
|
|
|
|
wxDragCancel // the operation was cancelled by user (not an error)
|
1999-12-29 09:48:10 +00:00
|
|
|
};
|
|
|
|
\end{verbatim}
|
1999-01-13 14:23:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
\wxheading{See also}
|
|
|
|
|
1999-12-29 11:52:51 +00:00
|
|
|
\helpref{wxDropTarget}{wxdroptarget},
|
1999-01-13 14:23:31 +00:00
|
|
|
\helpref{wxTextDropTarget}{wxtextdroptarget}, \helpref{wxFileDropTarget}{wxfiledroptarget}
|
|
|
|
|
|
|
|
\latexignore{\rtfignore{\wxheading{Members}}}
|
|
|
|
|
|
|
|
\membersection{wxDropSource::wxDropSource}\label{wxdropsourcewxdropsource}
|
|
|
|
|
1999-01-24 23:56:51 +00:00
|
|
|
\func{}{wxDropSource}{\param{wxWindow*}{ win = NULL}}
|
1999-01-13 14:23:31 +00:00
|
|
|
|
|
|
|
Default/wxGTK-specific constructor. If you use the default constructor you must
|
1999-12-29 09:48:10 +00:00
|
|
|
call \helpref{SetData}{wxdropsourcesetdata} later.
|
1999-01-13 14:23:31 +00:00
|
|
|
|
1999-12-29 09:48:10 +00:00
|
|
|
Note that {\it win} is required by the GTK port and therefore should always be set.
|
1999-01-13 14:23:31 +00:00
|
|
|
|
|
|
|
\membersection{wxDropSource::\destruct{wxDropSource}}\label{wxdropsourcedtor}
|
|
|
|
|
|
|
|
\func{virtual }{\destruct{wxDropSource}}{\void}
|
|
|
|
|
|
|
|
\membersection{wxDropSource::SetData}\label{wxdropsourcesetdata}
|
|
|
|
|
1999-01-24 23:56:51 +00:00
|
|
|
\func{void}{SetData}{\param{wxDataObject\&}{ data}}
|
1999-01-13 14:23:31 +00:00
|
|
|
|
1999-12-29 09:48:10 +00:00
|
|
|
Sets the data \helpref{wxDataObject}{wxdataobject} associated with the
|
|
|
|
drop source. This will not delete any previously associated data.
|
1999-01-13 14:23:31 +00:00
|
|
|
|
|
|
|
\membersection{wxDropSource::DoDragDrop}\label{wxdropsourcedodragdrop}
|
|
|
|
|
1999-11-01 18:20:39 +00:00
|
|
|
\func{virtual wxDragResult}{DoDragDrop}{\param{bool }{allowMove = FALSE}}
|
1999-01-13 14:23:31 +00:00
|
|
|
|
|
|
|
Do it (call this in response to a mouse button press, for example).
|
|
|
|
|
1999-11-01 18:20:39 +00:00
|
|
|
If {\bf allowMove} is FALSE, data can only be copied.
|
1999-01-13 14:23:31 +00:00
|
|
|
|
|
|
|
\membersection{wxDropSource::GiveFeedback}\label{wxdropsourcegivefeedback}
|
|
|
|
|
1999-11-01 18:20:39 +00:00
|
|
|
\func{virtual bool}{GiveFeedback}{\param{wxDragResult }{effect}, \param{bool }{scrolling}}
|
1999-01-13 14:23:31 +00:00
|
|
|
|
|
|
|
Overridable: you may give some custom UI feedback during the drag and drop operation
|
|
|
|
in this function. It is called on each mouse move, so your implementation must not be too
|
|
|
|
slow.
|
|
|
|
|
|
|
|
\wxheading{Parameters}
|
|
|
|
|
1999-11-01 18:20:39 +00:00
|
|
|
\docparam{effect}{The effect to implement. One of wxDragCopy, wxDragMove and wxDragNone. }
|
1999-01-13 14:23:31 +00:00
|
|
|
|
1999-11-01 18:20:39 +00:00
|
|
|
\docparam{scrolling}{TRUE if the window is scrolling. MSW only. }
|
1999-01-13 14:23:31 +00:00
|
|
|
|
|
|
|
\wxheading{Return value}
|
|
|
|
|
|
|
|
Return FALSE if you want default feedback, or TRUE if you implement your own
|
1999-11-01 18:20:39 +00:00
|
|
|
feedback. The return values is ignored under GTK.
|
1999-01-13 14:23:31 +00:00
|
|
|
|