]>
Commit | Line | Data |
---|---|---|
1737035f VZ |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: ole/dropsrc.h | |
3 | // Purpose: declaration of the wxDropSource class | |
4 | // Author: Vadim Zeitlin | |
e1ee679c | 5 | // Modified by: |
1737035f VZ |
6 | // Created: 06.03.98 |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr> | |
77ffb593 | 9 | // Licence: wxWidgets licence |
1737035f VZ |
10 | /////////////////////////////////////////////////////////////////////////////// |
11 | ||
bbcdf8bc JS |
12 | #ifndef _WX_OLEDROPSRC_H |
13 | #define _WX_OLEDROPSRC_H | |
1737035f | 14 | |
12028905 | 15 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
8e193f38 | 16 | #pragma interface |
1737035f | 17 | #endif |
8e193f38 | 18 | |
f97c9854 | 19 | #if !wxUSE_DRAG_AND_DROP |
47d67540 | 20 | #error "You should #define wxUSE_DRAG_AND_DROP to 1 to compile this file!" |
1737035f VZ |
21 | #endif //WX_DRAG_DROP |
22 | ||
23 | // ---------------------------------------------------------------------------- | |
24 | // forward declarations | |
25 | // ---------------------------------------------------------------------------- | |
8e193f38 | 26 | |
1737035f | 27 | class wxIDropSource; |
8e193f38 VZ |
28 | class WXDLLEXPORT wxDataObject; |
29 | class WXDLLEXPORT wxWindow; | |
30 | ||
f6bcfd97 BP |
31 | // ---------------------------------------------------------------------------- |
32 | // macros | |
33 | // ---------------------------------------------------------------------------- | |
34 | ||
35 | // this macro may be used instead for wxDropSource ctor arguments: it will use | |
36 | // the cursor 'name' from the resources under MSW, but will expand to | |
37 | // something else under GTK. If you don't use it, you will have to use #ifdef | |
38 | // in the application code. | |
c17ba76f | 39 | #define wxDROP_ICON(name) wxCursor(_T(#name)) |
f6bcfd97 | 40 | |
1737035f VZ |
41 | // ---------------------------------------------------------------------------- |
42 | // wxDropSource is used to start the drag-&-drop operation on associated | |
43 | // wxDataObject object. It's responsible for giving UI feedback while dragging. | |
44 | // ---------------------------------------------------------------------------- | |
8e193f38 | 45 | |
9e2896e5 | 46 | class WXDLLEXPORT wxDropSource : public wxDropSourceBase |
1737035f VZ |
47 | { |
48 | public: | |
e1ee679c VZ |
49 | // ctors: if you use default ctor you must call SetData() later! |
50 | // | |
51 | // NB: the "wxWindow *win" parameter is unused and is here only for wxGTK | |
52 | // compatibility, as well as both icon parameters | |
53 | wxDropSource(wxWindow *win = NULL, | |
2d93e133 VZ |
54 | const wxCursor &cursorCopy = wxNullCursor, |
55 | const wxCursor &cursorMove = wxNullCursor, | |
56 | const wxCursor &cursorStop = wxNullCursor); | |
e1ee679c | 57 | wxDropSource(wxDataObject& data, |
2d93e133 VZ |
58 | wxWindow *win = NULL, |
59 | const wxCursor &cursorCopy = wxNullCursor, | |
60 | const wxCursor &cursorMove = wxNullCursor, | |
61 | const wxCursor &cursorStop = wxNullCursor); | |
e1ee679c VZ |
62 | |
63 | virtual ~wxDropSource(); | |
64 | ||
65 | // do it (call this in response to a mouse button press, for example) | |
66 | // params: if bAllowMove is false, data can be only copied | |
2245b2b2 | 67 | virtual wxDragResult DoDragDrop(int flags = wxDrag_CopyOnly); |
e1ee679c VZ |
68 | |
69 | // overridable: you may give some custom UI feedback during d&d operation | |
70 | // in this function (it's called on each mouse move, so it shouldn't be | |
71 | // too slow). Just return false if you want default feedback. | |
2d93e133 | 72 | virtual bool GiveFeedback(wxDragResult effect); |
1737035f VZ |
73 | |
74 | protected: | |
e1ee679c | 75 | void Init(); |
1737035f VZ |
76 | |
77 | private: | |
e1ee679c | 78 | wxIDropSource *m_pIDropSource; // the pointer to COM interface |
22f3361e VZ |
79 | |
80 | DECLARE_NO_COPY_CLASS(wxDropSource) | |
1737035f VZ |
81 | }; |
82 | ||
46ccb510 | 83 | #endif //_WX_OLEDROPSRC_H |