status-desktop/ui/app/AppLayouts/Profile/LeftTab/Menu.qml

92 lines
2.7 KiB
QML
Raw Normal View History

2020-06-17 19:18:31 +00:00
import QtQuick 2.13
import QtQuick.Controls 2.13
import QtQuick.Layouts 1.13
2020-05-27 20:57:36 +00:00
import "../../../../imports"
import "../../../../shared"
import "./components"
import "./constants.js" as ProfileConstants
2020-05-27 20:57:36 +00:00
ScrollView {
property int profileCurrentIndex: ProfileConstants.PROFILE
2020-05-27 20:57:36 +00:00
readonly property int btnheight: 42
2020-06-25 16:58:21 +00:00
readonly property int w: 340
property var changeProfileSection: function (sectionId) {
profileCurrentIndex = sectionId
}
contentHeight: menuItems.height + 24
2020-05-27 20:57:36 +00:00
id: profileMenu
2021-03-25 18:12:33 +00:00
clip: true
Column {
id: menuItems
spacing: 8
Repeater {
model: ProfileConstants.mainMenuButtons
delegate: MenuButton {
menuItemId: modelData.id
text: modelData .text
source: "../../../img/profile/" + modelData.filename
active: profileMenu.profileCurrentIndex === modelData.id
Layout.fillWidth: true
width: profileMenu.width
onClicked: function () {
profileMenu.profileCurrentIndex = modelData.id
}
}
}
StyledText {
topPadding: 10
leftPadding: 20
text: "Settings"
color: Style.current.secondaryText
}
Repeater {
model: ProfileConstants.settingsMenuButtons
delegate: MenuButton {
menuItemId: modelData.id
text: modelData .text
source: "../../../img/profile/" + modelData.filename
active: profileMenu.profileCurrentIndex === modelData.id
2021-03-31 19:33:55 +00:00
visible: modelData.ifEnabled !== "browser" || appSettings.browserEnabled
Layout.fillWidth: true
width: profileMenu.width
onClicked: function () {
profileMenu.profileCurrentIndex = modelData.id
}
}
}
StyledText {
text: " "
}
Repeater {
model: ProfileConstants.extraMenuButtons
delegate: MenuButton {
2020-10-26 20:20:31 +00:00
menuItemId: modelData.id
2021-03-16 14:54:34 +00:00
text: modelData.text
2020-08-28 19:09:00 +00:00
source: "../../../img/profile/" + modelData.filename
active: profileMenu.profileCurrentIndex === modelData.id
Layout.fillWidth: true
width: profileMenu.width
onClicked: function () {
2021-03-16 14:54:34 +00:00
if (modelData.function === "exit") {
return Qt.quit()
}
profileMenu.profileCurrentIndex = modelData.id
2020-06-17 20:33:44 +00:00
}
2020-05-27 20:57:36 +00:00
}
}
}
2020-05-27 21:28:25 +00:00
}
/*##^##
Designer {
D{i:0;formeditorColor:"#ffffff";height:500;width:340}
}
##^##*/