2018-08-10 10:58:53 +00:00
|
|
|
import QtQuick 2.9
|
|
|
|
import QtQuick.Controls 2.2
|
|
|
|
|
|
|
|
Page {
|
|
|
|
property alias lazyLoad: lazyLoadSwitch.checked
|
2018-08-14 06:05:41 +00:00
|
|
|
property alias asyncMessageDelegate: asyncMessageDelegateSwitch.checked
|
2018-08-18 09:56:55 +00:00
|
|
|
property alias richText: richTextSwitch.checked
|
2018-08-10 10:58:53 +00:00
|
|
|
|
|
|
|
Column {
|
|
|
|
Switch {
|
|
|
|
id: lazyLoadSwitch
|
2018-08-14 06:05:41 +00:00
|
|
|
text: "Lazy load at initial sync"
|
2018-08-10 10:58:53 +00:00
|
|
|
}
|
2018-08-14 06:05:41 +00:00
|
|
|
Switch {
|
|
|
|
id: asyncMessageDelegateSwitch
|
|
|
|
text: "Force loading message delegates asynchronously"
|
|
|
|
}
|
2018-08-18 09:56:55 +00:00
|
|
|
Switch {
|
|
|
|
id: richTextSwitch
|
|
|
|
text: "Use RichText instead of StyledText"
|
|
|
|
}
|
2018-08-14 06:05:41 +00:00
|
|
|
|
2018-08-13 14:44:32 +00:00
|
|
|
Button {
|
|
|
|
text: "Invoke GC"
|
|
|
|
highlighted: true
|
|
|
|
onClicked: gc()
|
|
|
|
}
|
2018-08-10 10:58:53 +00:00
|
|
|
}
|
|
|
|
}
|