monero-gui/components/MenuButton.qml

166 lines
5.6 KiB
QML
Raw Normal View History

2018-01-07 06:20:45 +01:00
// Copyright (c) 2014-2018, The Monero Project
2015-04-01 10:56:05 +02:00
//
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without modification, are
// permitted provided that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice, this list of
// conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright notice, this list
// of conditions and the following disclaimer in the documentation and/or other
// materials provided with the distribution.
//
// 3. Neither the name of the copyright holder nor the names of its contributors may be
// used to endorse or promote products derived from this software without specific
// prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
// THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
// STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
// THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2019-04-11 03:17:29 +02:00
import QtQuick 2.9
import QtGraphicalEffects 1.0
import "../components" as MoneroComponents
2019-04-11 03:17:29 +02:00
import "effects/" as MoneroEffects
2014-07-07 19:08:30 +02:00
Rectangle {
id: button
property alias text: label.text
property bool checked: false
property alias symbol: symbolText.text
2016-12-18 01:18:18 +01:00
property int numSelectedChildren: 0
property var under: null
2014-07-07 19:08:30 +02:00
signal clicked()
2017-08-08 10:37:52 +02:00
function doClick() {
// Android workaround
releaseFocus();
clicked();
}
2016-12-18 01:18:18 +01:00
function getOffset() {
var offset = 0
var item = button
while (item.under) {
2019-04-25 21:09:23 +02:00
offset += 20
2016-12-18 01:18:18 +01:00
item = item.under
}
return offset
}
2017-11-22 00:14:38 +01:00
color: "transparent"
2016-12-18 01:18:18 +01:00
property bool present: !under || under.checked || checked || under.numSelectedChildren > 0
2019-04-25 21:09:23 +02:00
height: present ? ((appWindow.height >= 800) ? 44 : 38 ) : 0
2016-12-18 01:18:18 +01:00
2019-04-11 03:17:29 +02:00
LinearGradient {
2020-02-01 23:01:10 +01:00
visible: isOpenGL && button.checked
2017-11-21 15:23:31 +01:00
height: parent.height
width: 260
anchors.verticalCenter: parent.verticalCenter
anchors.right: parent.right
2017-11-21 14:51:48 +01:00
anchors.rightMargin: -20
anchors.leftMargin: parent.getOffset()
2019-04-11 03:17:29 +02:00
start: Qt.point(width, 0)
end: Qt.point(0, 0)
gradient: Gradient {
GradientStop { position: 0.0; color: MoneroComponents.Style.menuButtonGradientStart }
GradientStop { position: 1.0; color: MoneroComponents.Style.menuButtonGradientStop }
}
}
// fallback hover effect when opengl is not available
Rectangle {
visible: !isOpenGL && button.checked
anchors.fill: parent
color: MoneroComponents.Style.menuButtonFallbackBackgroundColor
}
// button decorations that are subject to leftMargin offsets
Rectangle {
2014-07-07 19:08:30 +02:00
anchors.left: parent.left
2019-12-15 22:38:19 +01:00
anchors.leftMargin: 20
height: parent.height
2019-12-15 22:38:19 +01:00
width: 2
color: button.checked ? MoneroComponents.Style.buttonBackgroundColor : "transparent"
// button text
2019-04-11 03:17:29 +02:00
MoneroComponents.TextPlain {
id: label
2019-04-11 03:17:29 +02:00
color: MoneroComponents.Style.menuButtonTextColor
themeTransitionBlackColor: MoneroComponents.Style._b_menuButtonTextColor
themeTransitionWhiteColor: MoneroComponents.Style._w_menuButtonTextColor
anchors.verticalCenter: parent.verticalCenter
anchors.left: parent.right
2019-12-15 22:38:19 +01:00
anchors.leftMargin: button.getOffset() + 8
2014-07-07 19:08:30 +02:00
font.bold: true
2019-04-25 21:09:23 +02:00
font.pixelSize: 14
2014-07-07 19:08:30 +02:00
}
}
// menu button right arrow
2019-04-11 03:17:29 +02:00
MoneroEffects.ImageMask {
2014-07-07 19:08:30 +02:00
anchors.verticalCenter: parent.verticalCenter
2019-04-11 03:17:29 +02:00
anchors.leftMargin: parent.getOffset()
2014-07-07 19:08:30 +02:00
anchors.right: parent.right
2019-04-25 21:09:23 +02:00
anchors.rightMargin: 20
2019-04-11 03:17:29 +02:00
height: 14
width: 8
image: MoneroComponents.Style.menuButtonImageRightSource
color: button.checked ? MoneroComponents.Style.menuButtonImageRightColorActive : MoneroComponents.Style.menuButtonImageRightColor
opacity: button.checked ? 0.8 : 0.25
2014-07-07 19:08:30 +02:00
}
2019-04-11 03:17:29 +02:00
MoneroComponents.TextPlain {
id: symbolText
anchors.right: parent.right
2019-04-25 21:09:23 +02:00
anchors.rightMargin: 44
anchors.verticalCenter: parent.verticalCenter
2019-04-25 21:09:23 +02:00
font.pixelSize: 12
font.bold: true
2019-12-15 22:38:19 +01:00
color: MoneroComponents.Style.menuButtonTextColor
visible: appWindow.ctrlPressed
2019-04-11 03:17:29 +02:00
themeTransition: false
2014-07-07 19:08:30 +02:00
}
MouseArea {
id: buttonArea
anchors.fill: parent
hoverEnabled: true
cursorShape: Qt.PointingHandCursor
2014-07-07 19:08:30 +02:00
onClicked: {
if(parent.checked)
return
2017-08-08 10:37:52 +02:00
button.doClick()
2014-07-07 19:08:30 +02:00
parent.checked = true
}
}
transform: Scale {
yScale: button.present ? 1 : 0
Behavior on yScale {
NumberAnimation { duration: 200; easing.type: Easing.OutCubic }
}
}
Behavior on height {
SequentialAnimation {
NumberAnimation { duration: 200; easing.type: Easing.OutCubic }
}
}
Behavior on checked {
// we get the value of checked before the change
ScriptAction { script: if (under) under.numSelectedChildren += checked > 0 ? -1 : 1 }
}
2014-07-07 19:08:30 +02:00
}