2019-05-09 03:45:25 +10:00
|
|
|
import QtQuick 2.7
|
|
|
|
import "../../Base"
|
|
|
|
import "../utils.js" as ChatJS
|
|
|
|
|
|
|
|
Banner {
|
2019-07-07 07:50:55 +10:00
|
|
|
color: theme.chat.unknownDevices.background
|
2019-05-09 03:45:25 +10:00
|
|
|
|
|
|
|
avatar.visible: false
|
|
|
|
icon.svgName: "unknown_devices_warning"
|
|
|
|
labelText: "Unknown devices are present in this encrypted room."
|
|
|
|
|
|
|
|
buttonModel: [
|
|
|
|
{
|
|
|
|
name: "inspect",
|
|
|
|
text: qsTr("Inspect"),
|
|
|
|
iconName: "unknown_devices_inspect",
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
buttonCallbacks: {
|
|
|
|
"inspect": function(button) {
|
|
|
|
print("show")
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|