40 lines
994 B
QML
40 lines
994 B
QML
import QtQuick 2.13
|
|
import QtQuick.Controls 2.13
|
|
import QtQuick.Layouts 1.13
|
|
import "../../../../imports"
|
|
import "../../../../shared"
|
|
import "./components"
|
|
import "./constants.js" as ProfileConstants
|
|
|
|
ScrollView {
|
|
property int profileCurrentIndex: ProfileConstants.PROFILE
|
|
readonly property int btnheight: 42
|
|
readonly property int w: 340
|
|
|
|
id: profileMenu
|
|
|
|
Column {
|
|
anchors.fill: parent
|
|
spacing: 8
|
|
|
|
Repeater {
|
|
model: ProfileConstants.menuButtons
|
|
delegate: MenuButton {
|
|
text: modelData .text
|
|
source: "../../../img/" + modelData .filename
|
|
active: profileMenu.profileCurrentIndex === modelData.id
|
|
Layout.fillWidth: true
|
|
onClicked: function () {
|
|
profileMenu.profileCurrentIndex = modelData.id
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/*##^##
|
|
Designer {
|
|
D{i:0;formeditorColor:"#ffffff";height:500;width:340}
|
|
}
|
|
##^##*/
|