plasma-framework/tests/dialog.qml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
466 B
QML
Raw Normal View History

2014-07-16 17:02:01 +02:00
/*
SPDX-FileCopyrightText: 2014 David Edmundson <davidedmundson@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
2014-07-16 17:02:01 +02:00
import QtQuick 2.0
import QtQuick.Controls 1.1 as Controls
import QtQuick.Layouts 1.1
import org.kde.plasma.core 2.0 as PlasmaCore
PlasmaCore.Dialog {
visible: true
mainItem: Item {
width: 200
height: 200
MouseArea {
anchors.fill: parent
onClicked: Qt.quit()
}
}
}