aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/pointer/inputinspector.cpp
diff options
context:
space:
mode:
authorShawn Rutledge <shawn.rutledge@qt.io>2021-09-06 21:40:18 +0200
committerShawn Rutledge <shawn.rutledge@qt.io>2021-09-24 17:03:19 +0200
commit8503f884bbdb50c4bebc8f8a9fce05275b0612b1 (patch)
treec4a28a0df334841a49d6653ffd02c38aca54b68a /tests/manual/pointer/inputinspector.cpp
parent11b358a82cd4b1570f32c53808ef974bf11ffb9d (diff)
Move most of the pointer manual tests to a new pointerhandlers example
They were always meant to be examples eventually. Now they will be used for an example of how to implement custom controls using only basic items and handlers. Some components are very similar to those in the shared directory; but most examples will use Qt Quick Controls, so those shared components can be removed when we no longer use them. This example should remain as the one that shows how to build reusable controls "from scratch". Removed InputInspector because it's inefficient, has limited usefulness, tends to require building the manual test to be able to run it, and could be better built as a reusable Qt.labs component later on, providing a model with all known devices and taking advantage of the QPointingDevice::grabChanged signal to track the grab states rather than polling. Pick-to: 6.2 Change-Id: I47ab6ebb2cecab07a69cf96e546ffd0db3026a60 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io> Reviewed-by: Oliver Eftevaag <oliver.eftevaag@qt.io> Reviewed-by: Shawn Rutledge <shawn.rutledge@qt.io>
Diffstat (limited to 'tests/manual/pointer/inputinspector.cpp')
-rw-r--r--tests/manual/pointer/inputinspector.cpp185
1 files changed, 0 insertions, 185 deletions
diff --git a/tests/manual/pointer/inputinspector.cpp b/tests/manual/pointer/inputinspector.cpp
deleted file mode 100644
index ee1b4e70c0..0000000000
--- a/tests/manual/pointer/inputinspector.cpp
+++ /dev/null
@@ -1,185 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2020 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the manual tests of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:GPL-EXCEPT$
-** 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 https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** 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.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-#include "inputinspector.h"
-#include <QtQuick/QQuickItem>
-#include <QtQuick/private/qquickpointerhandler_p.h>
-#include <QtGui/private/qpointingdevice_p.h>
-#include <QtCore/QSet>
-
-static const int timerInterval = 100;
-
-InputInspector::InputInspector(QObject *parent) : QObject(parent)
-{
-}
-
-InputInspector::~InputInspector()
-{
- m_window = nullptr;
- killTimer(m_timerId);
-}
-
-QString InputInspector::mouseGrabber() const
-{
- QString name;
- if (m_window) {
- if (QQuickItem *grabber = m_window->mouseGrabberItem()) {
- name = objectIdentifier(grabber);
- } else {
- name = QLatin1String("no grabber");
- }
- } else {
- name = "ERROR: need a source window";
- }
- return name;
-}
-
-QString InputInspector::passiveGrabbers() const
-{
- return vectorStringJoin(passiveGrabbers_helper());
-}
-
-QString InputInspector::exclusiveGrabbers() const
-{
- return vectorStringJoin(exclusiveGrabbers_helper());
-}
-
-QString InputInspector::vectorStringJoin(const QVector<QObject*> &arr) const
-{
- QString res;
- for (QObject* obj: arr) {
- if (!res.isEmpty())
- res += QLatin1String(" , ");
- res += objectIdentifier(obj);
- }
- res.prepend(QLatin1String("["));
- res += QLatin1String("]");
- return res;
-}
-
-QQuickWindow *InputInspector::source() const
-{
- return m_window;
-}
-
-void InputInspector::setSource(QQuickWindow *window)
-{
- m_window = window;
- if (m_window && !m_timerId)
- m_timerId = startTimer(timerInterval);
- emit sourceChanged();
-}
-
-void InputInspector::update()
-{
- const QString mouseGrabberName = mouseGrabber();
- if (lastState.mouseGrabber != mouseGrabberName) {
- emit mouseGrabberChanged();
- lastState.mouseGrabber = mouseGrabberName;
- }
-
- const QString tempPassiveGrabbers = passiveGrabbers();
- if (lastState.passiveGrabbers != tempPassiveGrabbers) {
- emit passiveGrabbersChanged();
- lastState.passiveGrabbers = tempPassiveGrabbers;
- }
-
- const QString tempExclusiveGrabbers = exclusiveGrabbers();
- if (lastState.exclusiveGrabbers != tempExclusiveGrabbers) {
- emit exclusiveGrabbersChanged();
- lastState.exclusiveGrabbers = tempExclusiveGrabbers;
- }
-}
-
-void InputInspector::timerEvent(QTimerEvent *event)
-{
- if (event->timerId() == m_timerId)
- update();
-}
-
-const QPointingDevice *InputInspector::pointerDevice() const
-{
- const QPointingDevice *device = nullptr;
- for (const auto dev : QInputDevice::devices()) {
- if (dev->type() == QInputDevice::DeviceType::TouchScreen) {
- device = static_cast<const QPointingDevice *>(dev);
- break;
- }
- }
- if (!device)
- device = QPointingDevice::primaryPointingDevice();
- return device;
-}
-
-QVector<QObject*> InputInspector::passiveGrabbers_helper(int pointId /*= 0*/) const
-{
- QVector<QObject*> result;
- const QPointingDevice *device = pointerDevice();
- if (device && source()) {
- for (auto &epd : QPointingDevicePrivate::get(device)->activePoints.values()) {
- if (!pointId || epd.eventPoint.id() == pointId) {
- for (auto pg : epd.passiveGrabbers) {
- if (!result.contains(pg))
- result << pg;
- }
- }
- }
- }
- return result;
-}
-
-QVector<QObject*> InputInspector::exclusiveGrabbers_helper(int pointId /*= 0*/) const
-{
- QVector<QObject*> result;
- const QPointingDevice *device = pointerDevice();
- if (device && source()) {
- for (auto &epd : QPointingDevicePrivate::get(device)->activePoints.values()) {
- if (!pointId || epd.eventPoint.id() == pointId) {
- if (auto g = epd.exclusiveGrabber.data()) {
- if (!result.contains(g))
- result << g;
- }
- }
- }
- }
- return result;
-}
-
-QString InputInspector::objectIdentifier(QObject *o)
-{
- QString name;
- name = o->objectName();
- if (name.isEmpty())
- name = o->property("text").toString();
- if (name.isEmpty())
- name = o->metaObject()->className();
- if (name.isEmpty())
- name = QLatin1String("unknown");
-
- return name;
-}