-class wxDragSource: public wxObject
-{
- public:
-
- wxDragSource( wxWindow *win );
- ~wxDragSource(void);
- void SetData( char *data, const long size );
- void Start( int x, int y );
-
- public:
-
- void ConnectWindow(void);
- void UnconnectWindow(void);
- virtual void RegisterWindow(void) = 0;
- void UnregisterWindow(void);
-
- GtkWidget *m_widget;
- wxWindow *m_window;
- char *m_data;
- long m_size;
- wxCursor m_defaultCursor;
- wxCursor m_goaheadCursor;
-};