Warning, /plasma/libplasma/tests/dialog.qml is written in an unsupported language. File is not indexed.

0001 /*
0002     SPDX-FileCopyrightText: 2014 David Edmundson <davidedmundson@kde.org>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 import QtQuick
0008 
0009 import QtQuick.Layouts
0010 
0011 import org.kde.plasma.core as PlasmaCore
0012 
0013 PlasmaCore.Dialog {
0014     visible: true
0015 
0016     mainItem: Item {
0017         width: 200
0018         height: 200
0019 
0020         MouseArea {
0021             anchors.fill: parent
0022             onClicked: Qt.quit()
0023         }
0024     }
0025 }