-class wxDropSource: public wxObject
-{
- public:
-
- /* constructor. set data later with SetData() */
- wxDropSource( wxWindow *win );
-
- /* constructor for setting one data object */
- wxDropSource( wxDataObject *data, wxWindow *win );
-
- /* constructor for setting several data objects via wxDataBroker */
- wxDropSource( wxDataBroker *data, wxWindow *win );
-
- ~wxDropSource(void);
-
- /* set one dataobject */
- void SetData( wxDataBroker *data );
-
- /* set severa dataobjects via wxDataBroker */
- void SetData( wxDataObject *data );
-
- /* start drag action */
- wxDragResult DoDragDrop( bool bAllowMove = FALSE );
-
- /* override to give feedback */
- virtual bool GiveFeedback( wxDragResult WXUNUSED(effect), bool WXUNUSED(bScrolling) ) { return TRUE; }
-
- /* GTK implementation */
-
- void RegisterWindow(void);
- void UnregisterWindow(void);
-
- GtkWidget *m_widget;
- wxWindow *m_window;
- wxDragResult m_retValue;
- wxDataBroker *m_data;
-
- wxCursor m_defaultCursor;
- wxCursor m_goaheadCursor;
-};