#if wxUSE_DRAG_AND_DROP
#include "wx/log.h"
-#include "wx/dataobj.h"
-#include "wx/msw/ole/dropsrc.h"
+#include "wx/dnd.h"
#include <windows.h>
+
#ifdef wxUSE_NORLANDER_HEADERS
-#include <ole2.h>
+ #include <ole2.h>
#endif
#ifndef __WIN32__
- #include <ole2.h>
- #include <olestd.h>
+ #include <ole2.h>
+ #include <olestd.h>
#endif
#include <oleauto.h>
m_pIDropSource->AddRef();
}
-wxDropSource::wxDropSource(wxWindow* WXUNUSED(win))
+wxDropSource::wxDropSource(wxWindow* WXUNUSED(win),
+ const wxIcon & WXUNUSED(go),
+ const wxIcon & WXUNUSED(stop))
{
Init();
- m_pData = NULL;
}
-wxDropSource::wxDropSource(wxDataObject& data, wxWindow* WXUNUSED(win))
+wxDropSource::wxDropSource(wxDataObject& data,
+ wxWindow* WXUNUSED(win),
+ const wxIcon & WXUNUSED(go),
+ const wxIcon & WXUNUSED(stop))
{
Init();
SetData(data);
}
-void wxDropSource::SetData(wxDataObject& data)
-{
- m_pData = &data;
-}
-
wxDropSource::~wxDropSource()
{
m_pIDropSource->Release();
// Notes : you must call SetData() before if you had used def ctor
wxDragResult wxDropSource::DoDragDrop(bool bAllowMove)
{
- wxCHECK_MSG( m_pData != NULL, wxDragNone, _T("No data in wxDropSource!") );
+ wxCHECK_MSG( m_data != NULL, wxDragNone, wxT("No data in wxDropSource!") );
DWORD dwEffect;
- HRESULT hr = ::DoDragDrop(m_pData->GetInterface(),
+ HRESULT hr = ::DoDragDrop(m_data->GetInterface(),
m_pIDropSource,
bAllowMove ? DROPEFFECT_COPY | DROPEFFECT_MOVE
: DROPEFFECT_COPY,
else {
if ( FAILED(hr) ) {
wxLogApiError("DoDragDrop", hr);
- wxLogError(_T("Drag & drop operation failed."));
+ wxLogError(wxT("Drag & drop operation failed."));
}
else {
- wxLogDebug(_T("Unexpected success return code %08lx from DoDragDrop."), hr);
+ wxLogDebug(wxT("Unexpected success return code %08lx from DoDragDrop."), hr);
}
return wxDragError;