File indexing completed on 2024-05-12 05:32:19

0001 /*
0002     SPDX-FileCopyrightText: 2023 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0005 */
0006 
0007 #pragma once
0008 
0009 #include "kwin_export.h"
0010 
0011 #include <QObject>
0012 
0013 namespace KWin
0014 {
0015 
0016 class CursorShapeManagerV1InterfacePrivate;
0017 class Display;
0018 
0019 class KWIN_EXPORT CursorShapeManagerV1Interface : public QObject
0020 {
0021     Q_OBJECT
0022 
0023 public:
0024     explicit CursorShapeManagerV1Interface(Display *display, QObject *parent = nullptr);
0025     ~CursorShapeManagerV1Interface() override;
0026 
0027 private:
0028     std::unique_ptr<CursorShapeManagerV1InterfacePrivate> d;
0029 };
0030 
0031 } // namespace KWin