moment/harmonyqml/DummyRoomModel.qml

36 lines
757 B
QML
Raw Normal View History

2019-03-22 14:28:14 +11:00
import QtQuick 2.7
ListModel {
ListElement {
account: "Runi"
room_name: "Maribel"
description: "This is a test ellide"
}
ListElement {
account: "Runi"
room_name: "Renko"
description: "Away"
}
ListElement {
account: "Runi"
room_name: "Moonlight"
description: "lorem ispum"
}
ListElement {
account: "Runi"
room_name: "test long abc def"
description: "WWWWWW WWWWWW WWWW WWWWWW WWWW"
}
ListElement {
account: "Maribel"
room_name: "Maribel"
description: "This is a test ellide"
}
ListElement {
account: "Maribel"
room_name: "Moonlight"
description: "lorem ispum"
}
}