2019-07-13 19:34:58 +10:00
|
|
|
// Copyright 2019 miruka
|
|
|
|
// This file is part of harmonyqml, licensed under LGPLv3.
|
|
|
|
|
|
|
|
import QtQuick 2.12
|
|
|
|
import QtQuick.Controls 2.12
|
|
|
|
import QtQuick.Layouts 1.12
|
|
|
|
import "../../Base"
|
|
|
|
import "../../utils.js" as Utils
|
|
|
|
|
2019-07-17 02:37:11 +10:00
|
|
|
HPage {
|
2019-07-14 10:15:20 +10:00
|
|
|
id: editAccount
|
|
|
|
|
2019-07-16 08:10:11 +10:00
|
|
|
property int avatarPreferredSize: theme.minimumSupportedWidth
|
2019-07-14 10:15:20 +10:00
|
|
|
|
2019-07-13 19:34:58 +10:00
|
|
|
property string userId: ""
|
|
|
|
readonly property var userInfo: users.find(userId)
|
|
|
|
|
2019-07-17 02:53:52 +10:00
|
|
|
hideHeaderUnderHeight: avatarPreferredSize
|
|
|
|
headerLabel.text: qsTr("Account settings for %1")
|
|
|
|
.arg(Utils.coloredNameHtml(userInfo.displayName, userId))
|
2019-07-13 19:34:58 +10:00
|
|
|
|
2019-07-17 02:37:11 +10:00
|
|
|
HRectangle {
|
|
|
|
color: theme.box.background
|
2019-07-13 19:34:58 +10:00
|
|
|
|
2019-07-17 02:37:11 +10:00
|
|
|
Layout.alignment: Qt.AlignCenter
|
2019-07-16 07:43:53 +10:00
|
|
|
|
2019-07-17 02:37:11 +10:00
|
|
|
Layout.maximumWidth: Math.min(parent.width, 640)
|
|
|
|
Layout.preferredWidth:
|
|
|
|
wide ? parent.width : avatarPreferredSize
|
2019-07-14 10:15:20 +10:00
|
|
|
|
2019-07-17 02:37:11 +10:00
|
|
|
Layout.preferredHeight: childrenRect.height
|
2019-07-14 10:15:20 +10:00
|
|
|
|
2019-07-17 02:37:11 +10:00
|
|
|
Profile { width: parent.width }
|
2019-07-13 19:34:58 +10:00
|
|
|
}
|
2019-07-17 02:37:11 +10:00
|
|
|
|
|
|
|
// HRectangle {
|
|
|
|
// color: theme.box.background
|
|
|
|
// radius: theme.box.radius
|
|
|
|
// ClientSettings { width: parent.width }
|
|
|
|
// }
|
|
|
|
|
|
|
|
// HRectangle {
|
|
|
|
// color: theme.box.background
|
|
|
|
// radius: theme.box.radius
|
|
|
|
// Devices { width: parent.width }
|
|
|
|
// }
|
2019-07-13 19:34:58 +10:00
|
|
|
}
|