1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
// Qt-Security score:significant reason:default
#ifndef QTOOLTIP_P_H
#define QTOOLTIP_P_H
//
// W A R N I N G
// -------------
//
// This file is not part of the Qt API. It exists for the convenience
// of qlayout*.cpp, and qabstractlayout.cpp. This header
// file may change from version to version without notice, or even be removed.
//
// We mean it.
//
#include <QLabel>
#include <QString>
#include <QRect>
#include <QToolTip>
QT_REQUIRE_CONFIG(tooltip);
QT_BEGIN_NAMESPACE
class Q_WIDGETS_EXPORT QTipLabel final : public QLabel
{
Q_OBJECT
public:
explicit QTipLabel(const QString &text, const QPoint &pos, QWidget *w, int msecDisplayTime);
~QTipLabel() override;
void adjustTooltipScreen(const QPoint &pos);
void updateSize(const QPoint &pos);
bool eventFilter(QObject *, QEvent *) override;
void reuseTip(const QString &text, int msecDisplayTime, const QPoint &pos);
void hideTip();
void hideTipImmediately();
void setTipRect(QWidget *w, const QRect &r);
void restartExpireTimer(int msecDisplayTime);
bool tipChanged(const QPoint &pos, const QString &text, QObject *o);
void placeTip(const QPoint &pos, QWidget *w);
static QScreen *getTipScreen(const QPoint &pos, QWidget *w);
protected:
void timerEvent(QTimerEvent *e) override;
void paintEvent(QPaintEvent *e) override;
void mouseMoveEvent(QMouseEvent *e) override;
void resizeEvent(QResizeEvent *e) override;
#if QT_CONFIG(style_stylesheet)
public Q_SLOTS:
void styleSheetParentDestroyed();
private:
QWidget *styleSheetParent;
#endif
private:
friend class QToolTip;
static QTipLabel *instance;
QBasicTimer hideTimer, expireTimer;
QWidget *widget;
QRect rect;
bool fadingOut;
};
QT_END_NAMESPACE
#endif // QTOOLTIP_P_H
|