summaryrefslogtreecommitdiffstats
path: root/examples/declarative/xml/xmldata/daringfireball.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/declarative/xml/xmldata/daringfireball.qml')
-rw-r--r--examples/declarative/xml/xmldata/daringfireball.qml47
1 files changed, 47 insertions, 0 deletions
diff --git a/examples/declarative/xml/xmldata/daringfireball.qml b/examples/declarative/xml/xmldata/daringfireball.qml
new file mode 100644
index 0000000..480b13c
--- /dev/null
+++ b/examples/declarative/xml/xmldata/daringfireball.qml
@@ -0,0 +1,47 @@
+import Qt 4.7
+
+Rectangle {
+ width: 600; height: 600
+
+ XmlListModel {
+ id: feedModel
+ source: "http://daringfireball.net/index.xml"
+ query: "/feed/entry"
+ namespaceDeclarations: "declare default element namespace 'http://www.w3.org/2005/Atom';"
+ XmlRole { name: "title"; query: "title/string()" }
+ XmlRole { name: "tagline"; query: "author/name/string()" }
+ XmlRole { name: "content"; query: "content/string()" }
+ }
+
+ Component {
+ id: feedDelegate
+ Item {
+ height: childrenRect.height + 20
+ Text {
+ id: titleText
+ x: 10
+ text: title; font.bold: true
+ }
+ Text {
+ anchors { left: titleText.right; leftMargin: 10 }
+ text: 'by ' + tagline
+ font.italic: true
+ }
+ Text {
+ x: 10
+ width: 580
+ anchors.top: titleText.bottom
+ text: content
+ wrapMode: Text.WordWrap
+
+ onLinkActivated: { console.log('link clicked: ' + link) }
+ }
+ }
+ }
+
+ ListView {
+ anchors.fill: parent
+ model: feedModel
+ delegate: feedDelegate
+ }
+}