OpenCoverage

qquickhandlerpoint_p.h

Absolute File Name:/home/opencoverage/opencoverage/guest-scripts/qtdeclarative/src/qtdeclarative/src/quick/handlers/qquickhandlerpoint_p.h
Source codeSwitch to Preprocessed file
LineSourceCount
1/****************************************************************************-
2**-
3** Copyright (C) 2018 The Qt Company Ltd.-
4** Contact: https://www.qt.io/licensing/-
5**-
6** This file is part of the QtQuick 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 QQUICKHANDLERPOINT_H-
41#define QQUICKHANDLERPOINT_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 purely as an-
48// implementation detail. 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 "qquickpointerdevicehandler_p.h"-
55-
56QT_BEGIN_NAMESPACE-
57-
58class QQuickMultiPointHandler;-
59class QQuickSinglePointHandler;-
60-
61class Q_QUICK_PRIVATE_EXPORT QQuickHandlerPoint {-
62 Q_GADGET-
63 Q_PROPERTY(int id READ id)-
64 Q_PROPERTY(QPointingDeviceUniqueId uniqueId READ uniqueId)-
65 Q_PROPERTY(QPointF position READ position)-
66 Q_PROPERTY(QPointF scenePosition READ scenePosition)-
67 Q_PROPERTY(QPointF pressPosition READ pressPosition)-
68 Q_PROPERTY(QPointF scenePressPosition READ scenePressPosition)-
69 Q_PROPERTY(QPointF sceneGrabPosition READ sceneGrabPosition)-
70 Q_PROPERTY(Qt::MouseButtons pressedButtons READ pressedButtons)-
71 Q_PROPERTY(Qt::KeyboardModifiers modifiers READ modifiers)-
72 Q_PROPERTY(QVector2D velocity READ velocity)-
73 Q_PROPERTY(qreal rotation READ rotation)-
74 Q_PROPERTY(qreal pressure READ pressure)-
75 Q_PROPERTY(QSizeF ellipseDiameters READ ellipseDiameters)-
76-
77public:-
78 QQuickHandlerPoint();-
79-
80 int id() const { return m_id; }
executed 7160 times by 4 tests: return m_id;
Executed by:
  • tst_flickableinterop
  • tst_multipointtoucharea_interop
  • tst_qquickdraghandler
  • tst_qquicktaphandler
7160
81 Qt::MouseButtons pressedButtons() const { return m_pressedButtons; }
executed 6 times by 1 test: return m_pressedButtons;
Executed by:
  • tst_qquickdraghandler
6
82 Qt::KeyboardModifiers modifiers() const { return m_pressedModifiers; }
never executed: return m_pressedModifiers;
0
83 QPointF pressPosition() const { return m_pressPosition; }
executed 18 times by 1 test: return m_pressPosition;
Executed by:
  • tst_qquickdraghandler
18
84 QPointF scenePressPosition() const { return m_scenePressPosition; }
executed 1970 times by 3 tests: return m_scenePressPosition;
Executed by:
  • tst_flickableinterop
  • tst_qquickdraghandler
  • tst_qquicktaphandler
1970
85 QPointF sceneGrabPosition() const { return m_sceneGrabPosition; }
executed 57 times by 2 tests: return m_sceneGrabPosition;
Executed by:
  • tst_multipointtoucharea_interop
  • tst_qquickdraghandler
57
86 QPointF position() const { return m_position; }
executed 134 times by 1 test: return m_position;
Executed by:
  • tst_qquickdraghandler
134
87 QPointF scenePosition() const { return m_scenePosition; }
executed 105 times by 2 tests: return m_scenePosition;
Executed by:
  • tst_multipointtoucharea_interop
  • tst_qquickdraghandler
105
88 QVector2D velocity() const { return m_velocity; }
never executed: return m_velocity;
0
89 qreal rotation() const { return m_rotation; }
never executed: return m_rotation;
0
90 qreal pressure() const { return m_pressure; }
never executed: return m_pressure;
0
91 QSizeF ellipseDiameters() const { return m_ellipseDiameters; }
never executed: return m_ellipseDiameters;
0
92 QPointingDeviceUniqueId uniqueId() const { return m_uniqueId; }
never executed: return m_uniqueId;
0
93-
94 void reset();-
95 void reset(const QQuickEventPoint *point);-
96 void reset(const QVector<QQuickEventPoint *> &points);-
97-
98private:-
99 int m_id;-
100 QPointingDeviceUniqueId m_uniqueId;-
101 Qt::MouseButtons m_pressedButtons;-
102 Qt::KeyboardModifiers m_pressedModifiers;-
103 QPointF m_position;-
104 QPointF m_scenePosition;-
105 QPointF m_pressPosition;-
106 QPointF m_scenePressPosition;-
107 QPointF m_sceneGrabPosition;-
108 QVector2D m_velocity;-
109 qreal m_rotation;-
110 qreal m_pressure;-
111 QSizeF m_ellipseDiameters;-
112 friend class QQuickMultiPointHandler;-
113 friend class QQuickSinglePointHandler;-
114};-
115-
116QT_END_NAMESPACE-
117-
118QML_DECLARE_TYPE(QQuickHandlerPoint)-
119-
120#endif // QQUICKHANDLERPOINT_H-
Source codeSwitch to Preprocessed file

Generated by Squish Coco 4.2.0