2001-09-28 20:14:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00: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/. */
|
1999-04-06 19:39:21 +00:00
|
|
|
|
|
|
|
#include "nsNativeDragSource.h"
|
|
|
|
#include <stdio.h>
|
2002-01-07 23:55:11 +00:00
|
|
|
#include "nsISupportsImpl.h"
|
2009-03-06 17:54:29 +00:00
|
|
|
#include "nsString.h"
|
2011-04-26 01:37:20 +00:00
|
|
|
#include "nsIServiceManager.h"
|
|
|
|
#include "nsToolkit.h"
|
|
|
|
#include "nsWidgetsCID.h"
|
|
|
|
#include "nsIDragService.h"
|
|
|
|
|
1999-04-06 19:39:21 +00:00
|
|
|
/*
|
|
|
|
* class nsNativeDragSource
|
|
|
|
*/
|
2009-03-06 17:54:29 +00:00
|
|
|
nsNativeDragSource::nsNativeDragSource(nsIDOMDataTransfer* aDataTransfer) :
|
|
|
|
m_cRef(0),
|
2012-07-30 14:20:58 +00:00
|
|
|
m_hCursor(nullptr),
|
2011-10-02 02:16:19 +00:00
|
|
|
mUserCancelled(false)
|
1999-04-06 19:39:21 +00:00
|
|
|
{
|
2009-03-06 17:54:29 +00:00
|
|
|
mDataTransfer = do_QueryInterface(aDataTransfer);
|
1999-04-06 19:39:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsNativeDragSource::~nsNativeDragSource()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2005-03-15 00:07:46 +00:00
|
|
|
STDMETHODIMP
|
|
|
|
nsNativeDragSource::QueryInterface(REFIID riid, void** ppv)
|
1999-04-06 19:39:21 +00:00
|
|
|
{
|
2013-10-08 18:48:20 +00:00
|
|
|
*ppv=nullptr;
|
1999-04-06 19:39:21 +00:00
|
|
|
|
2005-03-15 00:07:46 +00:00
|
|
|
if (IID_IUnknown==riid || IID_IDropSource==riid)
|
|
|
|
*ppv=this;
|
1999-04-06 19:39:21 +00:00
|
|
|
|
2013-10-08 18:48:20 +00:00
|
|
|
if (nullptr!=*ppv) {
|
2005-03-15 00:07:46 +00:00
|
|
|
((LPUNKNOWN)*ppv)->AddRef();
|
2010-02-20 13:45:19 +00:00
|
|
|
return S_OK;
|
2005-03-15 00:07:46 +00:00
|
|
|
}
|
1999-04-06 19:39:21 +00:00
|
|
|
|
2010-02-20 13:45:19 +00:00
|
|
|
return E_NOINTERFACE;
|
1999-04-06 19:39:21 +00:00
|
|
|
}
|
|
|
|
|
2005-03-15 00:07:46 +00:00
|
|
|
STDMETHODIMP_(ULONG)
|
|
|
|
nsNativeDragSource::AddRef(void)
|
1999-04-06 19:39:21 +00:00
|
|
|
{
|
2005-03-15 00:07:46 +00:00
|
|
|
++m_cRef;
|
|
|
|
NS_LOG_ADDREF(this, m_cRef, "nsNativeDragSource", sizeof(*this));
|
|
|
|
return m_cRef;
|
1999-04-06 19:39:21 +00:00
|
|
|
}
|
|
|
|
|
2005-03-15 00:07:46 +00:00
|
|
|
STDMETHODIMP_(ULONG)
|
|
|
|
nsNativeDragSource::Release(void)
|
1999-04-06 19:39:21 +00:00
|
|
|
{
|
2005-03-15 00:07:46 +00:00
|
|
|
--m_cRef;
|
|
|
|
NS_LOG_RELEASE(this, m_cRef, "nsNativeDragSource");
|
|
|
|
if (0 != m_cRef)
|
|
|
|
return m_cRef;
|
1999-04-06 19:39:21 +00:00
|
|
|
|
2005-03-15 00:07:46 +00:00
|
|
|
delete this;
|
|
|
|
return 0;
|
1999-04-06 19:39:21 +00:00
|
|
|
}
|
|
|
|
|
2005-03-15 00:07:46 +00:00
|
|
|
STDMETHODIMP
|
|
|
|
nsNativeDragSource::QueryContinueDrag(BOOL fEsc, DWORD grfKeyState)
|
1999-04-06 19:39:21 +00:00
|
|
|
{
|
2013-12-16 00:00:54 +00:00
|
|
|
static NS_DEFINE_IID(kCDragServiceCID, NS_DRAGSERVICE_CID);
|
|
|
|
|
2011-04-26 01:37:20 +00:00
|
|
|
nsCOMPtr<nsIDragService> dragService = do_GetService(kCDragServiceCID);
|
|
|
|
if (dragService) {
|
|
|
|
DWORD pos = ::GetMessagePos();
|
|
|
|
dragService->DragMoved(GET_X_LPARAM(pos), GET_Y_LPARAM(pos));
|
|
|
|
}
|
|
|
|
|
1999-04-06 19:39:21 +00:00
|
|
|
if (fEsc) {
|
2011-10-02 02:16:19 +00:00
|
|
|
mUserCancelled = true;
|
2010-02-20 13:45:19 +00:00
|
|
|
return DRAGDROP_S_CANCEL;
|
1999-04-06 19:39:21 +00:00
|
|
|
}
|
|
|
|
|
2010-02-20 13:45:19 +00:00
|
|
|
if (!(grfKeyState & MK_LBUTTON) || (grfKeyState & MK_RBUTTON))
|
|
|
|
return DRAGDROP_S_DROP;
|
2005-03-15 00:07:46 +00:00
|
|
|
|
2010-02-20 13:45:19 +00:00
|
|
|
return S_OK;
|
1999-04-06 19:39:21 +00:00
|
|
|
}
|
|
|
|
|
2005-03-15 00:07:46 +00:00
|
|
|
STDMETHODIMP
|
|
|
|
nsNativeDragSource::GiveFeedback(DWORD dwEffect)
|
1999-04-06 19:39:21 +00:00
|
|
|
{
|
2009-03-06 17:54:29 +00:00
|
|
|
// For drags involving tabs, we do some custom work with cursors.
|
|
|
|
if (mDataTransfer) {
|
|
|
|
nsAutoString cursor;
|
|
|
|
mDataTransfer->GetMozCursor(cursor);
|
2009-03-10 00:01:55 +00:00
|
|
|
if (cursor.EqualsLiteral("default")) {
|
2009-03-06 17:54:29 +00:00
|
|
|
m_hCursor = ::LoadCursor(0, IDC_ARROW);
|
|
|
|
} else {
|
2012-07-30 14:20:58 +00:00
|
|
|
m_hCursor = nullptr;
|
2009-03-06 17:54:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_hCursor) {
|
|
|
|
::SetCursor(m_hCursor);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Let the system choose which cursor to apply.
|
2010-02-20 13:45:19 +00:00
|
|
|
return DRAGDROP_S_USEDEFAULTCURSORS;
|
1999-04-06 19:39:21 +00:00
|
|
|
}
|