Warning, /plasma/kwin/src/plugins/desktopchangeosd/package/contents/ui/main.qml is written in an unsupported language. File is not indexed.
0001 /*
0002 KWin - the KDE window manager
0003 This file is part of the KDE project.
0004
0005 SPDX-FileCopyrightText: 2012 Martin Gräßlin <mgraesslin@kde.org>
0006
0007 SPDX-License-Identifier: GPL-2.0-or-later
0008 */
0009 import QtQuick
0010 import org.kde.kwin
0011
0012 Loader {
0013 id: mainItemLoader
0014
0015 Connections {
0016 target: Workspace
0017 function onCurrentDesktopChanged(previous) {
0018 if (!mainItemLoader.item) {
0019 mainItemLoader.source = "osd.qml";
0020 }
0021 mainItemLoader.item.show(previous);
0022 }
0023 }
0024 }