Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Page {
- tools: commonTools
- XmlListModel {
- id: tvmodel;
- // http://tvpc.cz/xmltv.xml
- source: "http://pcmlich.fit.vutbr.cz/tmp/xmltv.xml"
- query: "/tv/channel"
- XmlRole { name: "name"; query: "display-name/string()" }
- XmlRole { name: "ch_id"; query: "@id/string()" }
- }
- ListView {
- anchors.fill: parent;
- model: tvmodel;
- delegate: Rectangle {
- width: parent.width
- height: 88;
- Label {
- anchors.fill: parent;
- text: model.name;
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement