2020-06-17 15:18:31 -04:00
|
|
|
import QtQuick 2.13
|
2021-08-27 12:44:39 +02:00
|
|
|
|
|
|
|
import StatusQ.Components 0.1
|
2020-05-19 14:44:45 -05:00
|
|
|
import "../../../imports"
|
2020-05-27 16:57:36 -04:00
|
|
|
import "./LeftTab"
|
2020-05-19 14:44:45 -05:00
|
|
|
|
2021-08-27 12:44:39 +02:00
|
|
|
Item {
|
2020-10-21 10:45:28 -04:00
|
|
|
property alias changeProfileSection: profileMenu.changeProfileSection
|
2020-05-19 14:44:45 -05:00
|
|
|
|
|
|
|
id: profileInfoContainer
|
|
|
|
|
2021-08-27 12:44:39 +02:00
|
|
|
StatusNavigationPanelHeadline {
|
2020-07-21 17:03:22 -04:00
|
|
|
id: title
|
2021-09-09 11:38:52 +02:00
|
|
|
text: qsTr("Settings")
|
2020-07-21 17:03:22 -04:00
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: Style.current.padding
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
2020-05-19 14:44:45 -05:00
|
|
|
}
|
|
|
|
|
2020-07-21 17:03:22 -04: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 12:25:04 +02:00
|
|
|
anchors.topMargin: Style.current.padding
|
2020-07-21 17:03:22 -04:00
|
|
|
anchors.bottom: parent.bottom
|
2020-05-27 17:28:25 -04:00
|
|
|
}
|
2020-05-19 14:44:45 -05:00
|
|
|
}
|
2020-07-21 17:03:22 -04:00
|
|
|
|
|
|
|
/*##^##
|
|
|
|
Designer {
|
|
|
|
D{i:0;autoSize:true;formeditorColor:"#ffffff";height:600;width:340}
|
|
|
|
}
|
|
|
|
##^##*/
|