QtBase  v6.3.1
qgesturemanager_p.h
Go to the documentation of this file.
1 /****************************************************************************
2 **
3 ** Copyright (C) 2016 The Qt Company Ltd.
4 ** Contact: https://www.qt.io/licensing/
5 **
6 ** This file is part of the QtWidgets module of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** Commercial License Usage
10 ** Licensees holding valid commercial Qt licenses may use this file in
11 ** accordance with the commercial license agreement provided with the
12 ** Software or, alternatively, in accordance with the terms contained in
13 ** a written agreement between you and The Qt Company. For licensing terms
14 ** and conditions see https://www.qt.io/terms-conditions. For further
15 ** information use the contact form at https://www.qt.io/contact-us.
16 **
17 ** GNU Lesser General Public License Usage
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 3 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL3 included in the
21 ** packaging of this file. Please review the following information to
22 ** ensure the GNU Lesser General Public License version 3 requirements
23 ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
24 **
25 ** GNU General Public License Usage
26 ** Alternatively, this file may be used under the terms of the GNU
27 ** General Public License version 2.0 or (at your option) the GNU General
28 ** Public license version 3 or any later version approved by the KDE Free
29 ** Qt Foundation. The licenses are as published by the Free Software
30 ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
31 ** included in the packaging of this file. Please review the following
32 ** information to ensure the GNU General Public License requirements will
33 ** be met: https://www.gnu.org/licenses/gpl-2.0.html and
34 ** https://www.gnu.org/licenses/gpl-3.0.html.
35 **
36 ** $QT_END_LICENSE$
37 **
38 ****************************************************************************/
39 
40 #ifndef QGESTUREMANAGER_P_H
41 #define QGESTUREMANAGER_P_H
42 
43 //
44 // W A R N I N G
45 // -------------
46 //
47 // This file is not part of the Qt API. It exists for the convenience
48 // of other Qt classes. This header file may change from version to
49 // version without notice, or even be removed.
50 //
51 // We mean it.
52 //
53 
54 #include <QtWidgets/private/qtwidgetsglobal_p.h>
55 #include "qobject.h"
56 #include "qbasictimer.h"
57 #include "private/qwidget_p.h"
58 #include "qgesturerecognizer.h"
59 
60 #ifndef QT_NO_GESTURES
61 
62 #include <functional>
63 
65 
66 class QBasicTimer;
67 class QGraphicsObject;
68 class QGestureManager : public QObject
69 {
70  Q_OBJECT
71 public:
74 
77 
78  bool filterEvent(QWidget *receiver, QEvent *event);
79  bool filterEvent(QObject *receiver, QEvent *event);
80 #if QT_CONFIG(graphicsview)
81  bool filterEvent(QGraphicsObject *receiver, QEvent *event);
82 #endif // QT_CONFIG(graphicsview)
83 
85 
86  static QGestureManager *instance(InstanceCreation ic = ForceCreation); // declared in qapplication.cpp
87  static bool gesturePending(QObject *o);
88 
90 
91  void recycle(QGesture *gesture);
92 
93 protected:
95  QEvent *event);
96 
97 private:
99 
100  QSet<QGesture *> m_activeGestures;
101  QSet<QGesture *> m_maybeGestures;
102 
103  enum State {
104  Gesture,
105  NotGesture,
106  MaybeGesture // this means timers are up and waiting for some
107  // more events, and input events are handled by
108  // gesture recognizer explicitly
109  } state;
110 
111  struct ObjectGesture
112  {
113  QObject* object;
114  Qt::GestureType gesture;
115 
116  ObjectGesture(QObject *o, const Qt::GestureType &g) : object(o), gesture(g) { }
117  inline bool operator<(const ObjectGesture &rhs) const
118  {
119  if (std::less<QObject *>{}(object, rhs.object))
120  return true;
121  if (object == rhs.object)
122  return gesture < rhs.gesture;
123  return false;
124  }
125  };
126 
127  QMap<ObjectGesture, QList<QGesture *> > m_objectGestures;
128  QHash<QGesture *, QGestureRecognizer *> m_gestureToRecognizer;
129  QHash<QGesture *, QObject *> m_gestureOwners;
130 
131  QHash<QGesture *, QPointer<QWidget> > m_gestureTargets;
132 
133  int m_lastCustomGestureId;
134 
136  QHash<QGesture *, QGestureRecognizer *> m_deletedRecognizers;
137  QSet<QGesture *> m_gesturesToDelete;
138  void cleanupGesturesForRemovedRecognizer(QGesture *gesture);
139 
140  QGesture *getState(QObject *widget, QGestureRecognizer *recognizer,
141  Qt::GestureType gesture);
142  void deliverEvents(const QSet<QGesture *> &gestures,
143  QSet<QGesture *> *undeliveredGestures);
144  void getGestureTargets(const QSet<QGesture*> &gestures,
145  QHash<QWidget *, QList<QGesture *> > *conflicts,
146  QHash<QWidget *, QList<QGesture *> > *normal);
147 
148  void cancelGesturesForChildren(QGesture *originatingGesture);
149 };
150 
152 
153 #endif // QT_NO_GESTURES
154 
155 #endif // QGESTUREMANAGER_P_H
The QBasicTimer class provides timer events for objects.
Definition: qbasictimer.h:52
The QEvent class is the base class of all event classes. Event objects contain event parameters.
Definition: qcoreevent.h:58
The QGesture class represents a gesture, containing properties that describe the corresponding user i...
Definition: qgesture.h:62
void recycle(QGesture *gesture)
Qt::GestureType registerGestureRecognizer(QGestureRecognizer *recognizer)
bool filterEventThroughContexts(const QMultiMap< QObject *, Qt::GestureType > &contexts, QEvent *event)
static bool gesturePending(QObject *o)
bool filterEvent(QWidget *receiver, QEvent *event)
void unregisterGestureRecognizer(Qt::GestureType type)
static QGestureManager * instance(InstanceCreation ic=ForceCreation)
QGestureManager(QObject *parent)
void cleanupCachedGestures(QObject *target, Qt::GestureType type)
The QGestureRecognizer class provides the infrastructure for gesture recognition.\inmodule QtWidgets.
The QGraphicsObject class provides a base class for all graphics items that require signals,...
Definition: qmap.h:222
The QObject class is the base class of all Qt objects.
Definition: qobject.h:125
QObject * parent() const
Definition: qobject.h:409
The QWidget class is the base class of all user interface objects.
Definition: qwidget.h:133
QOpenGLWidget * widget
[1]
QT_BEGIN_NAMESPACE bool operator<(const QMimeType &t1, const QMimeType &t2)
GestureType
Definition: qnamespace.h:1641
GLenum type
Definition: qopengl.h:270
GLuint object
[3]
GLenum target
GLboolean GLboolean g
struct _cl_event * event
Definition: qopenglext.h:2998
#define Q_OBJECT
Definition: qtmetamacros.h:158
#define rhs