aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/PySide6/qtguihelper.h
blob: 3b4b659fa7b7c6cb83fde01002f7c4f724ffbf59 (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
// Copyright (C) 2022 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 QTGUIHELPER_H
#define QTGUIHELPER_H

#include <QtGui/QGuiApplication>

namespace QtGuiHelper {

    class QOverrideCursorGuard
    {
    public:
        Q_DISABLE_COPY_MOVE(QOverrideCursorGuard)

        QOverrideCursorGuard() = default;
        ~QOverrideCursorGuard() { restoreOverrideCursor(); }

        void restoreOverrideCursor()
        {
            if (m_guard) {
                QGuiApplication::restoreOverrideCursor();
                m_guard = false;
            }
        }

    private:
        bool m_guard = true;
    };

} // namespace QtGuiHelper

#endif // QTGUIHELPER_H