2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
#ifndef _nsNativeDragTarget_h_
|
|
|
|
#define _nsNativeDragTarget_h_
|
|
|
|
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsIDragSession.h"
|
|
|
|
#include <ole2.h>
|
2007-11-16 20:31:32 -08:00
|
|
|
#include <shlobj.h>
|
2008-03-12 03:46:41 -07:00
|
|
|
|
2007-11-16 20:31:32 -08:00
|
|
|
#ifndef IDropTargetHelper
|
|
|
|
#include <shobjidl.h> // Vista drag image interfaces
|
2013-12-15 16:00:54 -08:00
|
|
|
#undef LogSeverity // SetupAPI.h #defines this as DWORD
|
2007-11-16 20:31:32 -08:00
|
|
|
#endif
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-06-14 11:28:06 -07:00
|
|
|
#include "mozilla/Attributes.h"
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
class nsIDragService;
|
|
|
|
class nsIWidget;
|
|
|
|
|
|
|
|
struct IDataObject;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* nsNativeDragTarget implements the IDropTarget interface and gets most of its
|
|
|
|
* behavior from the associated adapter (m_dragDrop).
|
|
|
|
*/
|
|
|
|
|
2012-06-14 11:28:06 -07:00
|
|
|
class nsNativeDragTarget MOZ_FINAL : public IDropTarget
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
public:
|
2012-07-25 08:09:16 -07:00
|
|
|
nsNativeDragTarget(nsIWidget * aWidget);
|
2007-03-22 10:30:00 -07:00
|
|
|
~nsNativeDragTarget();
|
|
|
|
|
|
|
|
// IUnknown members - see iunknown.h for documentation
|
|
|
|
STDMETHODIMP QueryInterface(REFIID, void**);
|
|
|
|
STDMETHODIMP_(ULONG) AddRef();
|
|
|
|
STDMETHODIMP_(ULONG) Release();
|
|
|
|
|
|
|
|
// IDataTarget members
|
|
|
|
|
|
|
|
// Set pEffect based on whether this object can support a drop based on
|
|
|
|
// the data available from pSource, the key and mouse states specified
|
|
|
|
// in grfKeyState, and the coordinates specified by point. This is
|
|
|
|
// called by OLE when a drag enters this object's window (as registered
|
|
|
|
// by Initialize).
|
|
|
|
STDMETHODIMP DragEnter(LPDATAOBJECT pSource, DWORD grfKeyState,
|
|
|
|
POINTL point, DWORD* pEffect);
|
|
|
|
|
|
|
|
// Similar to DragEnter except it is called frequently while the drag
|
|
|
|
// is over this object's window.
|
|
|
|
STDMETHODIMP DragOver(DWORD grfKeyState, POINTL point, DWORD* pEffect);
|
|
|
|
|
|
|
|
// Release the drag-drop source and put internal state back to the point
|
|
|
|
// before the call to DragEnter. This is called when the drag leaves
|
|
|
|
// without a drop occurring.
|
|
|
|
STDMETHODIMP DragLeave();
|
|
|
|
|
|
|
|
// If point is within our region of interest and pSource's data supports
|
|
|
|
// one of our formats, get the data and set pEffect according to
|
|
|
|
// grfKeyState (DROPEFFECT_MOVE if the control key was not pressed,
|
|
|
|
// DROPEFFECT_COPY if the control key was pressed). Otherwise return
|
|
|
|
// E_FAIL.
|
|
|
|
STDMETHODIMP Drop(LPDATAOBJECT pSource, DWORD grfKeyState,
|
|
|
|
POINTL point, DWORD* pEffect);
|
2010-06-02 06:02:05 -07:00
|
|
|
/**
|
|
|
|
* Cancel the current drag session, if any.
|
|
|
|
*/
|
|
|
|
void DragCancel();
|
2007-09-28 15:45:14 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
protected:
|
|
|
|
|
2011-09-01 06:48:48 -07:00
|
|
|
void GetGeckoDragAction(DWORD grfKeyState, LPDWORD pdwEffect,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t * aGeckoAction);
|
|
|
|
void ProcessDrag(uint32_t aEventType, DWORD grfKeyState,
|
2007-03-22 10:30:00 -07:00
|
|
|
POINTL pt, DWORD* pdwEffect);
|
2012-08-22 08:56:38 -07:00
|
|
|
void DispatchDragDropEvent(uint32_t aType, POINTL pt);
|
2011-09-01 06:48:48 -07:00
|
|
|
void AddLinkSupportIfCanBeGenerated(LPDATAOBJECT aIDataSource);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Native Stuff
|
|
|
|
ULONG m_cRef; // reference count
|
|
|
|
HWND mHWnd;
|
2011-09-01 06:48:48 -07:00
|
|
|
DWORD mEffectsAllowed;
|
2011-09-30 06:14:44 -07:00
|
|
|
DWORD mEffectsPreferred;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mTookOwnRef;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Gecko Stuff
|
2012-07-25 08:09:16 -07:00
|
|
|
nsIWidget * mWidget;
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIDragService * mDragService;
|
2012-02-01 06:30:05 -08:00
|
|
|
// Drag target helper
|
|
|
|
IDropTargetHelper * GetDropTargetHelper();
|
|
|
|
|
2007-11-16 20:31:32 -08:00
|
|
|
|
2012-02-01 06:30:05 -08:00
|
|
|
private:
|
2007-11-16 20:31:32 -08:00
|
|
|
// Drag target helper
|
|
|
|
IDropTargetHelper * mDropTargetHelper;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _nsNativeDragTarget_h_
|
|
|
|
|
|
|
|
|