2011-04-27 10:05:43 +00:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
Introduce QInputDevice hierarchy; replace QTouchDevice
We have seen during the Qt 5 series that QMouseEvent::source() does
not provide enough information: if it is synthesized, it could have
come from any device for which mouse events are synthesized, not only
from a touchscreen. By providing in every QInputEvent as complete
information about the actual source device as possible, we will enable
very fine-tuned behavior in the object that handles each event.
Further, we would like to support multiple keyboards, pointing devices,
and named groups of devices that are known as "seats" in Wayland.
In Qt 5, QPA plugins registered each touchscreen as it was discovered.
Now we extend this pattern to all input devices. This new requirement
can be implemented gradually; for now, if a QTWSI input event is
received wtihout a device pointer, a default "core" device will be
created on-the-fly, and a warning emitted.
In Qt 5, QTouchEvent::TouchPoint::id() was forced to be unique even when
multiple devices were in use simultaneously. Now that each event
identifies the device it came from, this hack is no longer needed.
A stub of the new QPointerEvent is added; it will be developed further
in subsequent patches.
[ChangeLog][QtGui][QInputEvent] Every QInputEvent now carries a pointer
to an instance of QInputDevice, or the subclass QPointingDevice in case
of mouse, touch and tablet events. Each platform plugin is expected to
create the device instances, register them, and provide valid pointers
with all input events. If this is not done, warnings are emitted and
default devices are created as necessary. When the device has accurate
information, it provides the opportunity to fine-tune behavior depending
on device type and capabilities: for example if a QMouseEvent is
synthesized from a touchscreen, the recipient can see which touchscreen
it came from. Each device also has a seatName to distinguish users on
multi-user windowing systems. Touchpoint IDs are no longer unique on
their own, but the combination of ID and device is.
Fixes: QTBUG-46412
Fixes: QTBUG-72167
Task-number: QTBUG-69433
Task-number: QTBUG-52430
Change-Id: I933fb2b86182efa722037b7a33e404c5daf5292a
Reviewed-by: Shawn Rutledge <shawn.rutledge@qt.io>
2019-05-31 06:38:16 +00:00
|
|
|
** Copyright (C) 2020 The Qt Company Ltd.
|
2016-01-15 12:36:27 +00:00
|
|
|
** Contact: https://www.qt.io/licensing/
|
2011-04-27 10:05:43 +00:00
|
|
|
**
|
|
|
|
** This file is part of the test suite module of the Qt Toolkit.
|
|
|
|
**
|
2016-01-15 12:36:27 +00:00
|
|
|
** $QT_BEGIN_LICENSE:GPL-EXCEPT$
|
2012-09-19 12:28:29 +00:00
|
|
|
** 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
|
2015-01-28 08:44:43 +00:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
2016-01-15 12:36:27 +00:00
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2012-09-19 12:28:29 +00:00
|
|
|
**
|
2016-01-15 12:36:27 +00:00
|
|
|
** GNU General Public License Usage
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2011-04-27 10:05:43 +00:00
|
|
|
**
|
|
|
|
** $QT_END_LICENSE$
|
|
|
|
**
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include "tabletwidget.h"
|
|
|
|
#include <QPainter>
|
|
|
|
#include <QApplication>
|
2014-06-06 07:43:00 +00:00
|
|
|
#include <QDebug>
|
|
|
|
#include <QMetaObject>
|
|
|
|
#include <QMetaEnum>
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2017-03-13 13:05:50 +00:00
|
|
|
TabletWidget::TabletWidget(bool mouseToo) : mMouseToo(mouseToo), mWheelEventCount(0), mQuitShortcut(QKeySequence::Quit, this)
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
|
|
|
QPalette newPalette = palette();
|
|
|
|
newPalette.setColor(QPalette::Window, Qt::white);
|
|
|
|
newPalette.setColor(QPalette::WindowText, Qt::black);
|
|
|
|
setPalette(newPalette);
|
|
|
|
qApp->installEventFilter(this);
|
|
|
|
resetAttributes();
|
2017-03-13 13:05:50 +00:00
|
|
|
connect(&mQuitShortcut, SIGNAL(activated()), qApp, SLOT(quit()));
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool TabletWidget::eventFilter(QObject *, QEvent *ev)
|
|
|
|
{
|
|
|
|
switch (ev->type()) {
|
|
|
|
case QEvent::TabletEnterProximity:
|
|
|
|
case QEvent::TabletLeaveProximity:
|
|
|
|
case QEvent::TabletMove:
|
|
|
|
case QEvent::TabletPress:
|
|
|
|
case QEvent::TabletRelease:
|
|
|
|
{
|
|
|
|
QTabletEvent *event = static_cast<QTabletEvent*>(ev);
|
2020-06-16 14:43:06 +00:00
|
|
|
mDev = event->pointingDevice();
|
|
|
|
if (!mDev)
|
Introduce QInputDevice hierarchy; replace QTouchDevice
We have seen during the Qt 5 series that QMouseEvent::source() does
not provide enough information: if it is synthesized, it could have
come from any device for which mouse events are synthesized, not only
from a touchscreen. By providing in every QInputEvent as complete
information about the actual source device as possible, we will enable
very fine-tuned behavior in the object that handles each event.
Further, we would like to support multiple keyboards, pointing devices,
and named groups of devices that are known as "seats" in Wayland.
In Qt 5, QPA plugins registered each touchscreen as it was discovered.
Now we extend this pattern to all input devices. This new requirement
can be implemented gradually; for now, if a QTWSI input event is
received wtihout a device pointer, a default "core" device will be
created on-the-fly, and a warning emitted.
In Qt 5, QTouchEvent::TouchPoint::id() was forced to be unique even when
multiple devices were in use simultaneously. Now that each event
identifies the device it came from, this hack is no longer needed.
A stub of the new QPointerEvent is added; it will be developed further
in subsequent patches.
[ChangeLog][QtGui][QInputEvent] Every QInputEvent now carries a pointer
to an instance of QInputDevice, or the subclass QPointingDevice in case
of mouse, touch and tablet events. Each platform plugin is expected to
create the device instances, register them, and provide valid pointers
with all input events. If this is not done, warnings are emitted and
default devices are created as necessary. When the device has accurate
information, it provides the opportunity to fine-tune behavior depending
on device type and capabilities: for example if a QMouseEvent is
synthesized from a touchscreen, the recipient can see which touchscreen
it came from. Each device also has a seatName to distinguish users on
multi-user windowing systems. Touchpoint IDs are no longer unique on
their own, but the combination of ID and device is.
Fixes: QTBUG-46412
Fixes: QTBUG-72167
Task-number: QTBUG-69433
Task-number: QTBUG-52430
Change-Id: I933fb2b86182efa722037b7a33e404c5daf5292a
Reviewed-by: Shawn Rutledge <shawn.rutledge@qt.io>
2019-05-31 06:38:16 +00:00
|
|
|
qWarning() << "missing device in tablet event";
|
2020-06-16 14:43:06 +00:00
|
|
|
mType = event->type();
|
|
|
|
mPos = event->position();
|
|
|
|
mGPos = event->globalPosition();
|
2011-04-27 10:05:43 +00:00
|
|
|
mXT = event->xTilt();
|
|
|
|
mYT = event->yTilt();
|
|
|
|
mZ = event->z();
|
|
|
|
mPress = event->pressure();
|
|
|
|
mTangential = event->tangentialPressure();
|
|
|
|
mRot = event->rotation();
|
2014-06-06 07:43:00 +00:00
|
|
|
mButton = event->button();
|
|
|
|
mButtons = event->buttons();
|
2017-03-13 13:05:12 +00:00
|
|
|
mModifiers = event->modifiers();
|
2015-08-19 11:28:06 +00:00
|
|
|
mTimestamp = event->timestamp();
|
2011-04-27 10:05:43 +00:00
|
|
|
if (isVisible())
|
|
|
|
update();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case QEvent::MouseMove:
|
2014-06-06 07:43:00 +00:00
|
|
|
if (mMouseToo) {
|
2011-04-27 10:05:43 +00:00
|
|
|
resetAttributes();
|
|
|
|
QMouseEvent *event = static_cast<QMouseEvent*>(ev);
|
|
|
|
mType = event->type();
|
|
|
|
mPos = event->pos();
|
2020-06-16 14:43:06 +00:00
|
|
|
mGPos = event->globalPosition();
|
2015-08-19 11:28:06 +00:00
|
|
|
mTimestamp = event->timestamp();
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
2016-04-22 11:25:16 +00:00
|
|
|
break;
|
|
|
|
case QEvent::Wheel:
|
|
|
|
++mWheelEventCount;
|
|
|
|
break;
|
2011-04-27 10:05:43 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-04-12 11:59:03 +00:00
|
|
|
void TabletWidget::paintEvent(QPaintEvent *)
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
|
|
|
QPainter painter(this);
|
|
|
|
|
|
|
|
QStringList eventInfo;
|
|
|
|
|
|
|
|
QString typeString("Event type: ");
|
|
|
|
switch (mType) {
|
|
|
|
case QEvent::TabletEnterProximity:
|
|
|
|
typeString += "QEvent::TabletEnterProximity";
|
|
|
|
break;
|
|
|
|
case QEvent::TabletLeaveProximity:
|
|
|
|
typeString += "QEvent::TabletLeaveProximity";
|
|
|
|
break;
|
|
|
|
case QEvent::TabletMove:
|
|
|
|
typeString += "QEvent::TabletMove";
|
|
|
|
break;
|
|
|
|
case QEvent::TabletPress:
|
|
|
|
typeString += "QEvent::TabletPress";
|
|
|
|
break;
|
|
|
|
case QEvent::TabletRelease:
|
|
|
|
typeString += "QEvent::TabletRelease";
|
|
|
|
break;
|
|
|
|
case QEvent::MouseMove:
|
|
|
|
typeString += "QEvent::MouseMove";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
eventInfo << typeString;
|
|
|
|
|
|
|
|
eventInfo << QString("Global position: %1 %2").arg(QString::number(mGPos.x()), QString::number(mGPos.y()));
|
|
|
|
eventInfo << QString("Local position: %1 %2").arg(QString::number(mPos.x()), QString::number(mPos.y()));
|
2015-08-19 11:28:06 +00:00
|
|
|
eventInfo << QString("Timestamp: %1").arg(QString::number(mTimestamp));
|
2011-04-27 10:05:43 +00:00
|
|
|
if (mType == QEvent::TabletEnterProximity || mType == QEvent::TabletLeaveProximity
|
|
|
|
|| mType == QEvent::TabletMove || mType == QEvent::TabletPress
|
|
|
|
|| mType == QEvent::TabletRelease) {
|
2020-06-16 14:43:06 +00:00
|
|
|
if (mDev.isNull()) {
|
|
|
|
eventInfo << QString("Device info missing");
|
|
|
|
} else {
|
|
|
|
eventInfo << QString("Seat: %1").arg(mDev->seatName());
|
|
|
|
eventInfo << QString("Device type: %1").arg(deviceTypeToString(mDev->type()));
|
|
|
|
eventInfo << QString("Pointer type: %1").arg(pointerTypeToString(mDev->pointerType()));
|
|
|
|
eventInfo << QString("Capabilities: %1").arg(pointerCapabilitiesToString(mDev->capabilities()));
|
|
|
|
eventInfo << QString("Unique Id: %1").arg(QString::number(mDev->uniqueId().numericId(), 16));
|
|
|
|
eventInfo << QString("System Id: %1").arg(mDev->id());
|
|
|
|
}
|
2014-06-06 07:43:00 +00:00
|
|
|
eventInfo << QString("Button: %1 (0x%2)").arg(buttonToString(mButton)).arg(mButton, 0, 16);
|
|
|
|
eventInfo << QString("Buttons currently pressed: %1 (0x%2)").arg(buttonsToString(mButtons)).arg(mButtons, 0, 16);
|
2017-03-13 13:05:12 +00:00
|
|
|
eventInfo << QString("Keyboard modifiers: %1 (0x%2)").arg(modifiersToString(mModifiers)).arg(mModifiers, 0, 16);
|
2011-04-27 10:05:43 +00:00
|
|
|
eventInfo << QString("Pressure: %1").arg(QString::number(mPress));
|
|
|
|
eventInfo << QString("Tangential pressure: %1").arg(QString::number(mTangential));
|
|
|
|
eventInfo << QString("Rotation: %1").arg(QString::number(mRot));
|
|
|
|
eventInfo << QString("xTilt: %1").arg(QString::number(mXT));
|
|
|
|
eventInfo << QString("yTilt: %1").arg(QString::number(mYT));
|
|
|
|
eventInfo << QString("z: %1").arg(QString::number(mZ));
|
|
|
|
|
2016-04-22 11:25:16 +00:00
|
|
|
|
|
|
|
eventInfo << QString("Total wheel events: %1").arg(QString::number(mWheelEventCount));
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
2014-06-06 07:43:00 +00:00
|
|
|
QString text = eventInfo.join("\n");
|
|
|
|
painter.drawText(rect(), text);
|
|
|
|
}
|
|
|
|
|
Introduce QInputDevice hierarchy; replace QTouchDevice
We have seen during the Qt 5 series that QMouseEvent::source() does
not provide enough information: if it is synthesized, it could have
come from any device for which mouse events are synthesized, not only
from a touchscreen. By providing in every QInputEvent as complete
information about the actual source device as possible, we will enable
very fine-tuned behavior in the object that handles each event.
Further, we would like to support multiple keyboards, pointing devices,
and named groups of devices that are known as "seats" in Wayland.
In Qt 5, QPA plugins registered each touchscreen as it was discovered.
Now we extend this pattern to all input devices. This new requirement
can be implemented gradually; for now, if a QTWSI input event is
received wtihout a device pointer, a default "core" device will be
created on-the-fly, and a warning emitted.
In Qt 5, QTouchEvent::TouchPoint::id() was forced to be unique even when
multiple devices were in use simultaneously. Now that each event
identifies the device it came from, this hack is no longer needed.
A stub of the new QPointerEvent is added; it will be developed further
in subsequent patches.
[ChangeLog][QtGui][QInputEvent] Every QInputEvent now carries a pointer
to an instance of QInputDevice, or the subclass QPointingDevice in case
of mouse, touch and tablet events. Each platform plugin is expected to
create the device instances, register them, and provide valid pointers
with all input events. If this is not done, warnings are emitted and
default devices are created as necessary. When the device has accurate
information, it provides the opportunity to fine-tune behavior depending
on device type and capabilities: for example if a QMouseEvent is
synthesized from a touchscreen, the recipient can see which touchscreen
it came from. Each device also has a seatName to distinguish users on
multi-user windowing systems. Touchpoint IDs are no longer unique on
their own, but the combination of ID and device is.
Fixes: QTBUG-46412
Fixes: QTBUG-72167
Task-number: QTBUG-69433
Task-number: QTBUG-52430
Change-Id: I933fb2b86182efa722037b7a33e404c5daf5292a
Reviewed-by: Shawn Rutledge <shawn.rutledge@qt.io>
2019-05-31 06:38:16 +00:00
|
|
|
const char *TabletWidget::deviceTypeToString(QInputDevice::DeviceType t)
|
|
|
|
{
|
|
|
|
static int enumIdx = QInputDevice::staticMetaObject.indexOfEnumerator("DeviceType");
|
|
|
|
return QPointingDevice::staticMetaObject.enumerator(enumIdx).valueToKey(int(t));
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *TabletWidget::pointerTypeToString(QPointingDevice::PointerType t)
|
|
|
|
{
|
|
|
|
static int enumIdx = QPointingDevice::staticMetaObject.indexOfEnumerator("PointerType");
|
|
|
|
return QPointingDevice::staticMetaObject.enumerator(enumIdx).valueToKey(int(t));
|
|
|
|
}
|
|
|
|
|
|
|
|
QString TabletWidget::pointerCapabilitiesToString(QPointingDevice::Capabilities c)
|
|
|
|
{
|
|
|
|
static int enumIdx = QPointingDevice::staticMetaObject.indexOfEnumerator("Capabilities");
|
|
|
|
return QString::fromLatin1(QPointingDevice::staticMetaObject.enumerator(enumIdx).valueToKeys(c));
|
|
|
|
}
|
|
|
|
|
2014-06-06 07:43:00 +00:00
|
|
|
const char *TabletWidget::buttonToString(Qt::MouseButton b)
|
|
|
|
{
|
Introduce QInputDevice hierarchy; replace QTouchDevice
We have seen during the Qt 5 series that QMouseEvent::source() does
not provide enough information: if it is synthesized, it could have
come from any device for which mouse events are synthesized, not only
from a touchscreen. By providing in every QInputEvent as complete
information about the actual source device as possible, we will enable
very fine-tuned behavior in the object that handles each event.
Further, we would like to support multiple keyboards, pointing devices,
and named groups of devices that are known as "seats" in Wayland.
In Qt 5, QPA plugins registered each touchscreen as it was discovered.
Now we extend this pattern to all input devices. This new requirement
can be implemented gradually; for now, if a QTWSI input event is
received wtihout a device pointer, a default "core" device will be
created on-the-fly, and a warning emitted.
In Qt 5, QTouchEvent::TouchPoint::id() was forced to be unique even when
multiple devices were in use simultaneously. Now that each event
identifies the device it came from, this hack is no longer needed.
A stub of the new QPointerEvent is added; it will be developed further
in subsequent patches.
[ChangeLog][QtGui][QInputEvent] Every QInputEvent now carries a pointer
to an instance of QInputDevice, or the subclass QPointingDevice in case
of mouse, touch and tablet events. Each platform plugin is expected to
create the device instances, register them, and provide valid pointers
with all input events. If this is not done, warnings are emitted and
default devices are created as necessary. When the device has accurate
information, it provides the opportunity to fine-tune behavior depending
on device type and capabilities: for example if a QMouseEvent is
synthesized from a touchscreen, the recipient can see which touchscreen
it came from. Each device also has a seatName to distinguish users on
multi-user windowing systems. Touchpoint IDs are no longer unique on
their own, but the combination of ID and device is.
Fixes: QTBUG-46412
Fixes: QTBUG-72167
Task-number: QTBUG-69433
Task-number: QTBUG-52430
Change-Id: I933fb2b86182efa722037b7a33e404c5daf5292a
Reviewed-by: Shawn Rutledge <shawn.rutledge@qt.io>
2019-05-31 06:38:16 +00:00
|
|
|
static int enumIdx = QObject::staticMetaObject.indexOfEnumerator("MouseButtons");
|
|
|
|
return QObject::staticMetaObject.enumerator(enumIdx).valueToKey(b);
|
2014-06-06 07:43:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QString TabletWidget::buttonsToString(Qt::MouseButtons bs)
|
|
|
|
{
|
|
|
|
QStringList ret;
|
|
|
|
for (int i = 0; (uint)(1 << i) <= Qt::MaxMouseButton; ++i) {
|
|
|
|
Qt::MouseButton b = static_cast<Qt::MouseButton>(1 << i);
|
|
|
|
if (bs.testFlag(b))
|
|
|
|
ret << buttonToString(b);
|
|
|
|
}
|
2015-10-13 07:46:56 +00:00
|
|
|
return ret.join(QLatin1Char('|'));
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
2017-03-13 13:05:12 +00:00
|
|
|
QString TabletWidget::modifiersToString(Qt::KeyboardModifiers m)
|
|
|
|
{
|
|
|
|
QStringList ret;
|
|
|
|
if (m & Qt::ShiftModifier)
|
|
|
|
ret << QLatin1String("Shift");
|
|
|
|
if (m & Qt::ControlModifier)
|
|
|
|
ret << QLatin1String("Control");
|
|
|
|
if (m & Qt::AltModifier)
|
|
|
|
ret << QLatin1String("Alt");
|
|
|
|
if (m & Qt::MetaModifier)
|
|
|
|
ret << QLatin1String("Meta");
|
|
|
|
if (m & Qt::KeypadModifier)
|
|
|
|
ret << QLatin1String("Keypad");
|
|
|
|
if (m & Qt::GroupSwitchModifier)
|
|
|
|
ret << QLatin1String("GroupSwitch");
|
|
|
|
return ret.join(QLatin1Char('|'));
|
|
|
|
}
|
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
void TabletWidget::tabletEvent(QTabletEvent *event)
|
|
|
|
{
|
|
|
|
event->accept();
|
|
|
|
}
|
|
|
|
|