2020-06-17 19:18:31 +00:00
|
|
|
import QtQuick 2.13
|
2021-08-27 10:44:39 +00:00
|
|
|
|
|
|
|
import StatusQ.Components 0.1
|
2020-05-19 19:44:45 +00:00
|
|
|
import "../../../imports"
|
2020-05-27 20:57:36 +00:00
|
|
|
import "./LeftTab"
|
2020-05-19 19:44:45 +00:00
|
|
|
|
2021-08-27 10:44:39 +00:00
|
|
|
Item {
|
2020-10-21 14:45:28 +00:00
|
|
|
property alias changeProfileSection: profileMenu.changeProfileSection
|
2020-05-19 19:44:45 +00:00
|
|
|
|
|
|
|
id: profileInfoContainer
|
|
|
|
|
2021-08-27 10:44:39 +00:00
|
|
|
StatusNavigationPanelHeadline {
|
2020-07-21 21:03:22 +00:00
|
|
|
id: title
|
2021-09-09 09:38:52 +00:00
|
|
|
text: qsTr("Settings")
|
2020-07-21 21:03:22 +00:00
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: Style.current.padding
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
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
|
2021-04-13 10:25:04 +00:00
|
|
|
anchors.topMargin: Style.current.padding
|
2020-07-21 21:03:22 +00:00
|
|
|
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}
|
|
|
|
}
|
|
|
|
##^##*/
|