OpenCoverage

qquickhoverhandler.cpp

Absolute File Name:/home/opencoverage/opencoverage/guest-scripts/qtdeclarative/src/qtdeclarative/src/quick/handlers/qquickhoverhandler.cpp
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#include "qquickhoverhandler_p.h"-
41-
42QT_BEGIN_NAMESPACE-
43-
44Q_LOGGING_CATEGORY(lcHoverHandler, "qt.quick.handler.hover")
never executed: return category;
0
45-
46/*!-
47 \qmltype HoverHandler-
48 \instantiates QQuickHoverHandler-
49 \inqmlmodule QtQuick-
50 \ingroup qtquick-handlers-
51 \brief Handler for mouse and tablet hover-
52-
53 HoverHandler detects a hovering cursor. Since touchscreens don't generally-
54 offer hover events, in practice it detects a hovering mouse or tablet stylus.-
55-
56 \sa MouseArea-
57*/-
58-
59QQuickHoverHandler::QQuickHoverHandler(QObject *parent)-
60 : QQuickSinglePointHandler(parent)-
61 , m_hovered(false)-
62{-
63 // Rule out the touchscreen for now (can be overridden in QML in case a hover-detecting touchscreen exists)-
64 setAcceptedDevices(static_cast<QQuickPointerDevice::DeviceType>(-
65 static_cast<int>(QQuickPointerDevice::AllDevices) ^ static_cast<int>(QQuickPointerDevice::TouchScreen)));-
66}
never executed: end of block
0
67-
68QQuickHoverHandler::~QQuickHoverHandler()-
69{-
70 QQuickItemPrivate *parItemPrivate = QQuickItemPrivate::get(parentItem());-
71 parItemPrivate->setHasHoverInChild(false);-
72}
never executed: end of block
0
73-
74void QQuickHoverHandler::componentComplete()-
75{-
76 parentItem()->setAcceptHoverEvents(true);-
77 QQuickItemPrivate::get(parentItem())->setHasHoverInChild(true);-
78}
never executed: end of block
0
79-
80bool QQuickHoverHandler::wantsPointerEvent(QQuickPointerEvent *event)-
81{-
82 QQuickEventPoint *point = event->point(0);-
83 if (QQuickPointerDeviceHandler::wantsPointerEvent(event) && wantsEventPoint(point)) {
QQuickPointerD...erEvent(event)Description
TRUEnever evaluated
FALSEnever evaluated
wantsEventPoint(point)Description
TRUEnever evaluated
FALSEnever evaluated
0
84 // assume this is a mouse event, so there's only one point-
85 setPointId(point->pointId());-
86 return true;
never executed: return true;
0
87 }-
88 setHovered(false);-
89 return false;
never executed: return false;
0
90}-
91-
92void QQuickHoverHandler::handleEventPoint(QQuickEventPoint *point)-
93{-
94 setHovered(true);-
95 setPassiveGrab(point);-
96}
never executed: end of block
0
97-
98void QQuickHoverHandler::setHovered(bool hovered)-
99{-
100 if (m_hovered != hovered) {
m_hovered != hoveredDescription
TRUEnever evaluated
FALSEnever evaluated
0
101 qCDebug(lcHoverHandler) << objectName() << "hovered" << m_hovered << "->" << hovered;
never executed: QMessageLogger(__FILE__, 101, __PRETTY_FUNCTION__, lcHoverHandler().categoryName()).debug() << objectName() << "hovered" << m_hovered << "->" << hovered;
qt_category_enabledDescription
TRUEnever evaluated
FALSEnever evaluated
0
102 m_hovered = hovered;-
103 emit hoveredChanged();-
104 }
never executed: end of block
0
105}
never executed: end of block
0
106-
107QT_END_NAMESPACE-
Source codeSwitch to Preprocessed file

Generated by Squish Coco 4.2.0