1 \section{\class{wxDropTarget
}}\label{wxdroptarget
}
3 This class represents a target for a drag and drop operation. A
\helpref{wxDataObject
}{wxdataobject
}
4 can be associated with it and by default, this object will be filled with the data from the
5 drag source, if the data formats supported by the data object match the drag source data
8 There are various virtual handler functions defined in this class which may be overridden
9 to give visual feedback or react in a more fine-tuned way, e.g. by not accepting data on
10 the whole window area, but only a small portion of it. The normal sequence of calls is
11 \helpref{OnEnter
}{wxdroptargetonenter
}, possibly many times
\helpref{OnDragOver
}{wxdroptargetondragover
},
12 \helpref{OnDrop
}{wxdroptargetondrop
} and finally
\helpref{OnData
}{wxdroptargetondata
}.
14 See
\helpref{Drag'n'Drop overview
}{wxdndoverview
} and
\helpref{wxDataObject overview
}{wxdataobjectoverview
}
17 \wxheading{Derived from
}
21 \wxheading{Include files
}
27 \index{wxDragResult
}wxDragResult is defined as follows:
29 {\small\begin{verbatim
}
32 wxDragError, // error prevented the d&d operation from completing
33 wxDragNone, // drag target didn't accept the data
34 wxDragCopy, // the data was successfully copied
35 wxDragMove, // the data was successfully moved
36 wxDragCancel // the operation was cancelled by user (not an error)
43 \helpref{wxDropSource
}{wxdropsource
},
44 \helpref{wxTextDropTarget
}{wxtextdroptarget
},
\helpref{wxFileDropTarget
}{wxfiledroptarget
},
45 \helpref{wxDataFormat
}{wxdataformat
},
\helpref{wxDataObject
}{wxdataobject
}
47 \latexignore{\rtfignore{\wxheading{Members
}}}
49 \membersection{wxDropTarget::wxDropTarget
}\label{wxdroptargetwxdroptarget
}
51 \func{}{wxDropTarget
}{\param{wxDataObject*
}{ data = NULL
}}
53 Constructor.
{\it data
} is the data to be associated with the drop target.
55 \membersection{wxDropTarget::
\destruct{wxDropTarget
}}\label{wxdroptargetdtor
}
57 \func{}{\destruct{wxDropTarget
}}{\void}
59 Destructor. Deletes the associated data object, if any.
61 \membersection{wxDropTarget::GetData
}\label{wxdroptargetgetdata
}
63 \func{virtual void
}{GetData
}{\void}
65 This method may only be called from within
\helpref{OnData
}{wxdroptargetondata
}.
66 By default, this method copies the data from the drop source to the
67 \helpref{wxDataObject
}{wxdataobject
} associated with this drop target,
68 calling its
\helpref{wxDataObject::SetData
}{wxdataobjectsetdata
} method.
70 \membersection{wxDropTarget::OnData
}\label{wxdroptargetondata
}
72 \func{virtual wxDragResult
}{OnData
}{\param{wxCoord
}{ x
},
\param{wxCoord
}{ y
},
\param{wxDragResult
}{ def
}}
74 Called after
\helpref{OnDrop
}{wxdroptargetondrop
} returns TRUE. By default this
75 will usually
\helpref{GetData
}{wxdroptargetgetdata
} and will return the suggested
76 default value
{\it def
}.
78 \membersection{wxDropTarget::OnDrop
}\label{wxdroptargetondrop
}
80 \func{virtual bool
}{OnDrop
}{\param{wxCoord
}{x
},
\param{wxCoord
}{y
}}
82 Called when the user drops a data object on the target. Return FALSE to veto the operation.
84 \wxheading{Parameters
}
86 \docparam{x
}{The x coordinate of the mouse.
}
88 \docparam{y
}{The y coordinate of the mouse.
}
90 \wxheading{Return value
}
92 Return TRUE to accept the data, FALSE to veto the operation.
94 \membersection{wxDropTarget::OnEnter
}\label{wxdroptargetonenter
}
96 \func{virtual wxDragResult
}{OnEnter
}{\param{wxCoord
}{ x
},
\param{wxCoord
}{ y
},
\param{wxDragResult
}{ def
}}
98 Called when the mouse enters the drop target. By default, this calls
\helpref{OnDragOver
}{wxdroptargetondragover
}.
100 \wxheading{Parameters
}
102 \docparam{x
}{The x coordinate of the mouse.
}
104 \docparam{y
}{The y coordinate of the mouse.
}
106 \docparam{def
}{Suggested default for return value. Determined by SHIFT or CONTROL key states.
}
108 \wxheading{Return value
}
110 Returns the desired operation or
{\tt wxDragNone
}. This is used for optical feedback
111 from the side of the drop source, typically in form of changing the icon.
113 \membersection{wxDropTarget::OnDragOver
}\label{wxdroptargetondragover
}
115 \func{virtual wxDragResult
}{OnDragOver
}{\param{wxCoord
}{ x
},
\param{wxCoord
}{ y
},
\param{wxDragResult
}{ def
}}
117 Called when the mouse is being dragged over the drop target. By default,
118 this calls functions return the suggested return value
{\it def
}.
120 \wxheading{Parameters
}
122 \docparam{x
}{The x coordinate of the mouse.
}
124 \docparam{y
}{The y coordinate of the mouse.
}
126 \docparam{def
}{Suggested value for return value. Determined by SHIFT or CONTROL key states.
}
128 \wxheading{Return value
}
130 Returns the desired operation or
{\tt wxDragNone
}. This is used for optical feedback
131 from the side of the drop source, typically in form of changing the icon.
133 \membersection{wxDropTarget::OnLeave
}\label{wxdroptargetonleave
}
135 \func{virtual void
}{OnLeave
}{\void}
137 Called when the mouse leaves the drop target.
139 \membersection{wxDropTarget::SetDataObject
}\label{wxdroptargetsetdataobject
}
141 \func{void
}{SetDataObject
}{\param{wxDataObject*
}{ data
}}
143 Sets the data
\helpref{wxDataObject
}{wxdataobject
} associated with the
144 drop target and deletes any previously associated data object.