/**************************************************************************** ** ** Copyright (C) 2015 The Qt Company Ltd. ** Contact: http://www.qt.io/licensing/ ** ** This file is part of the Qt Compositor. ** ** $QT_BEGIN_LICENSE:BSD$ ** You may use this file under the terms of the BSD license as follows: ** ** "Redistribution and use in source and binary forms, with or without ** modification, are permitted provided that the following conditions are ** met: ** * Redistributions of source code must retain the above copyright ** notice, this list of conditions and the following disclaimer. ** * Redistributions in binary form must reproduce the above copyright ** notice, this list of conditions and the following disclaimer in ** the documentation and/or other materials provided with the ** distribution. ** * Neither the name of The Qt Company Ltd nor the names of its ** contributors may be used to endorse or promote products derived ** from this software without specific prior written permission. ** ** ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include "qwldatadevice_p.h" #include "qwlcompositor_p.h" #include "qwldatasource_p.h" #include "qwldataoffer_p.h" #include "qwlinputdevice_p.h" #include "qwlkeyboard_p.h" #include "qwlpointer_p.h" #include "qwlsurface_p.h" #include "qwltouch_p.h" #include "qwldatadevicemanager_p.h" #include "qwaylanddrag.h" #include "qwaylandsurfaceview.h" #include QT_BEGIN_NAMESPACE namespace QtWayland { DataDevice::DataDevice(InputDevice *inputDevice) : wl_data_device() , m_compositor(inputDevice->compositor()) , m_inputDevice(inputDevice) , m_selectionSource(0) , m_dragClient(0) , m_dragDataSource(0) , m_dragFocus(0) , m_dragFocusResource(0) , m_dragIcon(0) { } void DataDevice::setFocus(QtWaylandServer::wl_keyboard::Resource *focusResource) { if (!focusResource) return; Resource *resource = resourceMap().value(focusResource->client()); if (!resource) return; if (m_selectionSource) { DataOffer *offer = new DataOffer(m_selectionSource, resource); send_selection(resource->handle, offer->resource()->handle); } } void DataDevice::setDragFocus(QWaylandSurfaceView *focus, const QPointF &localPosition) { if (m_dragFocusResource) { send_leave(m_dragFocusResource->handle); m_dragFocus = 0; m_dragFocusResource = 0; } if (!focus) return; if (!m_dragDataSource && m_dragClient != focus->surface()->handle()->resource()->client()) return; Resource *resource = resourceMap().value(focus->surface()->handle()->resource()->client()); if (!resource) return; uint32_t serial = wl_display_next_serial(m_compositor->wl_display()); DataOffer *offer = m_dragDataSource ? new DataOffer(m_dragDataSource, resource) : 0; if (m_dragDataSource && !offer) return; send_enter(resource->handle, serial, focus->surface()->handle()->resource()->handle, wl_fixed_from_double(localPosition.x()), wl_fixed_from_double(localPosition.y()), offer->resource()->handle); m_dragFocus = focus; m_dragFocusResource = resource; } QWaylandSurfaceView *DataDevice::dragIcon() const { return m_dragIcon; } void DataDevice::sourceDestroyed(DataSource *source) { if (m_selectionSource == source) m_selectionSource = 0; } void DataDevice::focus() { QWaylandSurfaceView *focus = m_compositor->waylandCompositor()->pickView(m_pointer->currentPosition()); if (focus != m_dragFocus) setDragFocus(focus, m_compositor->waylandCompositor()->mapToView(focus, m_pointer->currentPosition())); } void DataDevice::motion(uint32_t time) { if (m_dragIcon) { m_dragIcon->setPos(m_pointer->currentPosition()); } if (m_dragFocusResource && m_dragFocus) { const QPointF &surfacePoint = m_compositor->waylandCompositor()->mapToView(m_dragFocus, m_pointer->currentPosition()); qDebug() << Q_FUNC_INFO << m_pointer->currentPosition() << surfacePoint; send_motion(m_dragFocusResource->handle, time, wl_fixed_from_double(surfacePoint.x()), wl_fixed_from_double(surfacePoint.y())); } } void DataDevice::button(uint32_t time, Qt::MouseButton button, uint32_t state) { Q_UNUSED(time); if (m_dragFocusResource && m_pointer->grabButton() == button && state == Pointer::button_state_released) send_drop(m_dragFocusResource->handle); if (!m_pointer->buttonPressed() && state == Pointer::button_state_released) { if (m_dragIcon) { m_dragIcon = 0; Q_EMIT m_inputDevice->dragHandle()->iconChanged(); } setDragFocus(0, QPointF()); m_pointer->endGrab(); } } void DataDevice::data_device_start_drag(Resource *resource, struct ::wl_resource *source, struct ::wl_resource *origin, struct ::wl_resource *icon, uint32_t serial) { if (m_inputDevice->pointerDevice()->grabSerial() == serial) { if (!m_inputDevice->pointerDevice()->buttonPressed() || m_inputDevice->pointerDevice()->focusSurface()->surface()->handle() != Surface::fromResource(origin)) return; m_dragClient = resource->client(); m_dragDataSource = source != 0 ? DataSource::fromResource(source) : 0; m_dragIcon = icon != 0 ? m_compositor->waylandCompositor()->createView(Surface::fromResource(icon)->waylandSurface()) : 0; Q_EMIT m_inputDevice->dragHandle()->iconChanged(); m_inputDevice->pointerDevice()->setFocus(0, QPointF()); m_inputDevice->pointerDevice()->startGrab(this); } } void DataDevice::data_device_set_selection(Resource *, struct ::wl_resource *source, uint32_t serial) { Q_UNUSED(serial); DataSource *dataSource = source ? DataSource::fromResource(source) : 0; if (m_selectionSource) m_selectionSource->cancel(); m_selectionSource = dataSource; m_compositor->dataDeviceManager()->setCurrentSelectionSource(m_selectionSource); if (m_selectionSource) m_selectionSource->setDevice(this); QtWaylandServer::wl_keyboard::Resource *focusResource = m_inputDevice->keyboardDevice()->focusResource(); Resource *resource = focusResource ? resourceMap().value(focusResource->client()) : 0; if (resource && m_selectionSource) { DataOffer *offer = new DataOffer(m_selectionSource, resource); send_selection(resource->handle, offer->resource()->handle); } else if (resource) { send_selection(resource->handle, 0); } } } QT_END_NAMESPACE