File indexing completed on 2024-04-21 03:59:22

0001 /*
0002     This file is part of the KDE libraries
0003     SPDX-FileCopyrightText: 1999 Matthias Ettrich <ettrich@kde.org>
0004     SPDX-FileCopyrightText: 2007 Lubos Lunak <l.lunak@kde.org>
0005     SPDX-FileCopyrightText: 2014 Martin Gräßlin <mgraesslin@kde.org>
0006 
0007     SPDX-License-Identifier: LGPL-2.1-or-later
0008 */
0009 
0010 #include "kwindowsystem_p_x11.h"
0011 
0012 #include "kx11extras.h"
0013 
0014 void KWindowSystemPrivateX11::activateWindow(QWindow *win, long time)
0015 {
0016     KX11Extras::activateWindow(win->winId(), time);
0017 }
0018 
0019 bool KWindowSystemPrivateX11::showingDesktop()
0020 {
0021     return KX11Extras::showingDesktop();
0022 }
0023 
0024 void KWindowSystemPrivateX11::setShowingDesktop(bool showing)
0025 {
0026     KX11Extras::setShowingDesktop(showing);
0027 }
0028 
0029 #include "moc_kwindowsystem_p_x11.cpp"