telephant/qml/dummydata/tweetModel.qml
2017-08-29 09:55:28 +02:00

84 lines
2.6 KiB
QML

import QtQuick 2.4
ListModel {
ListElement {
name: "Christian Muehlhaeuser"
messageid: "901223685058703361"
author: "mueslix"
avatar: "https://pbs.twimg.com/profile_images/779041781413507072/TaqJsdzS_normal.jpg"
body: "This is a very long test tweet, that should probably be word-wrapped."
createdat: "now"
actor: ""
actorname: ""
reply: false
replytoid: ""
replytoauthor: ""
forward: false
mention: false
like: false
}
ListElement {
name: "Some Guy With A Really Really Long Name"
messageid: "901223685058703361"
author: "someguy"
avatar: "https://pbs.twimg.com/profile_images/707382834827120640/R-Eb9YZB_normal.jpg"
body: "This is a response"
createdat: "now"
actor: ""
actorname: ""
reply: true
replytoid: "901223685058703361"
replytoauthor: "mueslix"
forward: false
mention: false
like: false
}
ListElement {
name: "Dummy User"
messageid: "901223685058703361"
author: "dummy"
avatar: "https://pbs.twimg.com/profile_images/707382834827120640/R-Eb9YZB_normal.jpg"
body: "This is a very short test tweet with a link: <a href=\"http://chris.de\">http://chris.de</a>"
createdat: "now"
actor: "mueslix"
actorname: "Christian Muehlhaeuser"
reply: false
replytoid: ""
replytoauthor: ""
forward: true
mention: false
like: false
}
ListElement {
name: "Another User"
messageid: "901223685058703361"
author: "anotheruser"
avatar: "https://pbs.twimg.com/profile_images/658723533845954560/noXJEv_a_normal.jpg"
body: "Yet another test tweet. Lorem Ipsum Yada Yada @mueslix"
createdat: "now"
actor: "mueslix"
actorname: "Christian Muehlhaeuser"
reply: false
replytoid: ""
replytoauthor: ""
forward: false
mention: true
like: false
}
ListElement {
name: "This Tweeter"
messageid: "901223685058703361"
author: "tweety"
avatar: "https://pbs.twimg.com/profile_images/293948630/twitter_icon_normal.JPG"
body: "I can't come up with any more mocking data now, really. This is enough."
createdat: "now"
actor: "mueslix"
actorname: "Christian Muehlhaeuser"
reply: false
replytoid: ""
replytoauthor: ""
forward: false
mention: false
like: true
}
}