dragdrophelper.c 7.18 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 *	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
19
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 21 22 23 24
 */

#include "config.h"
#include "wine/port.h"

25
#include <stdarg.h>
26 27
#include <string.h>

28 29
#define COBJMACROS

30
#include "windef.h"
31 32
#include "winbase.h"
#include "winreg.h"
33 34
#include "wingdi.h"
#include "winuser.h"
35

36 37
#include "objbase.h"
#include "ole2.h"
38
#include "shlguid.h"
39
#include "shlobj.h"
40 41 42 43 44 45 46 47 48 49

#include "wine/debug.h"
#include "debughlp.h"

WINE_DEFAULT_DEBUG_CHANNEL (shell);

/***********************************************************************
*   IDropTargetHelper implementation
*/

50 51
typedef struct
{
52
    IDropTargetHelper IDropTargetHelper_iface;
53
    IDragSourceHelper IDragSourceHelper_iface;
Mike McCormack's avatar
Mike McCormack committed
54
    LONG ref;
55 56 57 58 59 60
} dragdrophelper;

static inline dragdrophelper *impl_from_IDropTargetHelper(IDropTargetHelper *iface)
{
    return CONTAINING_RECORD(iface, dragdrophelper, IDropTargetHelper_iface);
}
61

62
static inline dragdrophelper *impl_from_IDragSourceHelper(IDragSourceHelper *iface)
63
{
64
    return CONTAINING_RECORD(iface, dragdrophelper, IDragSourceHelper_iface);
65
}
66 67 68 69 70 71

/**************************************************************************
 *	IDropTargetHelper_fnQueryInterface
 */
static HRESULT WINAPI IDropTargetHelper_fnQueryInterface (IDropTargetHelper * iface, REFIID riid, LPVOID * ppvObj)
{
72
    dragdrophelper *This = impl_from_IDropTargetHelper(iface);
73 74 75 76 77

    TRACE ("(%p)->(%s,%p)\n", This, shdebugstr_guid (riid), ppvObj);

    *ppvObj = NULL;

78 79 80 81 82 83 84
    if (IsEqualIID (riid, &IID_IUnknown) || IsEqualIID (riid, &IID_IDropTargetHelper))
    {
        *ppvObj = &This->IDropTargetHelper_iface;
    }
    else if (IsEqualIID (riid, &IID_IDragSourceHelper))
    {
        *ppvObj = &This->IDragSourceHelper_iface;
85 86 87 88 89 90 91 92 93 94 95 96 97
    }

    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)
{
98
    dragdrophelper *This = impl_from_IDropTargetHelper(iface);
99
    ULONG refCount = InterlockedIncrement(&This->ref);
100

101
    TRACE ("(%p)->(count=%u)\n", This, refCount - 1);
102

103
    return refCount;
104 105 106 107
}

static ULONG WINAPI IDropTargetHelper_fnRelease (IDropTargetHelper * iface)
{
108
    dragdrophelper *This = impl_from_IDropTargetHelper(iface);
109
    ULONG refCount = InterlockedDecrement(&This->ref);
110

111
    TRACE ("(%p)->(count=%u)\n", This, refCount + 1);
112

113
    if (!refCount) {
114 115
        TRACE ("-- destroying (%p)\n", This);
        LocalFree (This);
116
        return 0;
117
    }
118
    return refCount;
119 120 121 122 123 124 125 126 127
}

static HRESULT WINAPI IDropTargetHelper_fnDragEnter (
        IDropTargetHelper * iface,
	HWND hwndTarget,
	IDataObject* pDataObject,
	POINT* ppt,
	DWORD dwEffect)
{
128
    dragdrophelper *This = impl_from_IDropTargetHelper(iface);
129
    FIXME ("(%p)->(%p %p %p 0x%08x)\n", This,hwndTarget, pDataObject, ppt, dwEffect);
130 131 132 133 134
    return E_NOTIMPL;
}

static HRESULT WINAPI IDropTargetHelper_fnDragLeave (IDropTargetHelper * iface)
{
135
    dragdrophelper *This = impl_from_IDropTargetHelper(iface);
136 137 138 139 140 141
    FIXME ("(%p)->()\n", This);
    return E_NOTIMPL;
}

static HRESULT WINAPI IDropTargetHelper_fnDragOver (IDropTargetHelper * iface, POINT* ppt, DWORD dwEffect)
{
142
    dragdrophelper *This = impl_from_IDropTargetHelper(iface);
143
    FIXME ("(%p)->(%p 0x%08x)\n", This, ppt, dwEffect);
144 145 146 147 148
    return E_NOTIMPL;
}

