852 lines
28 KiB
C++
852 lines
28 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2015 The Qt Company Ltd.
|
|
** Contact: http://www.qt.io/licensing/
|
|
**
|
|
** This file is part of the plugins of the Qt Toolkit.
|
|
**
|
|
** $QT_BEGIN_LICENSE:LGPL21$
|
|
** Commercial License Usage
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
** accordance with the commercial license agreement provided with the
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
** and conditions see http://www.qt.io/terms-conditions. For further
|
|
** information use the contact form at http://www.qt.io/contact-us.
|
|
**
|
|
** GNU Lesser General Public License Usage
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
** General Public License version 2.1 or version 3 as published by the Free
|
|
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
|
|
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
|
|
** following information to ensure the GNU Lesser General Public License
|
|
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
**
|
|
** As a special exception, The Qt Company gives you certain additional
|
|
** rights. These rights are described in The Qt Company LGPL Exception
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
**
|
|
** $QT_END_LICENSE$
|
|
**
|
|
****************************************************************************/
|
|
|
|
#include "qwindowsdrag.h"
|
|
#include "qwindowscontext.h"
|
|
#include "qwindowsscaling.h"
|
|
#ifndef QT_NO_CLIPBOARD
|
|
# include "qwindowsclipboard.h"
|
|
#endif
|
|
#include "qwindowsintegration.h"
|
|
#include "qwindowsole.h"
|
|
#include "qtwindows_additional.h"
|
|
#include "qwindowswindow.h"
|
|
#include "qwindowsmousehandler.h"
|
|
#include "qwindowscursor.h"
|
|
#include "qwindowsscaling.h"
|
|
|
|
#include <QtGui/QMouseEvent>
|
|
#include <QtGui/QPixmap>
|
|
#include <QtGui/QPainter>
|
|
#include <QtGui/QRasterWindow>
|
|
#include <QtGui/QGuiApplication>
|
|
#include <qpa/qwindowsysteminterface_p.h>
|
|
#include <QtGui/private/qguiapplication_p.h>
|
|
|
|
#include <QtCore/QDebug>
|
|
#include <QtCore/QBuffer>
|
|
#include <QtCore/QPoint>
|
|
|
|
#include <shlobj.h>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
/*!
|
|
\class QWindowsDragCursorWindow
|
|
\brief A toplevel window showing the drag icon in case of touch drag.
|
|
|
|
\sa QWindowsOleDropSource
|
|
\internal
|
|
\ingroup qt-lighthouse-win
|
|
*/
|
|
|
|
class QWindowsDragCursorWindow : public QRasterWindow
|
|
{
|
|
public:
|
|
explicit QWindowsDragCursorWindow(QWindow *parent = 0);
|
|
|
|
void setPixmap(const QPixmap &p);
|
|
|
|
protected:
|
|
void paintEvent(QPaintEvent *)
|
|
{
|
|
QPainter painter(this);
|
|
painter.drawPixmap(0, 0, m_pixmap);
|
|
}
|
|
|
|
private:
|
|
QPixmap m_pixmap;
|
|
};
|
|
|
|
QWindowsDragCursorWindow::QWindowsDragCursorWindow(QWindow *parent)
|
|
: QRasterWindow(parent)
|
|
{
|
|
QSurfaceFormat windowFormat = format();
|
|
windowFormat.setAlphaBufferSize(8);
|
|
setFormat(windowFormat);
|
|
setObjectName(QStringLiteral("QWindowsDragCursorWindow"));
|
|
setFlags(Qt::Popup | Qt::NoDropShadowWindowHint
|
|
| Qt::FramelessWindowHint | Qt::WindowStaysOnTopHint
|
|
| Qt::WindowDoesNotAcceptFocus | Qt::WindowTransparentForInput);
|
|
}
|
|
|
|
void QWindowsDragCursorWindow::setPixmap(const QPixmap &p)
|
|
{
|
|
if (p.cacheKey() == m_pixmap.cacheKey())
|
|
return;
|
|
const QSize oldSize = m_pixmap.size();
|
|
QSize newSize = p.size();
|
|
qCDebug(lcQpaMime) << __FUNCTION__ << p.cacheKey() << newSize;
|
|
m_pixmap = p;
|
|
if (oldSize != newSize) {
|
|
const qreal pixDevicePixelRatio = p.devicePixelRatio();
|
|
if (pixDevicePixelRatio > 1.0 && qFuzzyCompare(pixDevicePixelRatio, devicePixelRatio()))
|
|
newSize /= qRound(pixDevicePixelRatio);
|
|
resize(newSize);
|
|
}
|
|
if (isVisible())
|
|
update();
|
|
}
|
|
|
|
/*!
|
|
\class QWindowsDropMimeData
|
|
\brief Special mime data class for data retrieval from Drag operations.
|
|
|
|
Implementation of QWindowsInternalMimeDataBase which retrieves the
|
|
current drop data object from QWindowsDrag.
|
|
|
|
\sa QWindowsDrag
|
|
\internal
|
|
\ingroup qt-lighthouse-win
|
|
*/
|
|
|
|
IDataObject *QWindowsDropMimeData::retrieveDataObject() const
|
|
{
|
|
return QWindowsDrag::instance()->dropDataObject();
|
|
}
|
|
|
|
static inline Qt::DropActions translateToQDragDropActions(DWORD pdwEffects)
|
|
{
|
|
Qt::DropActions actions = Qt::IgnoreAction;
|
|
if (pdwEffects & DROPEFFECT_LINK)
|
|
actions |= Qt::LinkAction;
|
|
if (pdwEffects & DROPEFFECT_COPY)
|
|
actions |= Qt::CopyAction;
|
|
if (pdwEffects & DROPEFFECT_MOVE)
|
|
actions |= Qt::MoveAction;
|
|
return actions;
|
|
}
|
|
|
|
static inline Qt::DropAction translateToQDragDropAction(DWORD pdwEffect)
|
|
{
|
|
if (pdwEffect & DROPEFFECT_LINK)
|
|
return Qt::LinkAction;
|
|
if (pdwEffect & DROPEFFECT_COPY)
|
|
return Qt::CopyAction;
|
|
if (pdwEffect & DROPEFFECT_MOVE)
|
|
return Qt::MoveAction;
|
|
return Qt::IgnoreAction;
|
|
}
|
|
|
|
static inline DWORD translateToWinDragEffects(Qt::DropActions action)
|
|
{
|
|
DWORD effect = DROPEFFECT_NONE;
|
|
if (action & Qt::LinkAction)
|
|
effect |= DROPEFFECT_LINK;
|
|
if (action & Qt::CopyAction)
|
|
effect |= DROPEFFECT_COPY;
|
|
if (action & Qt::MoveAction)
|
|
effect |= DROPEFFECT_MOVE;
|
|
return effect;
|
|
}
|
|
|
|
static inline Qt::KeyboardModifiers toQtKeyboardModifiers(DWORD keyState)
|
|
{
|
|
Qt::KeyboardModifiers modifiers = Qt::NoModifier;
|
|
|
|
if (keyState & MK_SHIFT)
|
|
modifiers |= Qt::ShiftModifier;
|
|
if (keyState & MK_CONTROL)
|
|
modifiers |= Qt::ControlModifier;
|
|
if (keyState & MK_ALT)
|
|
modifiers |= Qt::AltModifier;
|
|
|
|
return modifiers;
|
|
}
|
|
|
|
/*!
|
|
\class QWindowsOleDropSource
|
|
\brief Implementation of IDropSource
|
|
|
|
Used for drag operations.
|
|
|
|
\sa QWindowsDrag
|
|
\internal
|
|
\ingroup qt-lighthouse-win
|
|
*/
|
|
|
|
class QWindowsOleDropSource : public IDropSource
|
|
{
|
|
public:
|
|
enum Mode {
|
|
MouseDrag,
|
|
TouchDrag // Mouse cursor suppressed, use window as cursor.
|
|
};
|
|
|
|
explicit QWindowsOleDropSource(QWindowsDrag *drag);
|
|
virtual ~QWindowsOleDropSource();
|
|
|
|
void createCursors();
|
|
|
|
// IUnknown methods
|
|
STDMETHOD(QueryInterface)(REFIID riid, void ** ppvObj);
|
|
STDMETHOD_(ULONG,AddRef)(void);
|
|
STDMETHOD_(ULONG,Release)(void);
|
|
|
|
// IDropSource methods
|
|
STDMETHOD(QueryContinueDrag)(BOOL fEscapePressed, DWORD grfKeyState);
|
|
STDMETHOD(GiveFeedback)(DWORD dwEffect);
|
|
|
|
private:
|
|
class DragCursorHandle {
|
|
Q_DISABLE_COPY(DragCursorHandle)
|
|
public:
|
|
DragCursorHandle(HCURSOR c) : cursor(c) {}
|
|
~DragCursorHandle() { DestroyCursor(cursor); }
|
|
const HCURSOR cursor;
|
|
};
|
|
typedef QSharedPointer<DragCursorHandle> DragCursorHandlePtr;
|
|
|
|
struct CursorEntry {
|
|
CursorEntry() : cacheKey(0) {}
|
|
CursorEntry(const QPixmap &p, qint64 cK, const DragCursorHandlePtr &c, const QPoint &h) :
|
|
pixmap(p), cacheKey(cK), cursor(c), hotSpot(h) {}
|
|
|
|
QPixmap pixmap;
|
|
qint64 cacheKey; // Cache key of cursor
|
|
DragCursorHandlePtr cursor;
|
|
QPoint hotSpot;
|
|
};
|
|
|
|
typedef QMap<Qt::DropAction, CursorEntry> ActionCursorMap;
|
|
typedef ActionCursorMap::Iterator ActionCursorMapIt;
|
|
typedef ActionCursorMap::ConstIterator ActionCursorMapConstIt;
|
|
|
|
const Mode m_mode;
|
|
QWindowsDrag *m_drag;
|
|
Qt::MouseButtons m_currentButtons;
|
|
ActionCursorMap m_cursors;
|
|
QWindowsDragCursorWindow *m_touchDragWindow;
|
|
|
|
ULONG m_refs;
|
|
#ifndef QT_NO_DEBUG_OUTPUT
|
|
friend QDebug operator<<(QDebug, const QWindowsOleDropSource::CursorEntry &);
|
|
#endif
|
|
};
|
|
|
|
QWindowsOleDropSource::QWindowsOleDropSource(QWindowsDrag *drag)
|
|
: m_mode(QWindowsCursor::cursorState() != QWindowsCursor::CursorSuppressed ? MouseDrag : TouchDrag)
|
|
, m_drag(drag)
|
|
, m_currentButtons(Qt::NoButton)
|
|
, m_touchDragWindow(0)
|
|
, m_refs(1)
|
|
{
|
|
qCDebug(lcQpaMime) << __FUNCTION__ << m_mode;
|
|
}
|
|
|
|
QWindowsOleDropSource::~QWindowsOleDropSource()
|
|
{
|
|
m_cursors.clear();
|
|
delete m_touchDragWindow;
|
|
qCDebug(lcQpaMime) << __FUNCTION__;
|
|
}
|
|
|
|
#ifndef QT_NO_DEBUG_OUTPUT
|
|
QDebug operator<<(QDebug d, const QWindowsOleDropSource::CursorEntry &e)
|
|
{
|
|
d << "CursorEntry:" << e.pixmap.size() << '#' << e.cacheKey
|
|
<< "HCURSOR" << e.cursor->cursor << "hotspot:" << e.hotSpot;
|
|
return d;
|
|
}
|
|
#endif // !QT_NO_DEBUG_OUTPUT
|
|
|
|
/*!
|
|
\brief Blend custom pixmap with cursors.
|
|
*/
|
|
|
|
void QWindowsOleDropSource::createCursors()
|
|
{
|
|
const QDrag *drag = m_drag->currentDrag();
|
|
const QPixmap pixmap = drag->pixmap();
|
|
const bool hasPixmap = !pixmap.isNull();
|
|
const int scaleFactor = QWindowsScaling::factor();
|
|
const QSize pixmapSizeDp = pixmap.size() * scaleFactor;
|
|
const bool scalePixmap = hasPixmap
|
|
&& m_mode != TouchDrag // Touch drag: pixmap is shown in a separate QWindow, which will be scaled.
|
|
&& (scaleFactor != 1 && scaleFactor != qRound(pixmap.devicePixelRatio()));
|
|
const QPixmap drawPixmap = scalePixmap
|
|
? pixmap.scaled(pixmapSizeDp, Qt::KeepAspectRatio, Qt::SmoothTransformation) : pixmap;
|
|
|
|
Qt::DropAction actions[] = { Qt::MoveAction, Qt::CopyAction, Qt::LinkAction, Qt::IgnoreAction };
|
|
int actionCount = int(sizeof(actions) / sizeof(actions[0]));
|
|
if (!hasPixmap)
|
|
--actionCount; // No Qt::IgnoreAction unless pixmap
|
|
const QPoint hotSpot = drag->hotSpot() * scaleFactor;
|
|
for (int cnum = 0; cnum < actionCount; ++cnum) {
|
|
const Qt::DropAction action = actions[cnum];
|
|
QPixmap cursorPixmap = drag->dragCursor(action);
|
|
if (cursorPixmap.isNull())
|
|
cursorPixmap = m_drag->defaultCursor(action);
|
|
const qint64 cacheKey = cursorPixmap.cacheKey();
|
|
const ActionCursorMapIt it = m_cursors.find(action);
|
|
if (it != m_cursors.end() && it.value().cacheKey == cacheKey)
|
|
continue;
|
|
if (cursorPixmap.isNull()) {
|
|
qWarning("%s: Unable to obtain drag cursor for %d.", __FUNCTION__, action);
|
|
continue;
|
|
}
|
|
|
|
QPoint newHotSpot(0, 0);
|
|
QPixmap newPixmap = cursorPixmap;
|
|
|
|
if (hasPixmap) {
|
|
const int x1 = qMin(-hotSpot.x(), 0);
|
|
const int x2 = qMax(pixmapSizeDp.width() - hotSpot.x(), cursorPixmap.width());
|
|
const int y1 = qMin(-hotSpot.y(), 0);
|
|
const int y2 = qMax(pixmapSizeDp.height() - hotSpot.y(), cursorPixmap.height());
|
|
QPixmap newCursor(x2 - x1 + 1, y2 - y1 + 1);
|
|
newCursor.fill(Qt::transparent);
|
|
QPainter p(&newCursor);
|
|
const QPoint pmDest = QPoint(qMax(0, -hotSpot.x()), qMax(0, -hotSpot.y()));
|
|
p.drawPixmap(pmDest, drawPixmap);
|
|
p.drawPixmap(qMax(0, hotSpot.x()),qMax(0, hotSpot.y()), cursorPixmap);
|
|
newPixmap = newCursor;
|
|
newHotSpot = QPoint(qMax(0, hotSpot.x()), qMax(0, hotSpot.y()));
|
|
}
|
|
|
|
if (const HCURSOR sysCursor = QWindowsCursor::createPixmapCursor(newPixmap, newHotSpot)) {
|
|
const CursorEntry entry(newPixmap, cacheKey, DragCursorHandlePtr(new DragCursorHandle(sysCursor)), newHotSpot);
|
|
if (it == m_cursors.end())
|
|
m_cursors.insert(action, entry);
|
|
else
|
|
it.value() = entry;
|
|
}
|
|
}
|
|
#ifndef QT_NO_DEBUG_OUTPUT
|
|
if (lcQpaMime().isDebugEnabled())
|
|
qCDebug(lcQpaMime) << __FUNCTION__ << "pixmap" << pixmap.size() << m_cursors.size() << "cursors:\n" << m_cursors;
|
|
#endif // !QT_NO_DEBUG_OUTPUT
|
|
}
|
|
|
|
//---------------------------------------------------------------------
|
|
// IUnknown Methods
|
|
//---------------------------------------------------------------------
|
|
|
|
STDMETHODIMP
|
|
QWindowsOleDropSource::QueryInterface(REFIID iid, void FAR* FAR* ppv)
|
|
{
|
|
if (iid == IID_IUnknown || iid == IID_IDropSource) {
|
|
*ppv = this;
|
|
++m_refs;
|
|
return NOERROR;
|
|
}
|
|
*ppv = NULL;
|
|
return ResultFromScode(E_NOINTERFACE);
|
|
}
|
|
|
|
STDMETHODIMP_(ULONG)
|
|
QWindowsOleDropSource::AddRef(void)
|
|
{
|
|
return ++m_refs;
|
|
}
|
|
|
|
STDMETHODIMP_(ULONG)
|
|
QWindowsOleDropSource::Release(void)
|
|
{
|
|
if (--m_refs == 0) {
|
|
delete this;
|
|
return 0;
|
|
}
|
|
return m_refs;
|
|
}
|
|
|
|
/*!
|
|
\brief Check for cancel.
|
|
*/
|
|
|
|
QT_ENSURE_STACK_ALIGNED_FOR_SSE STDMETHODIMP
|
|
QWindowsOleDropSource::QueryContinueDrag(BOOL fEscapePressed, DWORD grfKeyState)
|
|
{
|
|
HRESULT hr = S_OK;
|
|
do {
|
|
if (fEscapePressed) {
|
|
hr = ResultFromScode(DRAGDROP_S_CANCEL);
|
|
break;
|
|
}
|
|
|
|
// grfKeyState is broken on CE & some Windows XP versions,
|
|
// therefore we need to check the state manually
|
|
if ((GetAsyncKeyState(VK_LBUTTON) == 0)
|
|
&& (GetAsyncKeyState(VK_MBUTTON) == 0)
|
|
&& (GetAsyncKeyState(VK_RBUTTON) == 0)) {
|
|
hr = ResultFromScode(DRAGDROP_S_DROP);
|
|
break;
|
|
}
|
|
|
|
const Qt::MouseButtons buttons = QWindowsMouseHandler::keyStateToMouseButtons(grfKeyState);
|
|
if (m_currentButtons == Qt::NoButton) {
|
|
m_currentButtons = buttons;
|
|
} else {
|
|
// Button changed: Complete Drop operation.
|
|
if (!(m_currentButtons & buttons)) {
|
|
hr = ResultFromScode(DRAGDROP_S_DROP);
|
|
break;
|
|
}
|
|
}
|
|
|
|
QGuiApplication::processEvents();
|
|
|
|
} while (false);
|
|
|
|
if (QWindowsContext::verbose > 1 || hr != S_OK) {
|
|
qCDebug(lcQpaMime) << __FUNCTION__ << "fEscapePressed=" << fEscapePressed
|
|
<< "grfKeyState=" << grfKeyState << "buttons" << m_currentButtons
|
|
<< "returns 0x" << hex <<int(hr) << dec;
|
|
}
|
|
return hr;
|
|
}
|
|
|
|
/*!
|
|
\brief Give feedback: Change cursor accoding to action.
|
|
*/
|
|
|
|
QT_ENSURE_STACK_ALIGNED_FOR_SSE STDMETHODIMP
|
|
QWindowsOleDropSource::GiveFeedback(DWORD dwEffect)
|
|
{
|
|
const Qt::DropAction action = translateToQDragDropAction(dwEffect);
|
|
m_drag->updateAction(action);
|
|
|
|
const qint64 currentCacheKey = m_drag->currentDrag()->dragCursor(action).cacheKey();
|
|
ActionCursorMapConstIt it = m_cursors.constFind(action);
|
|
// If a custom drag cursor is set, check its cache key to detect changes.
|
|
if (it == m_cursors.constEnd() || (currentCacheKey && currentCacheKey != it.value().cacheKey)) {
|
|
createCursors();
|
|
it = m_cursors.constFind(action);
|
|
}
|
|
|
|
if (it != m_cursors.constEnd()) {
|
|
const CursorEntry &e = it.value();
|
|
switch (m_mode) {
|
|
case MouseDrag:
|
|
SetCursor(e.cursor->cursor);
|
|
break;
|
|
case TouchDrag:
|
|
if (!m_touchDragWindow)
|
|
m_touchDragWindow = new QWindowsDragCursorWindow;
|
|
m_touchDragWindow->setPixmap(e.pixmap);
|
|
m_touchDragWindow->setFramePosition((QWindowsCursor::mousePosition() - e.hotSpot) / QWindowsScaling::factor());
|
|
if (!m_touchDragWindow->isVisible())
|
|
m_touchDragWindow->show();
|
|
break;
|
|
}
|
|
return ResultFromScode(S_OK);
|
|
}
|
|
|
|
return ResultFromScode(DRAGDROP_S_USEDEFAULTCURSORS);
|
|
}
|
|
|
|
/*!
|
|
\class QWindowsOleDropTarget
|
|
\brief Implementation of IDropTarget
|
|
|
|
To be registered for each window. Currently, drop sites
|
|
are enabled for top levels. The child window handling
|
|
(sending DragEnter/Leave, etc) is handled in here.
|
|
|
|
\sa QWindowsDrag
|
|
\internal
|
|
\ingroup qt-lighthouse-win
|
|
*/
|
|
|
|
QWindowsOleDropTarget::QWindowsOleDropTarget(QWindow *w) :
|
|
m_refs(1), m_window(w), m_chosenEffect(0), m_lastKeyState(0)
|
|
{
|
|
qCDebug(lcQpaMime) << __FUNCTION__ << this << w;
|
|
}
|
|
|
|
QWindowsOleDropTarget::~QWindowsOleDropTarget()
|
|
{
|
|
qCDebug(lcQpaMime) << __FUNCTION__ << this;
|
|
}
|
|
|
|
STDMETHODIMP
|
|
QWindowsOleDropTarget::QueryInterface(REFIID iid, void FAR* FAR* ppv)
|
|
{
|
|
if (iid == IID_IUnknown || iid == IID_IDropTarget) {
|
|
*ppv = this;
|
|
AddRef();
|
|
return NOERROR;
|
|
}
|
|
*ppv = NULL;
|
|
return ResultFromScode(E_NOINTERFACE);
|
|
}
|
|
|
|
STDMETHODIMP_(ULONG)
|
|
QWindowsOleDropTarget::AddRef(void)
|
|
{
|
|
return ++m_refs;
|
|
}
|
|
|
|
STDMETHODIMP_(ULONG)
|
|
QWindowsOleDropTarget::Release(void)
|
|
{
|
|
if (--m_refs == 0) {
|
|
delete this;
|
|
return 0;
|
|
}
|
|
return m_refs;
|
|
}
|
|
|
|
void QWindowsOleDropTarget::handleDrag(QWindow *window, DWORD grfKeyState,
|
|
const QPoint &point, LPDWORD pdwEffect)
|
|
{
|
|
Q_ASSERT(window);
|
|
m_lastPoint = point;
|
|
m_lastKeyState = grfKeyState;
|
|
|
|
QWindowsDrag *windowsDrag = QWindowsDrag::instance();
|
|
const Qt::DropActions actions = translateToQDragDropActions(*pdwEffect);
|
|
QGuiApplicationPrivate::modifier_buttons = toQtKeyboardModifiers(grfKeyState);
|
|
QGuiApplicationPrivate::mouse_buttons = QWindowsMouseHandler::keyStateToMouseButtons(grfKeyState);
|
|
|
|
const QPlatformDragQtResponse response =
|
|
QWindowSystemInterface::handleDrag(window, windowsDrag->dropData(),
|
|
m_lastPoint / QWindowsScaling::factor(),
|
|
actions);
|
|
|
|
m_answerRect = response.answerRect();
|
|
const Qt::DropAction action = response.acceptedAction();
|
|
if (response.isAccepted()) {
|
|
m_chosenEffect = translateToWinDragEffects(action);
|
|
} else {
|
|
m_chosenEffect = DROPEFFECT_NONE;
|
|
}
|
|
*pdwEffect = m_chosenEffect;
|
|
qCDebug(lcQpaMime) << __FUNCTION__ << m_window
|
|
<< windowsDrag->dropData() << " supported actions=" << actions
|
|
<< " mods=" << QGuiApplicationPrivate::modifier_buttons
|
|
<< " mouse=" << QGuiApplicationPrivate::mouse_buttons
|
|
<< " accepted: " << response.isAccepted() << action
|
|
<< m_answerRect << " effect" << *pdwEffect;
|
|
}
|
|
|
|
QT_ENSURE_STACK_ALIGNED_FOR_SSE STDMETHODIMP
|
|
QWindowsOleDropTarget::DragEnter(LPDATAOBJECT pDataObj, DWORD grfKeyState,
|
|
POINTL pt, LPDWORD pdwEffect)
|
|
{
|
|
if (IDropTargetHelper* dh = QWindowsDrag::instance()->dropHelper())
|
|
dh->DragEnter(reinterpret_cast<HWND>(m_window->winId()), pDataObj, reinterpret_cast<POINT*>(&pt), *pdwEffect);
|
|
|
|
qCDebug(lcQpaMime) << __FUNCTION__ << "widget=" << m_window << " key=" << grfKeyState
|
|
<< "pt=" << pt.x << pt.y;
|
|
|
|
QWindowsDrag::instance()->setDropDataObject(pDataObj);
|
|
pDataObj->AddRef();
|
|
const QPoint point = QWindowsGeometryHint::mapFromGlobal(m_window, QPoint(pt.x,pt.y));
|
|
handleDrag(m_window, grfKeyState, point, pdwEffect);
|
|
return NOERROR;
|
|
}
|
|
|
|
QT_ENSURE_STACK_ALIGNED_FOR_SSE STDMETHODIMP
|
|
QWindowsOleDropTarget::DragOver(DWORD grfKeyState, POINTL pt, LPDWORD pdwEffect)
|
|
{
|
|
if (IDropTargetHelper* dh = QWindowsDrag::instance()->dropHelper())
|
|
dh->DragOver(reinterpret_cast<POINT*>(&pt), *pdwEffect);
|
|
|
|
qCDebug(lcQpaMime) << __FUNCTION__ << "m_window" << m_window << "key=" << grfKeyState
|
|
<< "pt=" << pt.x << pt.y;
|
|
const QPoint tmpPoint = QWindowsGeometryHint::mapFromGlobal(m_window, QPoint(pt.x,pt.y));
|
|
// see if we should compress this event
|
|
if ((tmpPoint == m_lastPoint || m_answerRect.contains(tmpPoint))
|
|
&& m_lastKeyState == grfKeyState) {
|
|
*pdwEffect = m_chosenEffect;
|
|
qCDebug(lcQpaMime) << __FUNCTION__ << "compressed event";
|
|
return NOERROR;
|
|
}
|
|
|
|
handleDrag(m_window, grfKeyState, tmpPoint, pdwEffect);
|
|
return NOERROR;
|
|
}
|
|
|
|
QT_ENSURE_STACK_ALIGNED_FOR_SSE STDMETHODIMP
|
|
QWindowsOleDropTarget::DragLeave()
|
|
{
|
|
if (IDropTargetHelper* dh = QWindowsDrag::instance()->dropHelper())
|
|
dh->DragLeave();
|
|
|
|
qCDebug(lcQpaMime) << __FUNCTION__ << ' ' << m_window;
|
|
|
|
QWindowSystemInterface::handleDrag(m_window, 0, QPoint(), Qt::IgnoreAction);
|
|
QWindowsDrag::instance()->releaseDropDataObject();
|
|
|
|
return NOERROR;
|
|
}
|
|
|
|
#define KEY_STATE_BUTTON_MASK (MK_LBUTTON | MK_MBUTTON | MK_RBUTTON)
|
|
|
|
QT_ENSURE_STACK_ALIGNED_FOR_SSE STDMETHODIMP
|
|
QWindowsOleDropTarget::Drop(LPDATAOBJECT pDataObj, DWORD grfKeyState,
|
|
POINTL pt, LPDWORD pdwEffect)
|
|
{
|
|
if (IDropTargetHelper* dh = QWindowsDrag::instance()->dropHelper())
|
|
dh->Drop(pDataObj, reinterpret_cast<POINT*>(&pt), *pdwEffect);
|
|
|
|
qCDebug(lcQpaMime) << __FUNCTION__ << ' ' << m_window
|
|
<< "keys=" << grfKeyState << "pt=" << pt.x << ',' << pt.y;
|
|
|
|
m_lastPoint = QWindowsGeometryHint::mapFromGlobal(m_window, QPoint(pt.x,pt.y));
|
|
// grfKeyState does not all ways contain button state in the drop so if
|
|
// it doesn't then use the last known button state;
|
|
if ((grfKeyState & KEY_STATE_BUTTON_MASK) == 0)
|
|
grfKeyState |= m_lastKeyState & KEY_STATE_BUTTON_MASK;
|
|
m_lastKeyState = grfKeyState;
|
|
|
|
QWindowsDrag *windowsDrag = QWindowsDrag::instance();
|
|
|
|
const QPlatformDropQtResponse response =
|
|
QWindowSystemInterface::handleDrop(m_window, windowsDrag->dropData(),
|
|
m_lastPoint / QWindowsScaling::factor(),
|
|
translateToQDragDropActions(*pdwEffect));
|
|
|
|
if (response.isAccepted()) {
|
|
const Qt::DropAction action = response.acceptedAction();
|
|
if (action == Qt::MoveAction || action == Qt::TargetMoveAction) {
|
|
if (action == Qt::MoveAction)
|
|
m_chosenEffect = DROPEFFECT_MOVE;
|
|
else
|
|
m_chosenEffect = DROPEFFECT_COPY;
|
|
HGLOBAL hData = GlobalAlloc(0, sizeof(DWORD));
|
|
if (hData) {
|
|
DWORD *moveEffect = (DWORD *)GlobalLock(hData);;
|
|
*moveEffect = DROPEFFECT_MOVE;
|
|
GlobalUnlock(hData);
|
|
STGMEDIUM medium;
|
|
memset(&medium, 0, sizeof(STGMEDIUM));
|
|
medium.tymed = TYMED_HGLOBAL;
|
|
medium.hGlobal = hData;
|
|
FORMATETC format;
|
|
format.cfFormat = RegisterClipboardFormat(CFSTR_PERFORMEDDROPEFFECT);
|
|
format.tymed = TYMED_HGLOBAL;
|
|
format.ptd = 0;
|
|
format.dwAspect = 1;
|
|
format.lindex = -1;
|
|
windowsDrag->dropDataObject()->SetData(&format, &medium, true);
|
|
}
|
|
} else {
|
|
m_chosenEffect = translateToWinDragEffects(action);
|
|
}
|
|
} else {
|
|
m_chosenEffect = DROPEFFECT_NONE;
|
|
}
|
|
*pdwEffect = m_chosenEffect;
|
|
|
|
windowsDrag->releaseDropDataObject();
|
|
return NOERROR;
|
|
}
|
|
|
|
|
|
/*!
|
|
\class QWindowsDrag
|
|
\brief Windows drag implementation.
|
|
\internal
|
|
\ingroup qt-lighthouse-win
|
|
*/
|
|
|
|
QWindowsDrag::QWindowsDrag() :
|
|
m_dropDataObject(0), m_cachedDropTargetHelper(0)
|
|
{
|
|
}
|
|
|
|
QWindowsDrag::~QWindowsDrag()
|
|
{
|
|
if (m_cachedDropTargetHelper)
|
|
m_cachedDropTargetHelper->Release();
|
|
}
|
|
|
|
/*!
|
|
\brief Return data for a drop in process. If it stems from a current drag, use a shortcut.
|
|
*/
|
|
|
|
QMimeData *QWindowsDrag::dropData()
|
|
{
|
|
if (const QDrag *drag = currentDrag())
|
|
return drag->mimeData();
|
|
return &m_dropData;
|
|
}
|
|
|
|
/*!
|
|
\brief May be used to handle extended cursors functionality for drags from outside the app.
|
|
*/
|
|
IDropTargetHelper* QWindowsDrag::dropHelper() {
|
|
if (!m_cachedDropTargetHelper) {
|
|
CoCreateInstance(CLSID_DragDropHelper, 0, CLSCTX_INPROC_SERVER,
|
|
IID_IDropTargetHelper,
|
|
reinterpret_cast<void**>(&m_cachedDropTargetHelper));
|
|
}
|
|
return m_cachedDropTargetHelper;
|
|
}
|
|
|
|
QPixmap QWindowsDrag::defaultCursor(Qt::DropAction action) const
|
|
{
|
|
switch (action) {
|
|
case Qt::CopyAction:
|
|
if (m_copyDragCursor.isNull())
|
|
m_copyDragCursor = QWindowsCursor::customCursor(Qt::DragCopyCursor).pixmap();
|
|
return m_copyDragCursor;
|
|
case Qt::TargetMoveAction:
|
|
case Qt::MoveAction:
|
|
if (m_moveDragCursor.isNull())
|
|
m_moveDragCursor = QWindowsCursor::customCursor(Qt::DragMoveCursor).pixmap();
|
|
return m_moveDragCursor;
|
|
case Qt::LinkAction:
|
|
if (m_linkDragCursor.isNull())
|
|
m_linkDragCursor = QWindowsCursor::customCursor(Qt::DragLinkCursor).pixmap();
|
|
return m_linkDragCursor;
|
|
default:
|
|
break;
|
|
}
|
|
|
|
static const char * const ignoreDragCursorXpmC[] = {
|
|
"24 30 3 1",
|
|
". c None",
|
|
"a c #000000",
|
|
"X c #FFFFFF",
|
|
"aa......................",
|
|
"aXa.....................",
|
|
"aXXa....................",
|
|
"aXXXa...................",
|
|
"aXXXXa..................",
|
|
"aXXXXXa.................",
|
|
"aXXXXXXa................",
|
|
"aXXXXXXXa...............",
|
|
"aXXXXXXXXa..............",
|
|
"aXXXXXXXXXa.............",
|
|
"aXXXXXXaaaa.............",
|
|
"aXXXaXXa................",
|
|
"aXXaaXXa................",
|
|
"aXa..aXXa...............",
|
|
"aa...aXXa...............",
|
|
"a.....aXXa..............",
|
|
"......aXXa.....XXXX.....",
|
|
".......aXXa..XXaaaaXX...",
|
|
".......aXXa.XaaaaaaaaX..",
|
|
"........aa.XaaaXXXXaaaX.",
|
|
"...........XaaaaX..XaaX.",
|
|
"..........XaaXaaaX..XaaX",
|
|
"..........XaaXXaaaX.XaaX",
|
|
"..........XaaX.XaaaXXaaX",
|
|
"..........XaaX..XaaaXaaX",
|
|
"...........XaaX..XaaaaX.",
|
|
"...........XaaaXXXXaaaX.",
|
|
"............XaaaaaaaaX..",
|
|
".............XXaaaaXX...",
|
|
"...............XXXX....."};
|
|
|
|
if (m_ignoreDragCursor.isNull()) {
|
|
#if !defined (Q_OS_WINCE)
|
|
HCURSOR cursor = LoadCursor(NULL, IDC_NO);
|
|
ICONINFO iconInfo = {0, 0, 0, 0, 0};
|
|
GetIconInfo(cursor, &iconInfo);
|
|
BITMAP bmColor = {0, 0, 0, 0, 0, 0, 0};
|
|
|
|
if (iconInfo.hbmColor
|
|
&& GetObject(iconInfo.hbmColor, sizeof(BITMAP), &bmColor)
|
|
&& bmColor.bmWidth == bmColor.bmWidthBytes / 4) {
|
|
const int colorBitsLength = bmColor.bmHeight * bmColor.bmWidthBytes;
|
|
uchar *colorBits = new uchar[colorBitsLength];
|
|
GetBitmapBits(iconInfo.hbmColor, colorBitsLength, colorBits);
|
|
const QImage colorImage(colorBits, bmColor.bmWidth, bmColor.bmHeight,
|
|
bmColor.bmWidthBytes, QImage::Format_ARGB32);
|
|
|
|
m_ignoreDragCursor = QPixmap::fromImage(colorImage);
|
|
delete [] colorBits;
|
|
} else {
|
|
m_ignoreDragCursor = QPixmap(ignoreDragCursorXpmC);
|
|
}
|
|
|
|
DeleteObject(iconInfo.hbmMask);
|
|
DeleteObject(iconInfo.hbmColor);
|
|
DestroyCursor(cursor);
|
|
#else // !Q_OS_WINCE
|
|
m_ignoreDragCursor = QPixmap(ignoreDragCursorXpmC);
|
|
#endif // !Q_OS_WINCE
|
|
}
|
|
return m_ignoreDragCursor;
|
|
}
|
|
|
|
Qt::DropAction QWindowsDrag::drag(QDrag *drag)
|
|
{
|
|
// TODO: Accessibility handling?
|
|
QMimeData *dropData = drag->mimeData();
|
|
Qt::DropAction dragResult = Qt::IgnoreAction;
|
|
|
|
DWORD resultEffect;
|
|
QWindowsOleDropSource *windowDropSource = new QWindowsOleDropSource(this);
|
|
windowDropSource->createCursors();
|
|
QWindowsOleDataObject *dropDataObject = new QWindowsOleDataObject(dropData);
|
|
const Qt::DropActions possibleActions = drag->supportedActions();
|
|
const DWORD allowedEffects = translateToWinDragEffects(possibleActions);
|
|
qCDebug(lcQpaMime) << '>' << __FUNCTION__ << "possible Actions=0x"
|
|
<< hex << int(possibleActions) << "effects=0x" << allowedEffects << dec;
|
|
const HRESULT r = DoDragDrop(dropDataObject, windowDropSource, allowedEffects, &resultEffect);
|
|
const DWORD reportedPerformedEffect = dropDataObject->reportedPerformedEffect();
|
|
if (r == DRAGDROP_S_DROP) {
|
|
if (reportedPerformedEffect == DROPEFFECT_MOVE && resultEffect != DROPEFFECT_MOVE) {
|
|
dragResult = Qt::TargetMoveAction;
|
|
resultEffect = DROPEFFECT_MOVE;
|
|
} else {
|
|
dragResult = translateToQDragDropAction(resultEffect);
|
|
}
|
|
// Force it to be a copy if an unsupported operation occurred.
|
|
// This indicates a bug in the drop target.
|
|
if (resultEffect != DROPEFFECT_NONE && !(resultEffect & allowedEffects)) {
|
|
qWarning("%s: Forcing Qt::CopyAction", __FUNCTION__);
|
|
dragResult = Qt::CopyAction;
|
|
}
|
|
}
|
|
// clean up
|
|
dropDataObject->releaseQt();
|
|
dropDataObject->Release(); // Will delete obj if refcount becomes 0
|
|
windowDropSource->Release(); // Will delete src if refcount becomes 0
|
|
qCDebug(lcQpaMime) << '<' << __FUNCTION__ << hex << "allowedEffects=0x" << allowedEffects
|
|
<< "reportedPerformedEffect=0x" << reportedPerformedEffect
|
|
<< " resultEffect=0x" << resultEffect << "hr=0x" << int(r) << dec << "dropAction=" << dragResult;
|
|
return dragResult;
|
|
}
|
|
|
|
QWindowsDrag *QWindowsDrag::instance()
|
|
{
|
|
return static_cast<QWindowsDrag *>(QWindowsIntegration::instance()->drag());
|
|
}
|
|
|
|
void QWindowsDrag::releaseDropDataObject()
|
|
{
|
|
qCDebug(lcQpaMime) << __FUNCTION__ << m_dropDataObject;
|
|
if (m_dropDataObject) {
|
|
m_dropDataObject->Release();
|
|
m_dropDataObject = 0;
|
|
}
|
|
}
|
|
|
|
QT_END_NAMESPACE
|