36 lines
757 B
QML
36 lines
757 B
QML
|
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"
|
||
|
}
|
||
|
}
|