static HRESULT WINAPI IDropTargetHelper_fnDrop (IDropTargetHelper * iface, IDataObject* pDataObject, POINT* ppt, DWORD dwEffect)
{
149
    dragdrophelper *This = impl_from_IDropTargetHelper(iface);
150
    FIXME ("(%p)->(%p %p 0x%08x)\n", This, pDataObject, ppt, dwEffect);
151 152 153 154 155
    return E_NOTIMPL;
}

static HRESULT WINAPI IDropTargetHelper_fnShow (IDropTargetHelper * iface, BOOL fShow)
{
156
    dragdrophelper *This = impl_from_IDropTargetHelper(iface);
157 158 159 160
    FIXME ("(%p)->(%u)\n", This, fShow);
    return E_NOTIMPL;
}

161
static const IDropTargetHelperVtbl DropTargetHelperVtbl =
162
{
163 164 165 166 167 168 169 170
    IDropTargetHelper_fnQueryInterface,
    IDropTargetHelper_fnAddRef,
    IDropTargetHelper_fnRelease,
    IDropTargetHelper_fnDragEnter,
    IDropTargetHelper_fnDragLeave,
    IDropTargetHelper_fnDragOver,
    IDropTargetHelper_fnDrop,
    IDropTargetHelper_fnShow
171
};
172

173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
static HRESULT WINAPI DragSourceHelper_QueryInterface (IDragSourceHelper * iface, REFIID riid, LPVOID * ppv)
{
    dragdrophelper *This = impl_from_IDragSourceHelper(iface);
    return IDropTargetHelper_fnQueryInterface(&This->IDropTargetHelper_iface, riid, ppv);
}

static ULONG WINAPI DragSourceHelper_AddRef (IDragSourceHelper * iface)
{
    dragdrophelper *This = impl_from_IDragSourceHelper(iface);
    return IDropTargetHelper_fnAddRef(&This->IDropTargetHelper_iface);
}

static ULONG WINAPI DragSourceHelper_Release (IDragSourceHelper * iface)
{
    dragdrophelper *This = impl_from_IDragSourceHelper(iface);
    return IDropTargetHelper_fnRelease(&This->IDropTargetHelper_iface);
}

static HRESULT WINAPI DragSourceHelper_InitializeFromBitmap(IDragSourceHelper *iface,
    SHDRAGIMAGE *dragimage, IDataObject *object)
{
    dragdrophelper *This = impl_from_IDragSourceHelper(iface);

    FIXME("(%p)->(%p, %p): stub\n", This, dragimage, object);

    return E_NOTIMPL;
}

static HRESULT WINAPI DragSourceHelper_InitializeFromWindow(IDragSourceHelper *iface, HWND hwnd,
    POINT *pt, IDataObject *object)
{
    dragdrophelper *This = impl_from_IDragSourceHelper(iface);

    FIXME("(%p)->(%p, %s, %p): stub\n", This, hwnd, wine_dbgstr_point(pt), object);

    return E_NOTIMPL;
}

static const IDragSourceHelperVtbl DragSourceHelperVtbl =
{
    DragSourceHelper_QueryInterface,
    DragSourceHelper_AddRef,
    DragSourceHelper_Release,
    DragSourceHelper_InitializeFromBitmap,
    DragSourceHelper_InitializeFromWindow
};

220 221 222 223 224
/**************************************************************************
*	IDropTargetHelper_Constructor
*/
HRESULT WINAPI IDropTargetHelper_Constructor (IUnknown * pUnkOuter, REFIID riid, LPVOID * ppv)
{
225
    dragdrophelper *dth;
226 227 228 229 230 231 232 233 234
    HRESULT hr;

    TRACE ("outer=%p %s %p\n", pUnkOuter, shdebugstr_guid (riid), ppv);

    if (!ppv)
	return E_POINTER;
    if (pUnkOuter)
	return CLASS_E_NOAGGREGATION;

235
    dth = LocalAlloc (LMEM_ZEROINIT, sizeof (dragdrophelper));
236 237
    if (!dth) return E_OUTOFMEMORY;

238 239
    dth->IDropTargetHelper_iface.lpVtbl = &DropTargetHelperVtbl;
    dth->IDragSourceHelper_iface.lpVtbl = &DragSourceHelperVtbl;
240 241 242 243 244 245 246
    dth->ref = 1;

    hr = IDropTargetHelper_QueryInterface (&dth->IDropTargetHelper_iface, riid, ppv);
    IDropTargetHelper_Release (&dth->IDropTargetHelper_iface);

    return hr;
}