telephant/qml/AccountPopup.qml
2019-05-17 16:27:12 +02:00

44 lines
1.1 KiB
QML

import QtQuick 2.4
import QtQuick.Controls 2.1
import QtQuick.Controls.Material 2.1
import QtQuick.Layouts 1.3
Popup {
id: accountPopup
property string accountid
modal: true
// focus: true
width: Math.min(mainWindow.width * 0.8, 600)
height: mainWindow.height * 0.8
anchors.centerIn: mainWindow.overlay
closePolicy: Popup.CloseOnEscape | Popup.CloseOnPressOutsideParent
Rectangle {
anchors.fill: parent
color: "transparent"
AccountSummary {
profile: profileBridge
id: summary
anchors.left: parent.left
anchors.right: parent.right
}
ToolSeparator {
id: separator
anchors.top: summary.bottom
anchors.left: parent.left
anchors.right: parent.right
orientation: Qt.Horizontal
}
MessageList {
anchors.top: separator.bottom
anchors.bottom: parent.bottom
anchors.left: parent.left
anchors.right: parent.right
fadeMedia: false
model: accountBridge.accountMessages
}
}
}