2002-08-13 05:21:53 +02:00
|
|
|
/*
|
|
|
|
* file system folder
|
|
|
|
*
|
|
|
|
* Copyright 1997 Marcus Meissner
|
|
|
|
* Copyright 1998, 1999, 2002 Juergen Schmied
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "wine/port.h"
|
|
|
|
|
2003-09-06 01:08:26 +02:00
|
|
|
#include <stdarg.h>
|
2002-08-13 05:21:53 +02:00
|
|
|
#include <string.h>
|
|
|
|
|
2003-09-06 01:08:26 +02:00
|
|
|
#include "windef.h"
|
2002-08-13 05:21:53 +02:00
|
|
|
#include "winbase.h"
|
|
|
|
#include "winreg.h"
|
2003-09-09 21:39:31 +02:00
|
|
|
#include "wingdi.h"
|
|
|
|
#include "winuser.h"
|
2002-08-13 05:21:53 +02:00
|
|
|
|
2002-12-05 21:33:07 +01:00
|
|
|
#include "objbase.h"
|
|
|
|
#include "ole2.h"
|
2002-08-13 05:21:53 +02:00
|
|
|
#include "shlguid.h"
|
2003-09-03 02:14:12 +02:00
|
|
|
#include "shlobj.h"
|
2002-08-13 05:21:53 +02:00
|
|
|
|
|
|
|
#include "wine/debug.h"
|
|
|
|
#include "debughlp.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL (shell);
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* IDropTargetHelper implementation
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
ICOM_VFIELD (IDropTargetHelper);
|
|
|
|
DWORD ref;
|
|
|
|
} IDropTargetHelperImpl;
|
|
|
|
|
|
|
|
static struct ICOM_VTABLE (IDropTargetHelper) vt_IDropTargetHelper;
|
|
|
|
|
|
|
|
#define _IUnknown_(This) (IUnknown*)&(This->lpVtbl)
|
|
|
|
#define _IDropTargetHelper_(This) (IDropTargetHelper*)&(This->lpVtbl)
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* IDropTargetHelper_Constructor
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI IDropTargetHelper_Constructor (IUnknown * pUnkOuter, REFIID riid, LPVOID * ppv)
|
|
|
|
{
|
|
|
|
IDropTargetHelperImpl *dth;
|
|
|
|
|
|
|
|
TRACE ("unkOut=%p %s\n", pUnkOuter, shdebugstr_guid (riid));
|
|
|
|
|
|
|
|
if (!ppv)
|
|
|
|
return E_POINTER;
|
|
|
|
if (pUnkOuter)
|
|
|
|
return CLASS_E_NOAGGREGATION;
|
|
|
|
|
|
|
|
dth = (IDropTargetHelperImpl *) LocalAlloc (GMEM_ZEROINIT, sizeof (IDropTargetHelperImpl));
|
|
|
|
if (!dth) return E_OUTOFMEMORY;
|
|
|
|
|
|
|
|
dth->ref = 0;
|
2003-04-10 20:17:34 +02:00
|
|
|
dth->lpVtbl = &vt_IDropTargetHelper;
|
2002-08-13 05:21:53 +02:00
|
|
|
|
|
|
|
if (!SUCCEEDED (IUnknown_QueryInterface (_IUnknown_ (dth), riid, ppv))) {
|
|
|
|
IUnknown_Release (_IUnknown_ (dth));
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
TRACE ("--(%p)\n", dth);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* IDropTargetHelper_fnQueryInterface
|
|
|
|
*/
|
|
|
|
static HRESULT WINAPI IDropTargetHelper_fnQueryInterface (IDropTargetHelper * iface, REFIID riid, LPVOID * ppvObj)
|
|
|
|
{
|
|
|
|
ICOM_THIS (IDropTargetHelperImpl, iface);
|
|
|
|
|
|
|
|
TRACE ("(%p)->(%s,%p)\n", This, shdebugstr_guid (riid), ppvObj);
|
|
|
|
|
|
|
|
*ppvObj = NULL;
|
|
|
|
|
|
|
|
if (IsEqualIID (riid, &IID_IUnknown) || IsEqualIID (riid, &IID_IDropTargetHelper)) {
|
|
|
|
*ppvObj = This;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*ppvObj) {
|
|
|
|
IUnknown_AddRef ((IUnknown *) (*ppvObj));
|
|
|
|
TRACE ("-- Interface: (%p)->(%p)\n", ppvObj, *ppvObj);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
FIXME ("-- Interface: E_NOINTERFACE\n");
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI IDropTargetHelper_fnAddRef (IDropTargetHelper * iface)
|
|
|
|
{
|
|
|
|
ICOM_THIS (IDropTargetHelperImpl, iface);
|
|
|
|
|
|
|
|
TRACE ("(%p)->(count=%lu)\n", This, This->ref);
|
|
|
|
|
|
|
|
return ++(This->ref);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI IDropTargetHelper_fnRelease (IDropTargetHelper * iface)
|
|
|
|
{
|
|
|
|
ICOM_THIS (IDropTargetHelperImpl, iface);
|
|
|
|
|
|
|
|
TRACE ("(%p)->(count=%lu)\n", This, This->ref);
|
|
|
|
|
|
|
|
if (!--(This->ref)) {
|
2002-10-25 23:01:29 +02:00
|
|
|
TRACE("-- destroying (%p)\n", This);
|
|
|
|
LocalFree ((HLOCAL) This);
|
|
|
|
return 0;
|
2002-08-13 05:21:53 +02:00
|
|
|
}
|
|
|
|
return This->ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IDropTargetHelper_fnDragEnter (
|
|
|
|
IDropTargetHelper * iface,
|
|
|
|
HWND hwndTarget,
|
|
|
|
IDataObject* pDataObject,
|
|
|
|
POINT* ppt,
|
|
|
|
DWORD dwEffect)
|
|
|
|
{
|
|
|
|
ICOM_THIS (IDropTargetHelperImpl, iface);
|
2002-11-22 00:56:42 +01:00
|
|
|
FIXME ("(%p)->(%p %p %p 0x%08lx)\n", This,hwndTarget, pDataObject, ppt, dwEffect);
|
2002-08-13 05:21:53 +02:00
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IDropTargetHelper_fnDragLeave (IDropTargetHelper * iface)
|
|
|
|
{
|
|
|
|
ICOM_THIS (IDropTargetHelperImpl, iface);
|
|
|
|
FIXME ("(%p)->()\n", This);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IDropTargetHelper_fnDragOver (IDropTargetHelper * iface, POINT* ppt, DWORD dwEffect)
|
|
|
|
{
|
|
|
|
ICOM_THIS (IDropTargetHelperImpl, iface);
|
|
|
|
FIXME ("(%p)->(%p 0x%08lx)\n", This, ppt, dwEffect);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IDropTargetHelper_fnDrop (IDropTargetHelper * iface, IDataObject* pDataObject, POINT* ppt, DWORD dwEffect)
|
|
|
|
{
|
|
|
|
ICOM_THIS (IDropTargetHelperImpl, iface);
|
|
|
|
FIXME ("(%p)->(%p %p 0x%08lx)\n", This, pDataObject, ppt, dwEffect);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IDropTargetHelper_fnShow (IDropTargetHelper * iface, BOOL fShow)
|
|
|
|
{
|
|
|
|
ICOM_THIS (IDropTargetHelperImpl, iface);
|
|
|
|
FIXME ("(%p)->(%u)\n", This, fShow);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ICOM_VTABLE (IDropTargetHelper) vt_IDropTargetHelper =
|
|
|
|
{
|
|
|
|
ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
|
|
|
|
IDropTargetHelper_fnQueryInterface,
|
|
|
|
IDropTargetHelper_fnAddRef,
|
|
|
|
IDropTargetHelper_fnRelease,
|
|
|
|
IDropTargetHelper_fnDragEnter,
|
|
|
|
IDropTargetHelper_fnDragLeave,
|
|
|
|
IDropTargetHelper_fnDragOver,
|
|
|
|
IDropTargetHelper_fnDrop,
|
|
|
|
IDropTargetHelper_fnShow
|
|
|
|
};
|