]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/gtk/dnd.h
1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: declaration of the wxDropTarget class
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Vadim Zeitlin, Robert Roebling
7 // Licence: wxWindows license
8 ///////////////////////////////////////////////////////////////////////////////
20 #if wxUSE_DRAG_AND_DROP
22 #include "wx/object.h"
23 #include "wx/string.h"
24 #include "wx/dataobj.h"
25 #include "wx/cursor.h"
27 #include "wx/gdicmn.h"
29 //-------------------------------------------------------------------------
31 //-------------------------------------------------------------------------
36 class wxTextDropTarget
;
37 class wxFileDropTarget
;
38 class wxPrivateDropTarget
;
42 //-------------------------------------------------------------------------
44 //-------------------------------------------------------------------------
48 wxDragError
, // error prevented the d&d operation from completing
49 wxDragNone
, // drag target didn't accept the data
50 wxDragCopy
, // the data was successfully copied
51 wxDragMove
, // the data was successfully moved (MSW only)
52 wxDragCancel
// the operation was cancelled by user (not an error)
55 class wxDropSource
: public wxObject
59 /* constructor. set data later with SetData() */
60 wxDropSource( wxWindow
*win
, const wxIcon
&go
= wxNullIcon
, const wxIcon
&stop
= wxNullIcon
);
62 /* constructor for setting one data object */
63 wxDropSource( wxDataObject
*data
, wxWindow
*win
, const wxIcon
&go
= wxNullIcon
, const wxIcon
&stop
= wxNullIcon
);
65 /* constructor for setting several data objects via wxDataBroker */
66 wxDropSource( wxDataBroker
*data
, wxWindow
*win
);
70 /* set several dataobjects via wxDataBroker */
71 void SetData( wxDataBroker
*data
);
73 /* set one dataobject */
74 void SetData( wxDataObject
*data
);
76 /* start drag action */
77 wxDragResult
DoDragDrop( bool bAllowMove
= FALSE
);
79 /* override to give feedback */
80 virtual bool GiveFeedback( wxDragResult
WXUNUSED(effect
), bool WXUNUSED(bScrolling
) ) { return TRUE
; }
82 /* GTK implementation */
84 void RegisterWindow();
85 void UnregisterWindow();
89 wxDragResult m_retValue
;
92 wxCursor m_defaultCursor
;
93 wxCursor m_goaheadCursor
;
100 #if (GTK_MINOR_VERSION > 0)
102 //-------------------------------------------------------------------------
104 //-------------------------------------------------------------------------
106 class wxDropTarget
: public wxObject
113 /* may be overridden to react to events */
114 virtual void OnEnter();
115 virtual void OnLeave();
116 virtual bool OnMove( int x
, int y
);
118 /* has te be overridden to get data */
119 virtual bool OnDrop( int x
, int y
);
121 /* called to query formats available */
122 bool IsSupported( wxDataFormat format
);
124 /* fill data with data on the clipboard (if available) */
125 bool GetData( wxDataObject
*data
);
129 void RegisterWidget( GtkWidget
*widget
);
130 void UnregisterWidget( GtkWidget
*widget
);
132 GdkDragContext
*m_dragContext
;
134 void SetDragContext( GdkDragContext
*dc
) { m_dragContext
= dc
; }
135 GdkDragContext
*GetDragContext() { return m_dragContext
; }
138 //-------------------------------------------------------------------------
140 //-------------------------------------------------------------------------
142 class wxTextDropTarget
: public wxDropTarget
146 wxTextDropTarget() {}
148 virtual bool OnMove( int x
, int y
);
149 virtual bool OnDrop( int x
, int y
);
151 /* you have to override OnDropData to get at the text */
152 virtual bool OnDropText( int x
, int y
, const char *text
) = 0;
156 //-------------------------------------------------------------------------
157 // wxPrivateDropTarget
158 //-------------------------------------------------------------------------
160 class wxPrivateDropTarget
: public wxDropTarget
164 /* sets id to "application/myprogram" where "myprogram" is the
165 same as wxApp->GetAppName() */
166 wxPrivateDropTarget();
167 /* see SetId() below for explanation */
168 wxPrivateDropTarget( const wxString
&id
);
170 virtual bool OnMove( int x
, int y
);
171 virtual bool OnDrop( int x
, int y
);
173 /* you have to override OnDropData to get at the data */
174 virtual bool OnDropData( int x
, int y
, void *data
, size_t size
) = 0;
176 /* the string ID identifies the format of clipboard or DnD data. a word
177 processor would e.g. add a wxTextDataObject and a wxPrivateDataObject
178 to the clipboard - the latter with the Id "application/wxword" or
180 void SetId( const wxString
& id
) { m_id
= id
; }
181 wxString
GetId() { return m_id
; }
188 //----------------------------------------------------------------------------
189 // A drop target which accepts files (dragged from File Manager or Explorer)
190 //----------------------------------------------------------------------------
192 class wxFileDropTarget
: public wxDropTarget
196 wxFileDropTarget() {}
198 virtual bool OnMove( int x
, int y
);
199 virtual bool OnDrop( int x
, int y
);
201 /* you have to override OnDropFiles to get at the file names */
202 virtual bool OnDropFiles( int x
, int y
, size_t nFiles
, const char * const aszFiles
[] ) = 0;
208 //-------------------------------------------------------------------------
210 //-------------------------------------------------------------------------
212 class wxDropTarget
: public wxObject
219 virtual void OnEnter() { }
220 virtual void OnLeave() { }
221 virtual void OnMouseMove( long WXUNUSED(x
), long WXUNUSED(y
) ) { }
222 virtual bool OnDrop( long x
, long y
, const void *data
, size_t size
) = 0;
224 // Override these to indicate what kind of data you support:
226 virtual size_t GetFormatCount() const = 0;
227 virtual wxDataFormat
&GetFormat(size_t n
) const;
231 void RegisterWidget( GtkWidget
*widget
);
232 void UnregisterWidget( GtkWidget
*widget
);
234 wxDataFormat
*m_format
;
237 //-------------------------------------------------------------------------
239 //-------------------------------------------------------------------------
241 class wxTextDropTarget
: public wxDropTarget
246 virtual bool OnDrop( long x
, long y
, const void *data
, size_t size
);
247 virtual bool OnDropText( long x
, long y
, const char *psz
);
251 virtual size_t GetFormatCount() const;
254 //-------------------------------------------------------------------------
255 // wxPrivateDropTarget
256 //-------------------------------------------------------------------------
258 class wxPrivateDropTarget
: public wxDropTarget
262 wxPrivateDropTarget();
264 // you have to override OnDrop to get at the data
266 // the string ID identifies the format of clipboard or DnD data. a word
267 // processor would e.g. add a wxTextDataObject and a wxPrivateDataObject
268 // to the clipboard - the latter with the Id "application/wxword" or
271 void SetId( const wxString
& id
);
278 virtual size_t GetFormatCount() const;
283 //----------------------------------------------------------------------------
284 // A drop target which accepts files (dragged from File Manager or Explorer)
285 //----------------------------------------------------------------------------
287 class wxFileDropTarget
: public wxDropTarget
293 virtual bool OnDrop( long x
, long y
, const void *data
, size_t size
);
294 virtual bool OnDropFiles( long x
, long y
,
295 size_t nFiles
, const char * const aszFiles
[] );
299 virtual size_t GetFormatCount() const;
307 // wxUSE_DRAG_AND_DROP