2001-09-28 20:14:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
2004-04-18 22:01:16 +00:00
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
1999-03-23 15:37:34 +00:00
|
|
|
*
|
2004-04-18 22:01:16 +00:00
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
1999-03-23 15:37:34 +00:00
|
|
|
*
|
2001-09-28 20:14:13 +00:00
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
1999-03-23 15:37:34 +00:00
|
|
|
*
|
1999-11-06 03:40:37 +00:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2004-04-18 22:01:16 +00:00
|
|
|
* The Initial Developer of the Original Code is
|
2001-09-28 20:14:13 +00:00
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
1999-11-06 03:40:37 +00:00
|
|
|
*
|
2001-09-28 20:14:13 +00:00
|
|
|
* Contributor(s):
|
2001-01-05 23:47:09 +00:00
|
|
|
* Mike Pinkerton (pinkerton@netscape.com)
|
|
|
|
* Mark Hammond (MarkH@ActiveState.com)
|
2004-12-07 14:13:54 +00:00
|
|
|
* David Gardiner <david.gardiner@unisa.edu.au>
|
2001-09-28 20:14:13 +00:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
2004-04-18 22:01:16 +00:00
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
2001-09-28 20:14:13 +00:00
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
2004-04-18 22:01:16 +00:00
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
2001-09-28 20:14:13 +00:00
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
2004-04-18 22:01:16 +00:00
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
2001-09-28 20:14:13 +00:00
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
1999-03-23 15:37:34 +00:00
|
|
|
|
2004-07-16 07:28:10 +00:00
|
|
|
#include <ole2.h>
|
|
|
|
#include <oleidl.h>
|
|
|
|
#include <shlobj.h>
|
2006-08-15 07:16:10 +00:00
|
|
|
#include <shlwapi.h>
|
2004-07-16 07:28:10 +00:00
|
|
|
|
|
|
|
// shellapi.h is needed to build with WIN32_LEAN_AND_MEAN
|
|
|
|
#include <shellapi.h>
|
|
|
|
|
1999-03-23 15:37:34 +00:00
|
|
|
#include "nsDragService.h"
|
|
|
|
#include "nsITransferable.h"
|
|
|
|
#include "nsDataObj.h"
|
1999-04-06 20:25:09 +00:00
|
|
|
|
|
|
|
#include "nsWidgetsCID.h"
|
1999-04-17 13:49:39 +00:00
|
|
|
#include "nsNativeDragTarget.h"
|
|
|
|
#include "nsNativeDragSource.h"
|
1999-04-06 20:25:09 +00:00
|
|
|
#include "nsClipboard.h"
|
1999-05-07 19:55:00 +00:00
|
|
|
#include "nsISupportsArray.h"
|
2004-12-07 14:13:54 +00:00
|
|
|
#include "nsIDocument.h"
|
1999-05-26 21:08:21 +00:00
|
|
|
#include "nsDataObjCollection.h"
|
1999-03-23 15:37:34 +00:00
|
|
|
|
2003-06-18 19:12:54 +00:00
|
|
|
#include "nsAutoPtr.h"
|
|
|
|
|
2006-02-20 20:48:35 +00:00
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsEscape.h"
|
|
|
|
#include "nsISupportsPrimitives.h"
|
|
|
|
#include "nsNetUtil.h"
|
|
|
|
#include "nsIURL.h"
|
|
|
|
#include "nsCWebBrowserPersist.h"
|
|
|
|
#include "nsToolkit.h"
|
|
|
|
#include "nsCRT.h"
|
|
|
|
#include "nsDirectoryServiceDefs.h"
|
|
|
|
#include "nsUnicharUtils.h"
|
2007-11-17 04:31:32 +00:00
|
|
|
#include "gfxASurface.h"
|
|
|
|
#include "gfxContext.h"
|
|
|
|
#include "nsMathUtils.h"
|
2006-02-20 20:48:35 +00:00
|
|
|
|
1999-03-23 15:37:34 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// DragService constructor
|
|
|
|
//
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
nsDragService::nsDragService()
|
2008-09-28 20:57:33 +00:00
|
|
|
: mNativeDragSrc(nsnull), mNativeDragTarget(nsnull), mDataObject(nsnull), mSentLocalDropEvent(PR_FALSE)
|
1999-03-23 15:37:34 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// DragService destructor
|
|
|
|
//
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
nsDragService::~nsDragService()
|
|
|
|
{
|
1999-04-17 13:49:39 +00:00
|
|
|
NS_IF_RELEASE(mNativeDragSrc);
|
|
|
|
NS_IF_RELEASE(mNativeDragTarget);
|
|
|
|
NS_IF_RELEASE(mDataObject);
|
1999-03-23 15:37:34 +00:00
|
|
|
}
|
|
|
|
|
2007-11-17 04:31:32 +00:00
|
|
|
PRBool
|
|
|
|
nsDragService::CreateDragImage(nsIDOMNode *aDOMNode,
|
|
|
|
nsIScriptableRegion *aRegion,
|
|
|
|
SHDRAGIMAGE *psdi)
|
|
|
|
{
|
|
|
|
if (!psdi)
|
|
|
|
return PR_FALSE;
|
|
|
|
|
|
|
|
memset(psdi, 0, sizeof(SHDRAGIMAGE));
|
|
|
|
if (!aDOMNode)
|
|
|
|
return PR_FALSE;
|
|
|
|
|
|
|
|
// Prepare the drag image
|
2009-01-15 03:27:09 +00:00
|
|
|
nsIntRect dragRect;
|
2007-11-17 04:31:32 +00:00
|
|
|
nsRefPtr<gfxASurface> surface;
|
2008-01-08 22:03:53 +00:00
|
|
|
nsPresContext* pc;
|
2007-11-17 04:31:32 +00:00
|
|
|
DrawDrag(aDOMNode, aRegion,
|
|
|
|
mScreenX, mScreenY,
|
2008-01-08 22:03:53 +00:00
|
|
|
&dragRect, getter_AddRefs(surface), &pc);
|
2007-11-17 04:31:32 +00:00
|
|
|
if (!surface)
|
|
|
|
return PR_FALSE;
|
|
|
|
|
|
|
|
PRUint32 bmWidth = dragRect.width, bmHeight = dragRect.height;
|
|
|
|
|
|
|
|
if (bmWidth == 0 || bmHeight == 0)
|
|
|
|
return PR_FALSE;
|
|
|
|
|
|
|
|
psdi->crColorKey = CLR_NONE;
|
|
|
|
|
|
|
|
nsRefPtr<gfxImageSurface> imgSurface = new gfxImageSurface(
|
|
|
|
gfxIntSize(bmWidth, bmHeight),
|
|
|
|
gfxImageSurface::ImageFormatARGB32);
|
|
|
|
if (!imgSurface)
|
|
|
|
return PR_FALSE;
|
|
|
|
|
|
|
|
nsRefPtr<gfxContext> context = new gfxContext(imgSurface);
|
|
|
|
if (!context)
|
|
|
|
return PR_FALSE;
|
|
|
|
|
|
|
|
context->SetOperator(gfxContext::OPERATOR_SOURCE);
|
|
|
|
context->SetSource(surface);
|
|
|
|
context->Paint();
|
|
|
|
|
|
|
|
BITMAPV5HEADER bmih;
|
|
|
|
memset((void*)&bmih, 0, sizeof(BITMAPV5HEADER));
|
|
|
|
bmih.bV5Size = sizeof(BITMAPV5HEADER);
|
|
|
|
bmih.bV5Width = bmWidth;
|
|
|
|
bmih.bV5Height = -bmHeight; // flip vertical
|
|
|
|
bmih.bV5Planes = 1;
|
|
|
|
bmih.bV5BitCount = 32;
|
|
|
|
bmih.bV5Compression = BI_BITFIELDS;
|
|
|
|
bmih.bV5RedMask = 0x00FF0000;
|
|
|
|
bmih.bV5GreenMask = 0x0000FF00;
|
|
|
|
bmih.bV5BlueMask = 0x000000FF;
|
|
|
|
bmih.bV5AlphaMask = 0xFF000000;
|
|
|
|
|
|
|
|
HDC hdcSrc = CreateCompatibleDC(NULL);
|
|
|
|
void *lpBits = NULL;
|
|
|
|
if (hdcSrc) {
|
|
|
|
psdi->hbmpDragImage =
|
|
|
|
::CreateDIBSection(hdcSrc, (BITMAPINFO*)&bmih, DIB_RGB_COLORS,
|
|
|
|
(void**)&lpBits, NULL, 0);
|
|
|
|
if (psdi->hbmpDragImage && lpBits) {
|
|
|
|
memcpy(lpBits,imgSurface->Data(),(bmWidth*bmHeight*4));
|
|
|
|
}
|
|
|
|
|
|
|
|
psdi->sizeDragImage.cx = bmWidth;
|
|
|
|
psdi->sizeDragImage.cy = bmHeight;
|
|
|
|
|
|
|
|
// Mouse position in center
|
|
|
|
if (mScreenX == -1 || mScreenY == -1) {
|
|
|
|
psdi->ptOffset.x = (PRUint32)((float)bmWidth/2.0f);
|
|
|
|
psdi->ptOffset.y = (PRUint32)((float)bmHeight/2.0f);
|
|
|
|
} else {
|
2008-01-08 22:03:53 +00:00
|
|
|
PRInt32 sx = mScreenX, sy = mScreenY;
|
|
|
|
ConvertToUnscaledDevPixels(pc, &sx, &sy);
|
|
|
|
psdi->ptOffset.x = sx - dragRect.x;
|
|
|
|
psdi->ptOffset.y = sy - dragRect.y;
|
2007-11-17 04:31:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DeleteDC(hdcSrc);
|
|
|
|
}
|
|
|
|
|
|
|
|
return psdi->hbmpDragImage != NULL;
|
|
|
|
}
|
1999-08-25 08:35:06 +00:00
|
|
|
|
1999-05-07 19:55:00 +00:00
|
|
|
//-------------------------------------------------------------------------
|
2005-03-15 00:26:15 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDragService::InvokeDragSession(nsIDOMNode *aDOMNode,
|
|
|
|
nsISupportsArray *anArrayTransferables,
|
|
|
|
nsIScriptableRegion *aRegion,
|
|
|
|
PRUint32 aActionType)
|
1999-05-07 19:55:00 +00:00
|
|
|
{
|
2008-03-19 20:18:41 +00:00
|
|
|
nsresult rv = nsBaseDragService::InvokeDragSession(aDOMNode,
|
|
|
|
anArrayTransferables,
|
|
|
|
aRegion,
|
|
|
|
aActionType);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2004-12-07 14:13:54 +00:00
|
|
|
|
|
|
|
// Try and get source URI of the items that are being dragged
|
|
|
|
nsIURI *uri = nsnull;
|
|
|
|
|
2005-01-28 20:01:46 +00:00
|
|
|
nsCOMPtr<nsIDocument> doc(do_QueryInterface(mSourceDocument));
|
|
|
|
if (doc) {
|
|
|
|
uri = doc->GetDocumentURI();
|
2004-12-07 14:13:54 +00:00
|
|
|
}
|
|
|
|
|
2000-06-05 00:34:11 +00:00
|
|
|
PRUint32 numItemsToDrag = 0;
|
|
|
|
rv = anArrayTransferables->Count(&numItemsToDrag);
|
2005-03-15 00:26:15 +00:00
|
|
|
if (!numItemsToDrag)
|
1999-05-07 19:55:00 +00:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
2005-03-15 00:26:15 +00:00
|
|
|
// The clipboard class contains some static utility methods that we
|
|
|
|
// can use to create an IDataObject from the transferable
|
1999-05-07 19:55:00 +00:00
|
|
|
|
2005-03-15 00:26:15 +00:00
|
|
|
// if we're dragging more than one item, we need to create a
|
|
|
|
// "collection" object to fake out the OS. This collection contains
|
|
|
|
// one |IDataObject| for each transerable. If there is just the one
|
|
|
|
// (most cases), only pass around the native |IDataObject|.
|
2003-06-18 19:12:54 +00:00
|
|
|
nsRefPtr<IDataObject> itemToDrag;
|
2005-03-15 00:26:15 +00:00
|
|
|
if (numItemsToDrag > 1) {
|
2000-06-05 00:34:11 +00:00
|
|
|
nsDataObjCollection * dataObjCollection = new nsDataObjCollection();
|
2003-06-18 19:12:54 +00:00
|
|
|
if (!dataObjCollection)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
itemToDrag = dataObjCollection;
|
2005-03-15 00:26:15 +00:00
|
|
|
for (PRUint32 i=0; i<numItemsToDrag; ++i) {
|
2000-06-05 00:34:11 +00:00
|
|
|
nsCOMPtr<nsISupports> supports;
|
|
|
|
anArrayTransferables->GetElementAt(i, getter_AddRefs(supports));
|
|
|
|
nsCOMPtr<nsITransferable> trans(do_QueryInterface(supports));
|
2005-03-15 00:26:15 +00:00
|
|
|
if (trans) {
|
2003-06-18 19:12:54 +00:00
|
|
|
nsRefPtr<IDataObject> dataObj;
|
2005-03-15 00:26:15 +00:00
|
|
|
rv = nsClipboard::CreateNativeDataObject(trans,
|
|
|
|
getter_AddRefs(dataObj), uri);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
dataObjCollection->AddDataObject(dataObj);
|
2000-06-05 00:34:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} // if dragging multiple items
|
|
|
|
else {
|
1999-08-25 08:35:06 +00:00
|
|
|
nsCOMPtr<nsISupports> supports;
|
2000-06-05 00:34:11 +00:00
|
|
|
anArrayTransferables->GetElementAt(0, getter_AddRefs(supports));
|
1999-05-07 19:55:00 +00:00
|
|
|
nsCOMPtr<nsITransferable> trans(do_QueryInterface(supports));
|
2005-03-15 00:26:15 +00:00
|
|
|
if (trans) {
|
|
|
|
rv = nsClipboard::CreateNativeDataObject(trans,
|
|
|
|
getter_AddRefs(itemToDrag),
|
|
|
|
uri);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
1999-08-25 08:35:06 +00:00
|
|
|
}
|
2000-06-05 00:34:11 +00:00
|
|
|
} // else dragging a single object
|
2005-03-15 00:26:15 +00:00
|
|
|
|
2007-11-17 04:31:32 +00:00
|
|
|
// Create a drag image if support is available
|
|
|
|
IDragSourceHelper *pdsh;
|
|
|
|
if (SUCCEEDED(CoCreateInstance(CLSID_DragDropHelper, NULL, CLSCTX_INPROC_SERVER,
|
|
|
|
IID_IDragSourceHelper, (void**)&pdsh))) {
|
|
|
|
SHDRAGIMAGE sdi;
|
|
|
|
if (CreateDragImage(aDOMNode, aRegion, &sdi)) {
|
|
|
|
if (FAILED(pdsh->InitializeFromBitmap(&sdi, itemToDrag)))
|
|
|
|
DeleteObject(sdi.hbmpDragImage);
|
|
|
|
}
|
|
|
|
pdsh->Release();
|
|
|
|
}
|
|
|
|
|
2006-02-20 20:48:35 +00:00
|
|
|
// Kick off the native drag session
|
2006-08-15 07:16:10 +00:00
|
|
|
return StartInvokingDragSession(itemToDrag, aActionType);
|
1999-05-07 19:55:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
2005-03-15 00:26:15 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDragService::StartInvokingDragSession(IDataObject * aDataObj,
|
|
|
|
PRUint32 aActionType)
|
1999-05-07 19:55:00 +00:00
|
|
|
{
|
2005-03-15 00:26:15 +00:00
|
|
|
// To do the drag we need to create an object that
|
1999-04-23 14:35:26 +00:00
|
|
|
// implements the IDataObject interface (for OLE)
|
2009-03-06 17:54:29 +00:00
|
|
|
nsNativeDragSource* nativeDragSource = new nsNativeDragSource(mDataTransfer);
|
2009-02-17 15:51:12 +00:00
|
|
|
if (!nativeDragSource)
|
2000-06-05 00:34:11 +00:00
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
2005-03-15 00:26:15 +00:00
|
|
|
|
2009-02-17 15:51:12 +00:00
|
|
|
NS_IF_RELEASE(mNativeDragSrc);
|
|
|
|
mNativeDragSrc = (IDropSource *)nativeDragSource;
|
2000-06-05 00:34:11 +00:00
|
|
|
mNativeDragSrc->AddRef();
|
1999-04-17 13:49:39 +00:00
|
|
|
|
1999-04-23 14:35:26 +00:00
|
|
|
// Now figure out what the native drag effect should be
|
2008-09-28 20:57:33 +00:00
|
|
|
DWORD winDropRes;
|
1999-04-17 13:49:39 +00:00
|
|
|
DWORD effects = DROPEFFECT_SCROLL;
|
|
|
|
if (aActionType & DRAGDROP_ACTION_COPY) {
|
|
|
|
effects |= DROPEFFECT_COPY;
|
|
|
|
}
|
|
|
|
if (aActionType & DRAGDROP_ACTION_MOVE) {
|
|
|
|
effects |= DROPEFFECT_MOVE;
|
|
|
|
}
|
|
|
|
if (aActionType & DRAGDROP_ACTION_LINK) {
|
|
|
|
effects |= DROPEFFECT_LINK;
|
|
|
|
}
|
|
|
|
|
2005-03-15 00:26:15 +00:00
|
|
|
// XXX not sure why we bother to cache this, it can change during
|
|
|
|
// the drag
|
|
|
|
mDragAction = aActionType;
|
1999-05-07 19:55:00 +00:00
|
|
|
mDoingDrag = PR_TRUE;
|
2008-09-28 20:57:33 +00:00
|
|
|
mSentLocalDropEvent = PR_FALSE;
|
1999-04-23 14:35:26 +00:00
|
|
|
|
2005-03-16 00:40:21 +00:00
|
|
|
// Start dragging
|
|
|
|
StartDragSession();
|
|
|
|
|
2006-08-15 07:16:10 +00:00
|
|
|
// check shell32.dll version and do async drag if it is >= 5.0
|
|
|
|
PRUint64 lShellVersion = GetShellVersion();
|
|
|
|
IAsyncOperation *pAsyncOp = NULL;
|
|
|
|
PRBool isAsyncAvailable = LL_UCMP(lShellVersion, >=, LL_INIT(5, 0));
|
|
|
|
if (isAsyncAvailable)
|
|
|
|
{
|
|
|
|
// do async drag
|
|
|
|
if (SUCCEEDED(aDataObj->QueryInterface(IID_IAsyncOperation,
|
|
|
|
(void**)&pAsyncOp)))
|
2008-11-14 22:23:02 +00:00
|
|
|
pAsyncOp->SetAsyncMode(VARIANT_TRUE);
|
2006-08-15 07:16:10 +00:00
|
|
|
}
|
|
|
|
|
1999-04-23 14:35:26 +00:00
|
|
|
// Call the native D&D method
|
2008-09-28 20:57:33 +00:00
|
|
|
HRESULT res = ::DoDragDrop(aDataObj, mNativeDragSrc, effects, &winDropRes);
|
1999-05-07 19:55:00 +00:00
|
|
|
|
2006-08-15 07:16:10 +00:00
|
|
|
if (isAsyncAvailable)
|
|
|
|
{
|
|
|
|
// if dragging async
|
|
|
|
// check for async operation
|
|
|
|
BOOL isAsync = FALSE;
|
|
|
|
if (pAsyncOp)
|
|
|
|
{
|
|
|
|
pAsyncOp->InOperation(&isAsync);
|
|
|
|
if (!isAsync)
|
|
|
|
aDataObj->Release();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-09-28 20:57:33 +00:00
|
|
|
// In cases where the drop operation completed outside the application, update
|
|
|
|
// the source node's nsIDOMNSDataTransfer dropEffect value so it is up to date.
|
|
|
|
if (!mSentLocalDropEvent) {
|
|
|
|
PRUint32 dropResult;
|
|
|
|
// Order is important, since multiple flags can be returned.
|
|
|
|
if (winDropRes & DROPEFFECT_COPY)
|
|
|
|
dropResult = DRAGDROP_ACTION_COPY;
|
|
|
|
else if (winDropRes & DROPEFFECT_LINK)
|
|
|
|
dropResult = DRAGDROP_ACTION_LINK;
|
|
|
|
else if (winDropRes & DROPEFFECT_MOVE)
|
|
|
|
dropResult = DRAGDROP_ACTION_MOVE;
|
|
|
|
else
|
|
|
|
dropResult = DRAGDROP_ACTION_NONE;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMNSDataTransfer> dataTransfer =
|
|
|
|
do_QueryInterface(mDataTransfer);
|
|
|
|
|
|
|
|
if (dataTransfer) {
|
|
|
|
if (res == DRAGDROP_S_DROP) // Success
|
|
|
|
dataTransfer->SetDropEffectInt(dropResult);
|
|
|
|
else
|
|
|
|
dataTransfer->SetDropEffectInt(DRAGDROP_ACTION_NONE);
|
|
|
|
}
|
|
|
|
}
|
2009-02-17 15:51:12 +00:00
|
|
|
|
|
|
|
mUserCancelled = nativeDragSource->UserCancelled();
|
|
|
|
|
2009-04-13 13:00:29 +00:00
|
|
|
// We're done dragging, get the cursor position and end the drag
|
|
|
|
POINT pos;
|
|
|
|
GetCursorPos(&pos);
|
2009-04-16 15:58:23 +00:00
|
|
|
SetDragEndPoint(nsIntPoint(pos.x, pos.y));
|
2007-04-12 04:37:39 +00:00
|
|
|
EndDragSession(PR_TRUE);
|
2005-03-16 00:40:21 +00:00
|
|
|
|
2005-03-15 00:26:15 +00:00
|
|
|
// For some drag/drop interactions, IDataObject::SetData doesn't get
|
|
|
|
// called with a CFSTR_PERFORMEDDROPEFFECT format and the
|
|
|
|
// intermediate file (if it was created) isn't deleted. See
|
|
|
|
// http://bugzilla.mozilla.org/show_bug.cgi?id=203847#c4 for a
|
|
|
|
// detailed description of the different cases. Now that we know
|
|
|
|
// that the drag/drop operation has ended, call SetData() so that
|
|
|
|
// the intermediate file is deleted.
|
|
|
|
static CLIPFORMAT PerformedDropEffect =
|
|
|
|
::RegisterClipboardFormat(CFSTR_PERFORMEDDROPEFFECT);
|
|
|
|
|
|
|
|
FORMATETC fmte =
|
|
|
|
{
|
|
|
|
(CLIPFORMAT)PerformedDropEffect,
|
|
|
|
NULL,
|
|
|
|
DVASPECT_CONTENT,
|
|
|
|
-1,
|
|
|
|
TYMED_NULL
|
|
|
|
};
|
|
|
|
|
2003-06-13 20:38:43 +00:00
|
|
|
STGMEDIUM medium;
|
|
|
|
medium.tymed = TYMED_NULL;
|
|
|
|
medium.pUnkForRelease = NULL;
|
|
|
|
aDataObj->SetData(&fmte, &medium, FALSE);
|
|
|
|
|
2005-03-15 00:26:15 +00:00
|
|
|
mDoingDrag = PR_FALSE;
|
1999-04-17 13:49:39 +00:00
|
|
|
|
2005-03-15 00:26:15 +00:00
|
|
|
return DRAGDROP_S_DROP == res ? NS_OK : NS_ERROR_FAILURE;
|
1999-04-17 13:49:39 +00:00
|
|
|
}
|
|
|
|
|
2002-06-14 11:28:13 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// Make Sure we have the right kind of object
|
2005-03-15 00:26:15 +00:00
|
|
|
nsDataObjCollection*
|
|
|
|
nsDragService::GetDataObjCollection(IDataObject* aDataObj)
|
2002-06-14 11:28:13 +00:00
|
|
|
{
|
|
|
|
nsDataObjCollection * dataObjCol = nsnull;
|
|
|
|
if (aDataObj) {
|
|
|
|
nsIDataObjCollection* dataObj;
|
2005-03-15 00:26:15 +00:00
|
|
|
if (aDataObj->QueryInterface(IID_IDataObjCollection,
|
|
|
|
(void**)&dataObj) == S_OK) {
|
2007-07-08 07:08:04 +00:00
|
|
|
dataObjCol = static_cast<nsDataObjCollection*>(aDataObj);
|
2002-06-14 11:28:13 +00:00
|
|
|
dataObj->Release();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return dataObjCol;
|
|
|
|
}
|
|
|
|
|
1999-04-17 13:49:39 +00:00
|
|
|
//-------------------------------------------------------------------------
|
2005-03-15 00:26:15 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDragService::GetNumDropItems(PRUint32 * aNumItems)
|
1999-05-26 21:08:21 +00:00
|
|
|
{
|
2005-03-15 00:26:15 +00:00
|
|
|
if (!mDataObject) {
|
2002-03-21 02:50:59 +00:00
|
|
|
*aNumItems = 0;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2005-03-15 00:26:15 +00:00
|
|
|
if (IsCollectionObject(mDataObject)) {
|
2002-06-14 11:28:13 +00:00
|
|
|
nsDataObjCollection * dataObjCol = GetDataObjCollection(mDataObject);
|
2005-03-15 00:26:15 +00:00
|
|
|
if (dataObjCol)
|
2000-04-26 01:04:13 +00:00
|
|
|
*aNumItems = dataObjCol->GetNumDataObjects();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Next check if we have a file drop. Return the number of files in
|
|
|
|
// the file drop as the number of items we have, pretending like we
|
|
|
|
// actually have > 1 drag item.
|
|
|
|
FORMATETC fe2;
|
|
|
|
SET_FORMATETC(fe2, CF_HDROP, 0, DVASPECT_CONTENT, -1, TYMED_HGLOBAL);
|
2005-03-15 00:26:15 +00:00
|
|
|
if (mDataObject->QueryGetData(&fe2) == S_OK) {
|
2000-04-26 01:04:13 +00:00
|
|
|
STGMEDIUM stm;
|
2005-03-15 00:26:15 +00:00
|
|
|
if (mDataObject->GetData(&fe2, &stm) == S_OK) {
|
|
|
|
HDROP hdrop = (HDROP)GlobalLock(stm.hGlobal);
|
2006-05-02 06:20:16 +00:00
|
|
|
*aNumItems = ::DragQueryFileW(hdrop, 0xFFFFFFFF, NULL, 0);
|
2000-04-26 01:04:13 +00:00
|
|
|
::GlobalUnlock(stm.hGlobal);
|
|
|
|
::ReleaseStgMedium(&stm);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
*aNumItems = 1;
|
1999-05-26 21:08:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
2005-03-15 00:26:15 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDragService::GetData(nsITransferable * aTransferable, PRUint32 anItem)
|
1999-03-23 15:37:34 +00:00
|
|
|
{
|
1999-04-23 14:35:26 +00:00
|
|
|
// This typcially happens on a drop, the target would be asking
|
|
|
|
// for it's transferable to be filled in
|
1999-05-26 21:08:21 +00:00
|
|
|
// Use a static clipboard utility method for this
|
2005-03-15 00:26:15 +00:00
|
|
|
if (!mDataObject)
|
1999-05-26 21:08:21 +00:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
2001-01-05 23:47:09 +00:00
|
|
|
nsresult dataFound = NS_ERROR_FAILURE;
|
|
|
|
|
2005-03-15 00:26:15 +00:00
|
|
|
if (IsCollectionObject(mDataObject)) {
|
2000-06-05 00:34:11 +00:00
|
|
|
// multiple items, use |anItem| as an index into our collection
|
2002-06-14 11:28:13 +00:00
|
|
|
nsDataObjCollection * dataObjCol = GetDataObjCollection(mDataObject);
|
2005-03-15 00:26:15 +00:00
|
|
|
PRUint32 cnt = dataObjCol->GetNumDataObjects();
|
2000-02-01 22:26:21 +00:00
|
|
|
if (anItem >= 0 && anItem < cnt) {
|
|
|
|
IDataObject * dataObj = dataObjCol->GetDataObjectAt(anItem);
|
2005-03-15 00:26:15 +00:00
|
|
|
dataFound = nsClipboard::GetDataFromDataObject(dataObj, 0, nsnull,
|
|
|
|
aTransferable);
|
2000-02-01 22:26:21 +00:00
|
|
|
}
|
2001-01-05 23:47:09 +00:00
|
|
|
else
|
2005-03-15 00:26:15 +00:00
|
|
|
NS_WARNING("Index out of range!");
|
1999-05-26 21:08:21 +00:00
|
|
|
}
|
2000-06-05 00:34:11 +00:00
|
|
|
else {
|
2001-01-05 23:47:09 +00:00
|
|
|
// If they are asking for item "0", we can just get it...
|
2005-03-15 00:26:15 +00:00
|
|
|
if (anItem == 0) {
|
|
|
|
dataFound = nsClipboard::GetDataFromDataObject(mDataObject, anItem,
|
|
|
|
nsnull, aTransferable);
|
|
|
|
} else {
|
2001-01-05 23:47:09 +00:00
|
|
|
// It better be a file drop, or else non-zero indexes are invalid!
|
|
|
|
FORMATETC fe2;
|
|
|
|
SET_FORMATETC(fe2, CF_HDROP, 0, DVASPECT_CONTENT, -1, TYMED_HGLOBAL);
|
2005-03-15 00:26:15 +00:00
|
|
|
if (mDataObject->QueryGetData(&fe2) == S_OK)
|
|
|
|
dataFound = nsClipboard::GetDataFromDataObject(mDataObject, anItem,
|
|
|
|
nsnull, aTransferable);
|
2001-01-05 23:47:09 +00:00
|
|
|
else
|
2005-03-15 00:26:15 +00:00
|
|
|
NS_WARNING("Reqesting non-zero index, but clipboard data is not a collection!");
|
2001-01-05 23:47:09 +00:00
|
|
|
}
|
2000-06-05 00:34:11 +00:00
|
|
|
}
|
2001-01-05 23:47:09 +00:00
|
|
|
return dataFound;
|
1999-03-23 15:37:34 +00:00
|
|
|
}
|
|
|
|
|
1999-04-17 13:49:39 +00:00
|
|
|
//---------------------------------------------------------
|
2005-03-15 00:26:15 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDragService::SetIDataObject(IDataObject * aDataObj)
|
1999-04-17 13:49:39 +00:00
|
|
|
{
|
2005-03-15 00:26:15 +00:00
|
|
|
// When the native drag starts the DragService gets
|
1999-05-26 21:08:21 +00:00
|
|
|
// the IDataObject that is being dragged
|
1999-04-17 13:49:39 +00:00
|
|
|
NS_IF_RELEASE(mDataObject);
|
|
|
|
mDataObject = aDataObj;
|
2000-10-07 00:11:28 +00:00
|
|
|
NS_IF_ADDREF(mDataObject);
|
1999-04-23 14:35:26 +00:00
|
|
|
|
1999-04-17 13:49:39 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
1999-05-07 19:55:00 +00:00
|
|
|
|
2008-09-28 20:57:33 +00:00
|
|
|
//---------------------------------------------------------
|
|
|
|
void
|
|
|
|
nsDragService::SetDroppedLocal()
|
|
|
|
{
|
|
|
|
// Sent from the native drag handler, letting us know
|
|
|
|
// a drop occured within the application vs. outside of it.
|
|
|
|
mSentLocalDropEvent = PR_TRUE;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
1999-05-07 19:55:00 +00:00
|
|
|
//-------------------------------------------------------------------------
|
2005-03-15 00:26:15 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDragService::IsDataFlavorSupported(const char *aDataFlavor, PRBool *_retval)
|
1999-05-07 19:55:00 +00:00
|
|
|
{
|
2005-03-15 00:26:15 +00:00
|
|
|
if (!aDataFlavor || !mDataObject || !_retval)
|
1999-05-07 19:55:00 +00:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
2000-02-01 22:26:21 +00:00
|
|
|
#ifdef NS_DEBUG
|
2005-03-15 00:26:15 +00:00
|
|
|
if (strcmp(aDataFlavor, kTextMime) == 0)
|
|
|
|
NS_WARNING("DO NOT USE THE text/plain DATA FLAVOR ANY MORE. USE text/unicode INSTEAD");
|
2000-02-01 22:26:21 +00:00
|
|
|
#endif
|
|
|
|
|
1999-08-25 22:04:02 +00:00
|
|
|
*_retval = PR_FALSE;
|
2000-02-01 22:26:21 +00:00
|
|
|
|
1999-05-26 21:08:21 +00:00
|
|
|
FORMATETC fe;
|
2000-06-05 00:34:11 +00:00
|
|
|
UINT format = 0;
|
2005-03-15 00:26:15 +00:00
|
|
|
|
|
|
|
if (IsCollectionObject(mDataObject)) {
|
2000-02-01 22:26:21 +00:00
|
|
|
// We know we have one of our special collection objects.
|
1999-08-25 08:35:06 +00:00
|
|
|
format = nsClipboard::GetFormat(aDataFlavor);
|
2005-03-15 00:26:15 +00:00
|
|
|
SET_FORMATETC(fe, format, 0, DVASPECT_CONTENT, -1,
|
|
|
|
TYMED_HGLOBAL | TYMED_FILE | TYMED_GDI);
|
1999-05-07 19:55:00 +00:00
|
|
|
|
2005-03-15 00:26:15 +00:00
|
|
|
// See if any one of the IDataObjects in the collection supports
|
|
|
|
// this data type
|
2002-06-14 11:28:13 +00:00
|
|
|
nsDataObjCollection* dataObjCol = GetDataObjCollection(mDataObject);
|
2005-03-15 00:26:15 +00:00
|
|
|
if (dataObjCol) {
|
2000-02-01 22:26:21 +00:00
|
|
|
PRUint32 cnt = dataObjCol->GetNumDataObjects();
|
|
|
|
for (PRUint32 i=0;i<cnt;++i) {
|
|
|
|
IDataObject * dataObj = dataObjCol->GetDataObjectAt(i);
|
|
|
|
if (S_OK == dataObj->QueryGetData(&fe))
|
|
|
|
*_retval = PR_TRUE; // found it!
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // if special collection object
|
|
|
|
else {
|
2005-03-15 00:26:15 +00:00
|
|
|
// Ok, so we have a single object. Check to see if has the correct
|
|
|
|
// data type. Since this can come from an outside app, we also
|
|
|
|
// need to see if we need to perform text->unicode conversion if
|
|
|
|
// the client asked for unicode and it wasn't available.
|
2000-02-01 22:26:21 +00:00
|
|
|
format = nsClipboard::GetFormat(aDataFlavor);
|
2005-03-15 00:26:15 +00:00
|
|
|
SET_FORMATETC(fe, format, 0, DVASPECT_CONTENT, -1,
|
|
|
|
TYMED_HGLOBAL | TYMED_FILE | TYMED_GDI);
|
|
|
|
if (mDataObject->QueryGetData(&fe) == S_OK)
|
2000-02-01 22:26:21 +00:00
|
|
|
*_retval = PR_TRUE; // found it!
|
|
|
|
else {
|
2005-03-15 00:26:15 +00:00
|
|
|
// We haven't found the exact flavor the client asked for, but
|
|
|
|
// maybe we can still find it from something else that's on the
|
|
|
|
// clipboard
|
|
|
|
if (strcmp(aDataFlavor, kUnicodeMime) == 0) {
|
|
|
|
// client asked for unicode and it wasn't present, check if we
|
|
|
|
// have CF_TEXT. We'll handle the actual data substitution in
|
|
|
|
// the data object.
|
2000-08-03 00:47:36 +00:00
|
|
|
format = nsClipboard::GetFormat(kTextMime);
|
2005-03-15 00:26:15 +00:00
|
|
|
SET_FORMATETC(fe, format, 0, DVASPECT_CONTENT, -1,
|
|
|
|
TYMED_HGLOBAL | TYMED_FILE | TYMED_GDI);
|
|
|
|
if (mDataObject->QueryGetData(&fe) == S_OK)
|
2000-08-03 00:47:36 +00:00
|
|
|
*_retval = PR_TRUE; // found it!
|
|
|
|
}
|
2005-03-15 00:26:15 +00:00
|
|
|
else if (strcmp(aDataFlavor, kURLMime) == 0) {
|
|
|
|
// client asked for a url and it wasn't present, but if we
|
|
|
|
// have a file, then we have a URL to give them (the path, or
|
|
|
|
// the internal URL if an InternetShortcut).
|
2000-08-03 00:47:36 +00:00
|
|
|
format = nsClipboard::GetFormat(kFileMime);
|
2005-03-15 00:26:15 +00:00
|
|
|
SET_FORMATETC(fe, format, 0, DVASPECT_CONTENT, -1,
|
|
|
|
TYMED_HGLOBAL | TYMED_FILE | TYMED_GDI);
|
|
|
|
if (mDataObject->QueryGetData(&fe) == S_OK)
|
2000-08-03 00:47:36 +00:00
|
|
|
*_retval = PR_TRUE; // found it!
|
|
|
|
}
|
2000-02-01 22:26:21 +00:00
|
|
|
} // else try again
|
1999-05-07 19:55:00 +00:00
|
|
|
}
|
|
|
|
|
1999-08-25 22:04:02 +00:00
|
|
|
return NS_OK;
|
1999-05-07 19:55:00 +00:00
|
|
|
}
|
|
|
|
|
2000-06-05 00:34:11 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// IsCollectionObject
|
|
|
|
//
|
2005-03-15 00:26:15 +00:00
|
|
|
// Determine if this is a single |IDataObject| or one of our private
|
|
|
|
// collection objects. We know the difference because our collection
|
|
|
|
// object will respond to supporting the private |MULTI_MIME| format.
|
2000-06-05 00:34:11 +00:00
|
|
|
//
|
|
|
|
PRBool
|
2005-03-15 00:26:15 +00:00
|
|
|
nsDragService::IsCollectionObject(IDataObject* inDataObj)
|
2000-06-05 00:34:11 +00:00
|
|
|
{
|
|
|
|
PRBool isCollection = PR_FALSE;
|
2005-03-15 00:26:15 +00:00
|
|
|
|
|
|
|
// setup the format object to ask for the MULTI_MIME format. We only
|
|
|
|
// need to do this once
|
2000-06-05 00:34:11 +00:00
|
|
|
static UINT sFormat = 0;
|
|
|
|
static FORMATETC sFE;
|
2005-03-15 00:26:15 +00:00
|
|
|
if (!sFormat) {
|
2000-06-05 00:34:11 +00:00
|
|
|
sFormat = nsClipboard::GetFormat(MULTI_MIME);
|
|
|
|
SET_FORMATETC(sFE, sFormat, 0, DVASPECT_CONTENT, -1, TYMED_HGLOBAL);
|
|
|
|
}
|
2005-03-15 00:26:15 +00:00
|
|
|
|
|
|
|
// ask the object if it supports it. If yes, we have a collection
|
|
|
|
// object
|
|
|
|
if (inDataObj->QueryGetData(&sFE) == S_OK)
|
|
|
|
isCollection = PR_TRUE;
|
2000-06-05 00:34:11 +00:00
|
|
|
|
|
|
|
return isCollection;
|
|
|
|
|
2000-06-16 00:32:17 +00:00
|
|
|
} // IsCollectionObject
|
2000-10-07 00:11:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// EndDragSession
|
|
|
|
//
|
2005-03-15 00:26:15 +00:00
|
|
|
// Override the default to make sure that we release the data object
|
|
|
|
// when the drag ends. It seems that OLE doesn't like to let apps quit
|
|
|
|
// w/out crashing when we're still holding onto their data
|
2000-10-07 00:11:28 +00:00
|
|
|
//
|
|
|
|
NS_IMETHODIMP
|
2007-04-12 04:37:39 +00:00
|
|
|
nsDragService::EndDragSession(PRBool aDoneDrag)
|
2000-10-07 00:11:28 +00:00
|
|
|
{
|
2007-04-12 04:37:39 +00:00
|
|
|
nsBaseDragService::EndDragSession(aDoneDrag);
|
2000-10-07 00:11:28 +00:00
|
|
|
NS_IF_RELEASE(mDataObject);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2006-02-20 20:48:35 +00:00
|
|
|
|
2006-08-15 07:16:10 +00:00
|
|
|
// Gets shell version as packed 64 bit int
|
|
|
|
PRUint64 nsDragService::GetShellVersion()
|
2006-02-20 20:48:35 +00:00
|
|
|
{
|
2006-08-15 07:16:10 +00:00
|
|
|
PRUint64 lVersion = LL_INIT(0, 0);
|
2006-08-20 09:20:23 +00:00
|
|
|
PRUint64 lMinor = lVersion;
|
2006-07-14 01:48:51 +00:00
|
|
|
|
2006-08-15 07:16:10 +00:00
|
|
|
// shell32.dll should be loaded already, so we ae not actually loading the library here
|
|
|
|
PRLibrary *libShell = PR_LoadLibrary("shell32.dll");
|
|
|
|
if (libShell == NULL)
|
|
|
|
return lVersion;
|
2006-07-14 01:48:51 +00:00
|
|
|
|
2006-08-15 07:16:10 +00:00
|
|
|
do
|
|
|
|
{
|
|
|
|
DLLGETVERSIONPROC versionProc = NULL;
|
|
|
|
versionProc = (DLLGETVERSIONPROC)PR_FindFunctionSymbol(libShell, "DllGetVersion");
|
|
|
|
if (versionProc == NULL)
|
|
|
|
break;
|
|
|
|
|
|
|
|
DLLVERSIONINFO versionInfo;
|
|
|
|
::ZeroMemory(&versionInfo, sizeof(DLLVERSIONINFO));
|
|
|
|
versionInfo.cbSize = sizeof(DLLVERSIONINFO);
|
|
|
|
if (FAILED(versionProc(&versionInfo)))
|
|
|
|
break;
|
|
|
|
|
|
|
|
// why is this?
|
2006-08-20 09:20:23 +00:00
|
|
|
LL_UI2L(lVersion, versionInfo.dwMajorVersion);
|
|
|
|
LL_SHL(lVersion, lVersion, 32);
|
|
|
|
LL_UI2L(lMinor, versionInfo.dwMinorVersion);
|
|
|
|
LL_OR2(lVersion, lMinor);
|
2006-08-15 07:16:10 +00:00
|
|
|
} while (false);
|
|
|
|
|
|
|
|
PR_UnloadLibrary(libShell);
|
|
|
|
libShell = NULL;
|
|
|
|
|
|
|
|
return lVersion;
|
2006-02-20 20:48:35 +00:00
|
|
|
}
|