-class WXDLLEXPORT wxTextDropTarget : public wxDropTarget
-{
-public:
- wxTextDropTarget();
- virtual ~wxTextDropTarget();
-
- virtual bool OnDropText( wxCoord x
- ,wxCoord y
- ,const wxString& rText
- ) = 0;
-
- virtual bool OnData( wxCoord x
- ,wxCoord y
- );
-};
-
-// ----------------------------------------------------------------------------
-// A drop target which accepts files (dragged from File Manager or Explorer)
-// ----------------------------------------------------------------------------
-
-class WXDLLEXPORT wxFileDropTarget : public wxDropTarget
-{
-public:
- wxFileDropTarget();
- virtual ~wxFileDropTarget();
-
- // parameters are the number of files and the array of file names
- virtual bool OnDropFiles( wxCoord x
- ,wxCoord y
- ,const wxArrayString& rFilenames
- ) = 0;
-
- virtual bool OnData( wxCoord x
- ,wxCoord y
- );
-};