Krita Source Code Documentation
Loading...
Searching...
No Matches
KisCursorOverrideLock.cpp
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2023 Dmitry Kazakov <dimula73@gmail.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0-or-later
5 */
6
8#include <QGuiApplication>
9
11 : m_cursor(cursor)
12{
13}
14
16
18{
19 qApp->setOverrideCursor(m_cursor);
20}
21
23{
24 qApp->restoreOverrideCursor();
25}
KisCursorOverrideLockAdapter(const QCursor &cursor)