Display missed notifications and fit text size from content. Add account from profile menu and display Login Page with back button. Default account selection and change avatar from accounts list. Remove deprecated function on Friends DB. Return username by default on display name computation. Update SDK.
91 lines
2.4 KiB
QML
91 lines
2.4 KiB
QML
import QtCore
|
|
import QtQuick
|
|
import QtQuick.Layouts
|
|
import QtQuick.Controls as Control
|
|
import QtQuick.Dialogs
|
|
|
|
import Linphone
|
|
import UtilsCpp
|
|
|
|
Item {
|
|
id: mainItem
|
|
width: 517 * DefaultStyle.dp
|
|
readonly property int topPadding: 23 * DefaultStyle.dp
|
|
readonly property int bottomPadding: 18 * DefaultStyle.dp
|
|
readonly property int leftPadding: 32 * DefaultStyle.dp
|
|
readonly property int rightPadding: 32 * DefaultStyle.dp
|
|
readonly property int spacing: 16 * DefaultStyle.dp
|
|
|
|
signal addAccountRequest()
|
|
|
|
implicitHeight: list.contentHeight + topPadding + bottomPadding + 32 * DefaultStyle.dp + 1 + newAccountArea.height
|
|
ColumnLayout{
|
|
anchors.top: parent.top
|
|
anchors.topMargin: mainItem.topPadding
|
|
anchors.left: parent.left
|
|
anchors.leftMargin: mainItem.leftPadding
|
|
anchors.right: parent.right
|
|
anchors.rightMargin: mainItem.rightPadding
|
|
ListView{
|
|
id: list
|
|
Layout.preferredHeight: contentHeight
|
|
Layout.fillWidth: true
|
|
spacing: mainItem.spacing
|
|
model: AccountProxy{}
|
|
delegate: Contact{
|
|
id: contactItem
|
|
width: list.width
|
|
account: modelData
|
|
onAvatarClicked: fileDialog.open()
|
|
onBackgroundClicked: modelData.core.lSetDefaultAccount()
|
|
FileDialog {
|
|
id: fileDialog
|
|
currentFolder: StandardPaths.standardLocations(StandardPaths.PicturesLocation)[0]
|
|
onAccepted: {
|
|
var avatarPath = UtilsCpp.createAvatar( selectedFile )
|
|
if(avatarPath){
|
|
modelData.core.pictureUri = avatarPath
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
Rectangle{
|
|
id: separator
|
|
Layout.fillWidth: true
|
|
Layout.topMargin: mainItem.spacing
|
|
Layout.bottomMargin: mainItem.spacing
|
|
height: 1
|
|
color: DefaultStyle.main2_300
|
|
}
|
|
MouseArea{
|
|
Layout.fillWidth: true
|
|
Layout.preferredHeight: 32 * DefaultStyle.dp
|
|
onClicked: mainItem.addAccountRequest()
|
|
RowLayout{
|
|
id: newAccountArea
|
|
anchors.fill: parent
|
|
spacing: 5 * DefaultStyle.dp
|
|
EffectImage {
|
|
id: newAccount
|
|
image.source: AppIcons.plusCircle
|
|
Layout.fillHeight: true
|
|
Layout.preferredWidth: height
|
|
Layout.alignment: Qt.AlignHCenter
|
|
image.fillMode: Image.PreserveAspectFit
|
|
colorizationColor: DefaultStyle.main2_500main
|
|
}
|
|
Text{
|
|
Layout.fillHeight: true
|
|
Layout.fillWidth: true
|
|
verticalAlignment: Text.AlignVCenter
|
|
font.weight: 400 * DefaultStyle.dp
|
|
font.pixelSize: 14 * DefaultStyle.dp
|
|
color: DefaultStyle.main2_500main
|
|
text: 'Ajouter un compte'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|