2020-06-17 19:18:31 +00:00
|
|
|
import QtQuick 2.13
|
2020-05-19 19:44:45 +00:00
|
|
|
import "../../../imports"
|
|
|
|
import "../../../shared"
|
2020-05-27 20:57:36 +00:00
|
|
|
import "./LeftTab"
|
2020-05-19 19:44:45 +00:00
|
|
|
|
2020-07-21 21:03:22 +00:00
|
|
|
Item {
|
2020-05-27 20:57:36 +00:00
|
|
|
property alias currentTab: profileMenu.profileCurrentIndex
|
2020-05-19 19:44:45 +00:00
|
|
|
|
|
|
|
id: profileInfoContainer
|
|
|
|
|
2020-07-21 21:03:22 +00:00
|
|
|
StyledText {
|
|
|
|
id: title
|
2020-08-26 15:52:26 +00:00
|
|
|
//% "Profile"
|
|
|
|
text: qsTrId("profile")
|
2020-07-21 21:03:22 +00:00
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: Style.current.padding
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
font.weight: Font.Bold
|
|
|
|
font.pixelSize: 17
|
2020-05-19 19:44:45 +00:00
|
|
|
}
|
|
|
|
|
2020-07-21 21:03:22 +00:00
|
|
|
Menu {
|
|
|
|
id: profileMenu
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: Style.current.smallPadding
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.leftMargin: Style.current.smallPadding
|
|
|
|
anchors.top: title.bottom
|
|
|
|
anchors.topMargin: Style.current.bigPadding
|
|
|
|
anchors.bottom: parent.bottom
|
2020-05-27 21:28:25 +00:00
|
|
|
}
|
2020-05-19 19:44:45 +00:00
|
|
|
}
|
2020-07-21 21:03:22 +00:00
|
|
|
|
|
|
|
/*##^##
|
|
|
|
Designer {
|
|
|
|
D{i:0;autoSize:true;formeditorColor:"#ffffff";height:600;width:340}
|
|
|
|
}
|
|
|
|
##^##*/
|