*** empty log message ***
[wxWidgets.git] / src / os2 / dnd.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: dnd.cpp
3 // Purpose: wxDropTarget, wxDropSource, wxDataObject implementation
4 // Author: David Webster
5 // Modified by:
6 // Created: 10/21/99
7 // RCS-ID: $Id$
8 // Copyright: (c) 1998 AUTHOR
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
11
12 #ifdef __GNUG__
13 #pragma implementation "dnd.h"
14 #endif
15
16 #include "wx/dnd.h"
17 #include "wx/window.h"
18 #include "wx/app.h"
19 #include "wx/gdicmn.h"
20
21 // ----------------------------------------------------------------------------
22 // global
23 // ----------------------------------------------------------------------------
24
25 // ----------------------------------------------------------------------------
26 // wxDropTarget
27 // ----------------------------------------------------------------------------
28
29 wxDropTarget::wxDropTarget(
30 wxDataObject* pDataObject
31 )
32 {
33 // TODO:
34 };
35
36 wxDropTarget::~wxDropTarget()
37 {
38 };
39
40 void wxDropTarget::Register(
41 WXHWND hwnd
42 )
43 {
44 //TODO:
45 };
46
47 void wxDropTarget::Revoke(
48 WXHWND hwnd
49 )
50 {
51 //TODO:
52 };
53
54 wxDragResult wxDropTarget::OnDragOver(
55 wxCoord x
56 , wxCoord y
57 , wxDragResult vDef
58 )
59 {
60 //TODO:
61 return vDef;
62 };
63
64 bool wxDropTarget::OnDrop(
65 wxCoord x
66 , wxCoord y
67 )
68 {
69 //TODO:
70 return FALSE;
71 };
72
73 bool wxDropTarget::OnData(
74 wxCoord x
75 , wxCoord y
76 )
77 {
78 //TODO:
79 return FALSE;
80 };
81
82 bool wxDropTarget::GetData()
83 {
84 //TODO:
85 return FALSE;
86 };
87
88 bool wxDropTarget::IsAcceptable(
89 DRAGINFO* pInfo
90 )
91 {
92 //TODO:
93 return FALSE;
94 };
95
96 // ----------------------------------------------------------------------------
97 // wxTextDropTarget
98 // ----------------------------------------------------------------------------
99
100 wxTextDropTarget::wxTextDropTarget()
101 {
102 // TODO:
103 }
104
105 wxTextDropTarget::~wxTextDropTarget()
106 {
107 // TODO:
108 }
109
110 bool wxTextDropTarget::OnData(
111 wxCoord x
112 , wxCoord y
113 )
114 {
115 // TODO:
116 return FALSE;
117 };
118
119 // ----------------------------------------------------------------------------
120 // wxFileDropTarget
121 // ----------------------------------------------------------------------------
122
123 wxFileDropTarget::wxFileDropTarget()
124 {
125 // TODO:
126 }
127
128 wxFileDropTarget::~wxFileDropTarget()
129 {
130 // TODO:
131 }
132
133 bool wxFileDropTarget::OnData(
134 wxCoord x
135 , wxCoord y
136 )
137 {
138 // TODO:
139 return FALSE;
140 };
141
142 //-------------------------------------------------------------------------
143 // wxDropSource
144 //-------------------------------------------------------------------------
145
146 wxDropSource::wxDropSource(
147 wxWindow* pWin
148 )
149 {
150 // TODO
151 };
152
153 wxDropSource::wxDropSource(
154 wxDataObject& rData
155 , wxWindow* pWin
156 )
157 {
158 // TODO
159 };
160
161 wxDropSource::~wxDropSource()
162 {
163 // TODO
164 };
165
166 wxDragResult wxDropSource::DoDragDrop(
167 bool WXUNUSED(bAllowMove)
168 )
169 {
170 // TODO
171 return wxDragError;
172 };
173
174 void wxDropSource::Init()
175 {
176 // TODO
177 };
178