mirror of
https://github.com/overte-org/overte.git
synced 2025-04-29 21:42:42 +02:00
106 lines
2.8 KiB
QML
106 lines
2.8 KiB
QML
import QtQuick 2.5
|
|
import QtGraphicalEffects 1.0
|
|
import QtQuick.Controls 1.4
|
|
import QtQml 2.2
|
|
import "."
|
|
import "../../styles-uit"
|
|
|
|
FocusScope {
|
|
id: tabletMenu
|
|
objectName: "tabletMenu"
|
|
|
|
width: 480
|
|
height: 720
|
|
|
|
property var rootMenu: Menu { objectName:"rootMenu" }
|
|
property var point: Qt.point(50, 50)
|
|
|
|
TabletMouseHandler { id: menuPopperUpper }
|
|
|
|
Rectangle {
|
|
id: bgNavBar
|
|
height: 90
|
|
z: 1
|
|
gradient: Gradient {
|
|
GradientStop {
|
|
position: 0
|
|
color: "#2b2b2b"
|
|
}
|
|
|
|
GradientStop {
|
|
position: 1
|
|
color: "#1e1e1e"
|
|
}
|
|
}
|
|
anchors.right: parent.right
|
|
anchors.rightMargin: 0
|
|
anchors.left: parent.left
|
|
anchors.leftMargin: 0
|
|
anchors.topMargin: 0
|
|
anchors.top: parent.top
|
|
|
|
Image {
|
|
id: menuRootIcon
|
|
width: 40
|
|
height: 40
|
|
source: "../../../icons/tablet-icons/menu-i.svg"
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
anchors.left: parent.left
|
|
anchors.leftMargin: 15
|
|
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
onEntered: iconColorOverlay.color = "#1fc6a6";
|
|
onExited: iconColorOverlay.color = "#ffffff";
|
|
// navigate back to root level menu
|
|
onClicked: {
|
|
buildMenu();
|
|
tabletRoot.playButtonClickSound();
|
|
}
|
|
}
|
|
}
|
|
|
|
ColorOverlay {
|
|
id: iconColorOverlay
|
|
anchors.fill: menuRootIcon
|
|
source: menuRootIcon
|
|
color: "#34a2c7"
|
|
}
|
|
|
|
RalewayBold {
|
|
id: breadcrumbText
|
|
text: "Menu"
|
|
size: 26
|
|
color: "#34a2c7"
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
anchors.left: menuRootIcon.right
|
|
anchors.leftMargin: 15
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
onEntered: breadcrumbText.color = "#1fc6a6";
|
|
onExited: breadcrumbText.color = "#34a2c7";
|
|
// navigate back to parent level menu if there is one
|
|
onClicked: {
|
|
if (breadcrumbText.text !== "Menu") {
|
|
menuPopperUpper.closeLastMenu();
|
|
}
|
|
tabletRoot.playButtonClickSound();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
function pop() {
|
|
menuPopperUpper.closeLastMenu();
|
|
}
|
|
|
|
function setRootMenu(menu) {
|
|
tabletMenu.rootMenu = menu
|
|
buildMenu()
|
|
}
|
|
function buildMenu() {
|
|
menuPopperUpper.popup(tabletMenu, rootMenu.items)
|
|
}
|
|
}
|