monero-gui/components/MenuButton.qml

184 lines
6.4 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 dotColor: dot.color
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) {
2017-08-07 15:47:56 +02:00
offset += 20 * scaleRatio
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
height: present ? ((appWindow.height >= 800) ? 44 * scaleRatio : 38 * scaleRatio ) : 0
2016-12-18 01:18:18 +01:00
2019-04-11 03:17:29 +02:00
LinearGradient {
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
anchors.leftMargin: parent.getOffset() + 20 * scaleRatio
height: parent.height
width: button.checked ? 20: 10
2019-04-11 03:17:29 +02:00
color: "transparent"
2014-07-07 19:08:30 +02:00
// dot if unchecked
2014-07-07 19:08:30 +02:00
Rectangle {
id: dot
anchors.centerIn: parent
width: button.checked ? 20 * scaleRatio : 8 * scaleRatio
height: button.checked ? 20 * scaleRatio : 8 * scaleRatio
radius: button.checked ? 20 * scaleRatio : 4 * scaleRatio
color: button.dotColor
// arrow if checked
Image {
anchors.centerIn: parent
anchors.left: parent.left
2019-04-11 03:17:29 +02:00
source: MoneroComponents.Style.menuButtonImageDotArrowSource
visible: button.checked
}
}
// 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
anchors.leftMargin: 8 * scaleRatio
2014-07-07 19:08:30 +02:00
font.bold: true
2019-04-11 03:17:29 +02:00
font.pixelSize: 14 * scaleRatio
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
2017-08-07 15:47:56 +02:00
anchors.rightMargin: 20 * scaleRatio
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
anchors.rightMargin: 44 * scaleRatio
anchors.verticalCenter: parent.verticalCenter
font.pixelSize: 12 * scaleRatio
font.bold: true
2019-04-11 03:17:29 +02:00
color: button.checked || buttonArea.containsMouse ? MoneroComponents.Style.menuButtonTextColor : dot.color
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
}