]> git.saurik.com Git - wxWidgets.git/blame - src/msw/ole/droptgt.cpp
Fixed cache-related bug in DoBlit.
[wxWidgets.git] / src / msw / ole / droptgt.cpp
CommitLineData
bbf1f0e5
KB
1///////////////////////////////////////////////////////////////////////////////
2// Name: ole/droptgt.cpp
3// Purpose: wxDropTarget implementation
4// Author: Vadim Zeitlin
3f480da3
VZ
5// Modified by:
6// Created:
bbf1f0e5
KB
7// RCS-ID: $Id$
8// Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9// Licence: wxWindows license
10///////////////////////////////////////////////////////////////////////////////
11
12// ============================================================================
13// Declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
20#ifdef __GNUG__
21#pragma implementation "droptgt.h"
22#endif
23
24// For compilers that support precompilation, includes "wx.h".
bbf1f0e5
KB
25#include "wx/wxprec.h"
26
27#if defined(__BORLANDC__)
28#pragma hdrstop
29#endif
30
3f480da3 31#include "wx/setup.h"
bbf1f0e5 32
21709999 33#if wxUSE_OLE && wxUSE_DRAG_AND_DROP
bbf1f0e5 34
3f480da3 35#include "wx/log.h"
bbf1f0e5
KB
36
37#ifdef __WIN32__
b64f0a5f 38 #if !defined(__GNUWIN32__) || wxUSE_NORLANDER_HEADERS
7f017c64
VZ
39 #if wxCHECK_W32API_VERSION( 1, 0 )
40 #include <windows.h>
41 #endif
3f480da3
VZ
42 #include <shlobj.h> // for DROPFILES structure
43 #endif
bbf1f0e5 44#else
3f480da3 45 #include <shellapi.h>
bbf1f0e5
KB
46#endif
47
9e2896e5 48#include "wx/dnd.h"
bbf1f0e5
KB
49
50#ifndef __WIN32__
3f480da3
VZ
51 #include <ole2.h>
52 #include <olestd.h>
bbf1f0e5
KB
53#endif
54
3f480da3 55#include "wx/msw/ole/oleutils.h"
bbf1f0e5
KB
56
57// ----------------------------------------------------------------------------
58// IDropTarget interface: forward all interesting things to wxDropTarget
59// (the name is unfortunate, but wx_I_DropTarget is not at all the same thing
60// as wxDropTarget which is 'public' class, while this one is private)
61// ----------------------------------------------------------------------------
62
63class wxIDropTarget : public IDropTarget
64{
65public:
8ee9d618 66 wxIDropTarget(wxDropTarget *p);
33ac7e6f 67 virtual ~wxIDropTarget();
bbf1f0e5 68
8ee9d618
VZ
69 // accessors for wxDropTarget
70 void SetHwnd(HWND hwnd) { m_hwnd = hwnd; }
bbf1f0e5 71
8ee9d618
VZ
72 // IDropTarget methods
73 STDMETHODIMP DragEnter(LPDATAOBJECT, DWORD, POINTL, LPDWORD);
74 STDMETHODIMP DragOver(DWORD, POINTL, LPDWORD);
75 STDMETHODIMP DragLeave();
76 STDMETHODIMP Drop(LPDATAOBJECT, DWORD, POINTL, LPDWORD);
77
78 DECLARE_IUNKNOWN_METHODS;
bbf1f0e5
KB
79
80protected:
8ee9d618
VZ
81 IDataObject *m_pIDataObject; // !NULL between DragEnter and DragLeave/Drop
82 wxDropTarget *m_pTarget; // the real target (we're just a proxy)
83
84 HWND m_hwnd; // window we're associated with
bbf1f0e5 85
8ee9d618
VZ
86 // get default drop effect for given keyboard flags
87 static inline DWORD GetDropEffect(DWORD flags);
bbf1f0e5
KB
88};
89
c9057ae1
VZ
90// ----------------------------------------------------------------------------
91// private functions
92// ----------------------------------------------------------------------------
93
94static wxDragResult ConvertDragEffectToResult(DWORD dwEffect);
95static DWORD ConvertDragResultToEffect(wxDragResult result);
96
bbf1f0e5
KB
97// ============================================================================
98// wxIDropTarget implementation
99// ============================================================================
100
8ee9d618 101// Name : static wxIDropTarget::GetDropEffect
bbf1f0e5 102// Purpose : determine the drop operation from keyboard/mouse state.
3f480da3 103// Returns : DWORD combined from DROPEFFECT_xxx constants
bbf1f0e5
KB
104// Params : [in] DWORD flags kbd & mouse flags as passed to
105// IDropTarget methods
106// Notes : We do "move" normally and "copy" if <Ctrl> is pressed,
3f480da3 107// which is the standard behaviour (currently there is no
bbf1f0e5
KB
108// way to redefine it)
109DWORD wxIDropTarget::GetDropEffect(DWORD flags)
110{
111 return flags & MK_CONTROL ? DROPEFFECT_COPY : DROPEFFECT_MOVE;
112}
113
114wxIDropTarget::wxIDropTarget(wxDropTarget *pTarget)
3f480da3
VZ
115{
116 m_cRef = 0;
bbf1f0e5 117 m_pTarget = pTarget;
3f480da3 118 m_pIDataObject = NULL;
bbf1f0e5
KB
119}
120
3f480da3
VZ
121wxIDropTarget::~wxIDropTarget()
122{
bbf1f0e5
KB
123}
124
125BEGIN_IID_TABLE(wxIDropTarget)
126 ADD_IID(Unknown)
127 ADD_IID(DropTarget)
128END_IID_TABLE;
129
130IMPLEMENT_IUNKNOWN_METHODS(wxIDropTarget)
131
bbf1f0e5
KB
132// Name : wxIDropTarget::DragEnter
133// Purpose : Called when the mouse enters the window (dragging something)
134// Returns : S_OK
135// Params : [in] IDataObject *pIDataSource : source data
136// [in] DWORD grfKeyState : kbd & mouse state
137// [in] POINTL pt : mouse coordinates
138// [out]DWORD *pdwEffect : effect flag
3f480da3 139// Notes :
bbf1f0e5
KB
140STDMETHODIMP wxIDropTarget::DragEnter(IDataObject *pIDataSource,
141 DWORD grfKeyState,
142 POINTL pt,
143 DWORD *pdwEffect)
144{
c5639a87 145 wxLogTrace(wxTRACE_OleCalls, wxT("IDropTarget::DragEnter"));
bbf1f0e5 146
c5639a87
VZ
147 wxASSERT_MSG( m_pIDataObject == NULL,
148 _T("drop target must have data object") );
149
150 // show the list of formats supported by the source data object for the
444ad3a7 151 // debugging purposes, this is quite useful sometimes - please don't remove
c5639a87
VZ
152#if 0
153 IEnumFORMATETC *penumFmt;
154 if ( SUCCEEDED(pIDataSource->EnumFormatEtc(DATADIR_GET, &penumFmt)) )
155 {
156 FORMATETC fmt;
157 while ( penumFmt->Next(1, &fmt, NULL) == S_OK )
158 {
159 wxLogDebug(_T("Drop source supports format %s"),
160 wxDataObject::GetFormatName(fmt.cfFormat));
161 }
162
163 penumFmt->Release();
164 }
165 else
166 {
167 wxLogLastError(_T("IDataObject::EnumFormatEtc"));
168 }
169#endif // 0
bbf1f0e5 170
8ee9d618
VZ
171 if ( !m_pTarget->IsAcceptedData(pIDataSource) ) {
172 // we don't accept this kind of data
173 *pdwEffect = DROPEFFECT_NONE;
bbf1f0e5 174
8ee9d618
VZ
175 return S_OK;
176 }
bbf1f0e5 177
8ee9d618
VZ
178 // get hold of the data object
179 m_pIDataObject = pIDataSource;
180 m_pIDataObject->AddRef();
bbf1f0e5 181
8ee9d618
VZ
182 // we need client coordinates to pass to wxWin functions
183 if ( !ScreenToClient(m_hwnd, (POINT *)&pt) )
184 {
f6bcfd97 185 wxLogLastError(wxT("ScreenToClient"));
8ee9d618 186 }
bbf1f0e5 187
8ee9d618
VZ
188 // give some visual feedback
189 *pdwEffect = ConvertDragResultToEffect(
190 m_pTarget->OnEnter(pt.x, pt.y,
191 ConvertDragEffectToResult(GetDropEffect(grfKeyState))
192 )
193 );
194
195 return S_OK;
bbf1f0e5
KB
196}
197
198// Name : wxIDropTarget::DragOver
199// Purpose : Indicates that the mouse was moved inside the window represented
200// by this drop target.
201// Returns : S_OK
202// Params : [in] DWORD grfKeyState kbd & mouse state
203// [in] POINTL pt mouse coordinates
204// [out]LPDWORD pdwEffect effect flag
3f480da3 205// Notes : We're called on every WM_MOUSEMOVE, so this function should be
bbf1f0e5
KB
206// very efficient.
207STDMETHODIMP wxIDropTarget::DragOver(DWORD grfKeyState,
208 POINTL pt,
209 LPDWORD pdwEffect)
210{
8ee9d618 211 // there are too many of them... wxLogDebug("IDropTarget::DragOver");
bbf1f0e5 212
8ee9d618
VZ
213 wxDragResult result;
214 if ( m_pIDataObject ) {
215 result = ConvertDragEffectToResult(GetDropEffect(grfKeyState));
216 }
217 else {
218 // can't accept data anyhow normally
219 result = wxDragNone;
220 }
c9057ae1 221
8ee9d618
VZ
222 // we need client coordinates to pass to wxWin functions
223 if ( !ScreenToClient(m_hwnd, (POINT *)&pt) )
224 {
f6bcfd97 225 wxLogLastError(wxT("ScreenToClient"));
8ee9d618 226 }
c9057ae1 227
8ee9d618
VZ
228 *pdwEffect = ConvertDragResultToEffect(
229 m_pTarget->OnDragOver(pt.x, pt.y, result)
230 );
231
232 return S_OK;
bbf1f0e5
KB
233}
234
235// Name : wxIDropTarget::DragLeave
236// Purpose : Informs the drop target that the operation has left its window.
237// Returns : S_OK
238// Notes : good place to do any clean-up
239STDMETHODIMP wxIDropTarget::DragLeave()
240{
c5639a87 241 wxLogTrace(wxTRACE_OleCalls, wxT("IDropTarget::DragLeave"));
bbf1f0e5
KB
242
243 // remove the UI feedback
244 m_pTarget->OnLeave();
245
246 // release the held object
247 RELEASE_AND_NULL(m_pIDataObject);
3f480da3 248
bbf1f0e5
KB
249 return S_OK;
250}
251
252// Name : wxIDropTarget::Drop
3f480da3 253// Purpose : Instructs the drop target to paste data that was just now
bbf1f0e5
KB
254// dropped on it.
255// Returns : S_OK
256// Params : [in] IDataObject *pIDataSource the data to paste
257// [in] DWORD grfKeyState kbd & mouse state
258// [in] POINTL pt where the drop occured?
259// [ouy]DWORD *pdwEffect operation effect
3f480da3
VZ
260// Notes :
261STDMETHODIMP wxIDropTarget::Drop(IDataObject *pIDataSource,
262 DWORD grfKeyState,
263 POINTL pt,
bbf1f0e5
KB
264 DWORD *pdwEffect)
265{
c5639a87 266 wxLogTrace(wxTRACE_OleCalls, wxT("IDropTarget::Drop"));
9e2896e5
VZ
267
268 // TODO I don't know why there is this parameter, but so far I assume
269 // that it's the same we've already got in DragEnter
270 wxASSERT( m_pIDataObject == pIDataSource );
271
272 // by default, nothing happens
273 *pdwEffect = DROPEFFECT_NONE;
274
8ee9d618
VZ
275 // we need client coordinates to pass to wxWin functions
276 if ( !ScreenToClient(m_hwnd, (POINT *)&pt) )
277 {
f6bcfd97 278 wxLogLastError(wxT("ScreenToClient"));
8ee9d618
VZ
279 }
280
9e2896e5
VZ
281 // first ask the drop target if it wants data
282 if ( m_pTarget->OnDrop(pt.x, pt.y) ) {
283 // it does, so give it the data source
284 m_pTarget->SetDataSource(pIDataSource);
285
286 // and now it has the data
8ee9d618 287 wxDragResult rc = ConvertDragEffectToResult(GetDropEffect(grfKeyState));
87a1e308 288 rc = m_pTarget->OnData(pt.x, pt.y, rc);
8ee9d618 289 if ( wxIsDragResultOk(rc) ) {
9e2896e5 290 // operation succeeded
8ee9d618 291 *pdwEffect = ConvertDragResultToEffect(rc);
9e2896e5
VZ
292 }
293 //else: *pdwEffect is already DROPEFFECT_NONE
bbf1f0e5 294 }
9e2896e5 295 //else: OnDrop() returned FALSE, no need to copy data
bbf1f0e5 296
9e2896e5
VZ
297 // release the held object
298 RELEASE_AND_NULL(m_pIDataObject);
bbf1f0e5 299
9e2896e5 300 return S_OK;
bbf1f0e5
KB
301}
302
303// ============================================================================
304// wxDropTarget implementation
305// ============================================================================
306
307// ----------------------------------------------------------------------------
308// ctor/dtor
309// ----------------------------------------------------------------------------
310
9e2896e5
VZ
311wxDropTarget::wxDropTarget(wxDataObject *dataObj)
312 : wxDropTargetBase(dataObj)
bbf1f0e5 313{
9e2896e5
VZ
314 // create an IDropTarget implementation which will notify us about d&d
315 // operations.
316 m_pIDropTarget = new wxIDropTarget(this);
317 m_pIDropTarget->AddRef();
bbf1f0e5
KB
318}
319
320wxDropTarget::~wxDropTarget()
321{
9e2896e5 322 ReleaseInterface(m_pIDropTarget);
bbf1f0e5
KB
323}
324
325// ----------------------------------------------------------------------------
326// [un]register drop handler
327// ----------------------------------------------------------------------------
328
329bool wxDropTarget::Register(WXHWND hwnd)
330{
9e2896e5
VZ
331 HRESULT hr = ::CoLockObjectExternal(m_pIDropTarget, TRUE, FALSE);
332 if ( FAILED(hr) ) {
161f4f73 333 wxLogApiError(wxT("CoLockObjectExternal"), hr);
9e2896e5
VZ
334 return FALSE;
335 }
bbf1f0e5 336
9e2896e5
VZ
337 hr = ::RegisterDragDrop((HWND) hwnd, m_pIDropTarget);
338 if ( FAILED(hr) ) {
339 ::CoLockObjectExternal(m_pIDropTarget, FALSE, FALSE);
bbf1f0e5 340
161f4f73 341 wxLogApiError(wxT("RegisterDragDrop"), hr);
9e2896e5
VZ
342 return FALSE;
343 }
bbf1f0e5 344
8ee9d618
VZ
345 // we will need the window handle for coords transformation later
346 m_pIDropTarget->SetHwnd((HWND)hwnd);
347
9e2896e5 348 return TRUE;
bbf1f0e5
KB
349}
350
351void wxDropTarget::Revoke(WXHWND hwnd)
352{
9e2896e5 353 HRESULT hr = ::RevokeDragDrop((HWND) hwnd);
bbf1f0e5 354
9e2896e5 355 if ( FAILED(hr) ) {
161f4f73 356 wxLogApiError(wxT("RevokeDragDrop"), hr);
9e2896e5 357 }
bbf1f0e5 358
9e2896e5 359 ::CoLockObjectExternal(m_pIDropTarget, FALSE, TRUE);
8ee9d618
VZ
360
361 m_pIDropTarget->SetHwnd(0);
bbf1f0e5
KB
362}
363
364// ----------------------------------------------------------------------------
9e2896e5 365// base class pure virtuals
bbf1f0e5 366// ----------------------------------------------------------------------------
9e2896e5
VZ
367
368// OnDrop() is called only if we previously returned TRUE from
369// IsAcceptedData(), so no need to check anything here
370bool wxDropTarget::OnDrop(wxCoord WXUNUSED(x), wxCoord WXUNUSED(y))
371{
372 return TRUE;
373}
374
375// copy the data from the data source to the target data object
376bool wxDropTarget::GetData()
bbf1f0e5 377{
9e2896e5
VZ
378 wxDataFormat format = GetSupportedFormat(m_pIDataSource);
379 if ( format == wxDF_INVALID ) {
380 // this is strange because IsAcceptedData() succeeded previously!
381 wxFAIL_MSG(wxT("strange - did supported formats list change?"));
382
383 return FALSE;
384 }
385
386 STGMEDIUM stm;
387 FORMATETC fmtMemory;
388 fmtMemory.cfFormat = format;
389 fmtMemory.ptd = NULL;
390 fmtMemory.dwAspect = DVASPECT_CONTENT;
391 fmtMemory.lindex = -1;
392 fmtMemory.tymed = TYMED_HGLOBAL; // TODO to add other media
393
394 bool rc = FALSE;
395
396 HRESULT hr = m_pIDataSource->GetData(&fmtMemory, &stm);
397 if ( SUCCEEDED(hr) ) {
398 IDataObject *dataObject = m_dataObject->GetInterface();
399
400 hr = dataObject->SetData(&fmtMemory, &stm, TRUE);
401 if ( SUCCEEDED(hr) ) {
402 rc = TRUE;
403 }
404 else {
444ad3a7 405 wxLogApiError(wxT("IDataObject::SetData()"), hr);
9e2896e5
VZ
406 }
407 }
408 else {
444ad3a7 409 wxLogApiError(wxT("IDataObject::GetData()"), hr);
bbf1f0e5 410 }
bbf1f0e5 411
9e2896e5 412 return rc;
bbf1f0e5
KB
413}
414
9e2896e5
VZ
415// ----------------------------------------------------------------------------
416// callbacks used by wxIDropTarget
417// ----------------------------------------------------------------------------
bbf1f0e5 418
9e2896e5
VZ
419// we need a data source, so wxIDropTarget gives it to us using this function
420void wxDropTarget::SetDataSource(IDataObject *pIDataSource)
bbf1f0e5 421{
9e2896e5 422 m_pIDataSource = pIDataSource;
bbf1f0e5
KB
423}
424
9e2896e5
VZ
425// determine if we accept data of this type
426bool wxDropTarget::IsAcceptedData(IDataObject *pIDataSource) const
bbf1f0e5 427{
9e2896e5 428 return GetSupportedFormat(pIDataSource) != wxDF_INVALID;
bbf1f0e5
KB
429}
430
9e2896e5
VZ
431// ----------------------------------------------------------------------------
432// helper functions
433// ----------------------------------------------------------------------------
434
435wxDataFormat wxDropTarget::GetSupportedFormat(IDataObject *pIDataSource) const
bbf1f0e5 436{
9e2896e5
VZ
437 // this strucutre describes a data of any type (first field will be
438 // changing) being passed through global memory block.
439 static FORMATETC s_fmtMemory = {
440 0,
441 NULL,
442 DVASPECT_CONTENT,
443 -1,
444 TYMED_HGLOBAL // TODO is it worth supporting other tymeds here?
445 };
446
447 // get the list of supported formats
448 size_t nFormats = m_dataObject->GetFormatCount(wxDataObject::Set);
33ac7e6f 449 wxDataFormat format;
c5639a87 450 wxDataFormat *formats;
9e2896e5
VZ
451 formats = nFormats == 1 ? &format : new wxDataFormat[nFormats];
452
453 m_dataObject->GetAllFormats(formats, wxDataObject::Set);
454
455 // cycle through all supported formats
456 size_t n;
457 for ( n = 0; n < nFormats; n++ ) {
458 s_fmtMemory.cfFormat = formats[n];
459
460 // NB: don't use SUCCEEDED macro here: QueryGetData returns S_FALSE
461 // for file drag and drop (format == CF_HDROP)
462 if ( pIDataSource->QueryGetData(&s_fmtMemory) == S_OK ) {
463 format = formats[n];
464
465 break;
466 }
467 }
468
469 if ( formats != &format ) {
470 // free memory if we allocated it
471 delete [] formats;
472 }
473
90bc25c7 474 return n < nFormats ? format : wxFormatInvalid;
bbf1f0e5
KB
475}
476
c9057ae1
VZ
477// ----------------------------------------------------------------------------
478// private functions
479// ----------------------------------------------------------------------------
480
481static wxDragResult ConvertDragEffectToResult(DWORD dwEffect)
482{
483 switch ( dwEffect ) {
484 case DROPEFFECT_COPY:
485 return wxDragCopy;
486
487 case DROPEFFECT_MOVE:
488 return wxDragMove;
489
490 default:
491 wxFAIL_MSG(wxT("invalid value in ConvertDragEffectToResult"));
492 // fall through
493
494 case DROPEFFECT_NONE:
495 return wxDragNone;
496 }
497}
498
499static DWORD ConvertDragResultToEffect(wxDragResult result)
500{
501 switch ( result ) {
502 case wxDragCopy:
503 return DROPEFFECT_COPY;
504
505 case wxDragMove:
506 return DROPEFFECT_MOVE;
507
508 default:
509 wxFAIL_MSG(wxT("invalid value in ConvertDragResultToEffect"));
510 // fall through
511
512 case wxDragNone:
513 return DROPEFFECT_NONE;
514 }
515}
516
bbf1f0e5 517#endif
47d67540 518 // wxUSE_DRAG_AND_DROP