telephant/qml/dummydata/tweetModel.qml

90 lines
2.8 KiB
QML
Raw Normal View History

2017-08-29 05:02:56 +00:00
import QtQuick 2.4
ListModel {
ListElement {
name: "Christian Muehlhaeuser"
messageid: "901223685058703361"
author: "mueslix"
avatar: "https://pbs.twimg.com/profile_images/779041781413507072/TaqJsdzS_normal.jpg"
2019-05-02 08:37:04 +00:00
body: "This is a very, very long test post, that should probably get word-wrapped. But does it work?"
2017-08-29 05:02:56 +00:00
createdat: "now"
actor: ""
actorname: ""
reply: false
replytoid: ""
replytoauthor: ""
forward: false
mention: false
like: false
media: ""
2017-08-29 05:02:56 +00:00
}
ListElement {
2017-08-29 07:55:28 +00:00
name: "Some Guy With A Really Really Long Name"
2017-08-29 05:02:56 +00:00
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
media: ""
2017-08-29 05:02:56 +00:00
}
ListElement {
name: "Dummy User"
messageid: "901223685058703361"
author: "dummy"
avatar: "https://pbs.twimg.com/profile_images/707382834827120640/R-Eb9YZB_normal.jpg"
2019-05-02 08:37:04 +00:00
body: "This is a very short test post with a link: <a href=\"http://chris.de\">http://chris.de</a>"
2017-08-29 05:02:56 +00:00
createdat: "now"
actor: "mueslix"
actorname: "Christian Muehlhaeuser"
reply: false
replytoid: ""
replytoauthor: ""
forward: true
mention: false
like: false
media: "https://pbs.twimg.com/media/DIfdvcxXkAUXAvs.jpg"
2017-08-29 05:02:56 +00:00
}
ListElement {
name: "Another User"
messageid: "901223685058703361"
author: "anotheruser"
avatar: "https://pbs.twimg.com/profile_images/658723533845954560/noXJEv_a_normal.jpg"
2019-05-02 08:37:04 +00:00
body: "Yet another test post. Lorem Ipsum Yada Yada @mueslix"
2017-08-29 05:02:56 +00:00
createdat: "now"
actor: "mueslix"
actorname: "Christian Muehlhaeuser"
reply: false
replytoid: ""
replytoauthor: ""
forward: false
mention: true
like: false
media: ""
2017-08-29 05:02:56 +00:00
}
ListElement {
2019-05-02 08:37:04 +00:00
name: "This Poster"
2017-08-29 05:02:56 +00:00
messageid: "901223685058703361"
2019-05-02 08:37:04 +00:00
author: "posty"
2017-08-29 05:02:56 +00:00
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
media: ""
2017-08-29 05:02:56 +00:00
}
}