]>
Commit | Line | Data |
---|---|---|
6762286d SC |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/mac/carbon/dnd.h | |
3 | // Purpose: Declaration of the wxDropTarget, wxDropSource class etc. | |
4 | // Author: Stefan Csomor | |
5 | // RCS-ID: $Id$ | |
6 | // Copyright: (c) 1998 Stefan Csomor | |
7 | // Licence: wxWindows licence | |
8 | /////////////////////////////////////////////////////////////////////////////// | |
9 | ||
10 | #ifndef _WX_DND_H_ | |
11 | #define _WX_DND_H_ | |
12 | ||
13 | #if wxUSE_DRAG_AND_DROP | |
14 | ||
15 | #include "wx/defs.h" | |
16 | #include "wx/object.h" | |
17 | #include "wx/string.h" | |
18 | #include "wx/string.h" | |
19 | #include "wx/dataobj.h" | |
20 | #include "wx/cursor.h" | |
21 | ||
22 | //------------------------------------------------------------------------- | |
23 | // classes | |
24 | //------------------------------------------------------------------------- | |
25 | ||
26 | class WXDLLIMPEXP_FWD_CORE wxWindow; | |
27 | ||
28 | class WXDLLIMPEXP_FWD_CORE wxDropTarget; | |
29 | class WXDLLIMPEXP_FWD_CORE wxTextDropTarget; | |
30 | class WXDLLIMPEXP_FWD_CORE wxFileDropTarget; | |
31 | ||
32 | class WXDLLIMPEXP_FWD_CORE wxDropSource; | |
33 | ||
34 | // ---------------------------------------------------------------------------- | |
35 | // macros | |
36 | // ---------------------------------------------------------------------------- | |
37 | ||
38 | // this macro may be used instead for wxDropSource ctor arguments: it will use | |
39 | // the icon 'name' from an XPM file under GTK, but will expand to something | |
40 | // else under MSW. If you don't use it, you will have to use #ifdef in the | |
41 | // application code. | |
42 | #define wxDROP_ICON(X) wxCursor(X##_xpm) | |
43 | ||
44 | //------------------------------------------------------------------------- | |
45 | // wxDropTarget | |
46 | //------------------------------------------------------------------------- | |
47 | ||
48 | class WXDLLIMPEXP_CORE wxDropTarget: public wxDropTargetBase | |
49 | { | |
50 | public: | |
51 | ||
d3b9f782 | 52 | wxDropTarget(wxDataObject *dataObject = NULL ); |
6762286d SC |
53 | |
54 | virtual wxDragResult OnDragOver(wxCoord x, wxCoord y, wxDragResult def); | |
55 | virtual bool OnDrop(wxCoord x, wxCoord y); | |
56 | virtual wxDragResult OnData(wxCoord x, wxCoord y, wxDragResult def); | |
57 | virtual bool GetData(); | |
58 | ||
59 | bool CurrentDragHasSupportedFormat() ; | |
4dd9fdf8 | 60 | void SetCurrentDragPasteboard( void* dragpasteboard ) { m_currentDragPasteboard = dragpasteboard ; } |
6762286d | 61 | protected : |
4dd9fdf8 | 62 | void* m_currentDragPasteboard ; |
6762286d SC |
63 | }; |
64 | ||
65 | //------------------------------------------------------------------------- | |
66 | // wxDropSource | |
67 | //------------------------------------------------------------------------- | |
68 | ||
69 | class WXDLLIMPEXP_CORE wxDropSource: public wxDropSourceBase | |
70 | { | |
71 | public: | |
72 | // ctors: if you use default ctor you must call SetData() later! | |
73 | // | |
74 | // NB: the "wxWindow *win" parameter is unused and is here only for wxGTK | |
75 | // compatibility, as well as both icon parameters | |
d3b9f782 | 76 | wxDropSource( wxWindow *win = NULL, |
6762286d SC |
77 | const wxCursor &cursorCopy = wxNullCursor, |
78 | const wxCursor &cursorMove = wxNullCursor, | |
79 | const wxCursor &cursorStop = wxNullCursor); | |
80 | ||
81 | /* constructor for setting one data object */ | |
82 | wxDropSource( wxDataObject& data, | |
83 | wxWindow *win, | |
84 | const wxCursor &cursorCopy = wxNullCursor, | |
85 | const wxCursor &cursorMove = wxNullCursor, | |
86 | const wxCursor &cursorStop = wxNullCursor); | |
87 | ||
88 | virtual ~wxDropSource(); | |
89 | ||
90 | // do it (call this in response to a mouse button press, for example) | |
91 | // params: if bAllowMove is false, data can be only copied | |
92 | virtual wxDragResult DoDragDrop(int flags = wxDrag_CopyOnly); | |
93 | ||
94 | wxWindow* GetWindow() { return m_window ; } | |
4dd9fdf8 | 95 | void SetCurrentDragPasteboard( void* dragpasteboard ) { m_currentDragPasteboard = dragpasteboard ; } |
6762286d SC |
96 | bool MacInstallDefaultCursor(wxDragResult effect) ; |
97 | protected : | |
98 | ||
99 | wxWindow *m_window; | |
4dd9fdf8 | 100 | void* m_currentDragPasteboard ; |
6762286d SC |
101 | }; |
102 | ||
103 | #endif // wxUSE_DRAG_AND_DROP | |
104 | ||
5c6eb3a8 | 105 | #endif |
6762286d | 106 | //_WX_DND_H_ |