plasma-framework/examples/applets/helloworld/contents/ui/main.qml

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

24 lines
524 B
QML
Raw Normal View History

// -*- coding: iso-8859-1 -*-
/*
SPDX-FileCopyrightText: 2012 Marco Martin <mart@kde.org>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
import QtQuick 2.0
2014-02-04 17:29:28 +01:00
import org.kde.plasma.plasmoid 2.0
2014-04-02 17:07:24 +02:00
import QtQuick.Layouts 1.0
import org.kde.plasma.core 2.0 as PlasmaCore
import org.kde.plasma.components 2.0 as PlasmaComponents
Item {
2014-02-04 17:29:28 +01:00
Layout.minimumWidth: 200
Layout.minimumHeight: 300
PlasmaComponents.Label {
text: i18n("Hello world")
}
Plasmoid.associatedApplicationUrls: "file:///home"
}