55 lines
1.3 KiB
QML
55 lines
1.3 KiB
QML
|
import QtQuick 2.7
|
||
|
|
||
|
ListModel {
|
||
|
ListElement {
|
||
|
user_id: "@runi:matrix.org"
|
||
|
name: "Runi"
|
||
|
content: "Lorem ipsum"
|
||
|
date: "2019-03-10"
|
||
|
time: "19:41:10"
|
||
|
}
|
||
|
ListElement {
|
||
|
user_id: "@runi:matrix.org"
|
||
|
name: "Runi"
|
||
|
content: "Combine test?"
|
||
|
date: "2019-03-10"
|
||
|
time: "19:41:12"
|
||
|
}
|
||
|
ListElement {
|
||
|
user_id: "@mary:matrix.org"
|
||
|
name: "Mary"
|
||
|
content: "sit dolor amet"
|
||
|
date: "2019-03-10"
|
||
|
time: "19:42:10"
|
||
|
}
|
||
|
ListElement {
|
||
|
user_id: "@runi:matrix.org"
|
||
|
name: "Runi but a very long name test lorem ipsum foo bar flour orange water test"
|
||
|
content: "blah blah"
|
||
|
date: "2019-03-10"
|
||
|
time: "19:43:57"
|
||
|
}
|
||
|
ListElement {
|
||
|
user_id: "@runi:matrix.org"
|
||
|
name: "Runi"
|
||
|
content: "Long message text <b>wxall of text</b> jsqdjlfjlsdjf 1234 zaekfpozekf lorem ipsum foo bar 123 zfjhozj aazaazazaz fdefzef"
|
||
|
date: "2019-03-10"
|
||
|
time: "19:44:10"
|
||
|
}
|
||
|
ListElement {
|
||
|
user_id: "@renko:matrix.org"
|
||
|
name: "Renko"
|
||
|
content: "Baaaar."
|
||
|
date: "2019-03-10"
|
||
|
time: "19:44:22"
|
||
|
}
|
||
|
|
||
|
ListElement {
|
||
|
user_id: "@runi:matrix.org"
|
||
|
name: "Runi"
|
||
|
content: "Test new day"
|
||
|
date: "2019-03-11"
|
||
|
time: "10:10:47"
|
||
|
}
|
||
|
}
|