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

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

44 lines
1016 B
QML
Raw Normal View History

2013-12-24 15:21:21 +01:00
// -*- coding: iso-8859-1 -*-
/*
SPDX-FileCopyrightText: 2012 Marco Martin <mart@kde.org>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
2013-12-24 15:21:21 +01:00
import QtQuick 2.0
2014-02-04 17:29:28 +01:00
import org.kde.plasma.plasmoid 2.0
2013-12-24 15:21:21 +01:00
import org.kde.plasma.core 2.0 as PlasmaCore
import org.kde.plasma.components 2.0 as PlasmaComponents
import org.kde.plasma.extras 2.0 as PlasmaExtras
Column {
width: 500
height: 500
2014-02-04 17:29:28 +01:00
Layout.minimumWidth: 200
Layout.minimumHeight: 300
2013-12-24 15:21:21 +01:00
PlasmaCore.DataSource {
id: source
dataEngine: "org.kde.examples.sourcesOnRequest"
interval: 1000
connectedSources: "test"
}
PlasmaComponents.Label {
text: source.data.test["Update Count"]
}
PlasmaExtras.ScrollArea {
anchors {
left: parent.left
right: parent.right
}
height: 500
ListView {
model: source.models.test
delegate: PlasmaComponents.Label {
text: model.display
}
}
}
}