| 1 | /* |
| 2 | SPDX-FileCopyrightText: 2014 Martin Gräßlin <mgraesslin@kde.org> |
| 3 | |
| 4 | SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL |
| 5 | */ |
| 6 | |
| 7 | #ifndef KWINDOWSYSTEM_P_X11_H |
| 8 | #define KWINDOWSYSTEM_P_X11_H |
| 9 | |
| 10 | #include "kwindowsystem_p.h" |
| 11 | |
| 12 | class KWindowSystemPrivateX11 : public KWindowSystemPrivate |
| 13 | { |
| 14 | public: |
| 15 | void activateWindow(QWindow *win, long time) override; |
| 16 | bool showingDesktop() override; |
| 17 | void setShowingDesktop(bool showing) override; |
| 18 | }; |
| 19 | |
| 20 | #endif |
| 21 | |