summaryrefslogtreecommitdiffstats
path: root/src/widgets/kernel/qwhatsthis.h
blob: 0ab32d8bd61d627c5013eb31d13a1963ffd942dc (plain)
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
// 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

#ifndef QWHATSTHIS_H
#define QWHATSTHIS_H

#include <QtWidgets/qtwidgetsglobal.h>
#include <QtCore/qobject.h>
#include <QtGui/qcursor.h>

QT_REQUIRE_CONFIG(whatsthis);

QT_BEGIN_NAMESPACE

#if QT_CONFIG(action)
class QAction;
#endif // QT_CONFIG(action)

class Q_WIDGETS_EXPORT QWhatsThis
{
    QWhatsThis() = delete;

public:
    static void enterWhatsThisMode();
    static bool inWhatsThisMode();
    static void leaveWhatsThisMode();

    static void showText(const QPoint &pos, const QString &text, QWidget *w = nullptr);
    static void hideText();

#if QT_CONFIG(action)
    static QAction *createAction(QObject *parent = nullptr);
#endif // QT_CONFIG(action)

};

QT_END_NAMESPACE

#endif // QWHATSTHIS_H