add mobile menu

pull/2/head
Jaquee 7 years ago
parent 1c7f529141
commit aec65db8c3

@ -28,6 +28,7 @@
import QtQuick 2.2
import QtQuick.Window 2.0
import QtQuick.Layouts 1.1
Rectangle {
id: titleBar
@ -53,6 +54,7 @@ Rectangle {
}
Rectangle {
id: goToBasicVersionButton
property bool containsMouse: titleBar.mouseX >= x && titleBar.mouseX <= x + width
property bool checked: false
@ -64,10 +66,10 @@ Rectangle {
visible: isMobile
Image {
width: parent.width * 2/3;
height: width;
anchors.centerIn: parent
rotation: !leftPanel.visible ? 180 : 0
source: parent.customDecorations || !leftPanel.visible ? "../images/goToBasicVersionHovered.png" :
"../images/gotoBasicVersion.png"
source: "../images/menu.png"
}
MouseArea {
@ -75,6 +77,7 @@ Rectangle {
hoverEnabled: true
anchors.fill: parent
onClicked: {
releaseFocus()
parent.checked = !parent.checked
titleBar.goToBasicVersion(leftPanel.visible)
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

@ -147,5 +147,6 @@
<file>wizard/WizardDaemonSettings.qml</file>
<file>components/RemoteNodeEdit.qml</file>
<file>pages/Keys.qml</file>
<file>images/menu.png</file>
</qresource>
</RCC>