1
mirror of https://github.com/monero-project/monero-gui synced 2024-10-24 02:45:37 +02:00
monero-gui/components/StandardButton.qml

61 lines
1.5 KiB
QML
Raw Normal View History

2014-07-07 19:08:30 +02:00
import QtQuick 2.0
Item {
2014-07-19 16:07:40 +02:00
id: button
2014-07-07 19:08:30 +02:00
height: 37
2014-07-09 17:44:13 +02:00
property string shadowPressedColor
property string shadowReleasedColor
2014-07-07 19:08:30 +02:00
property string pressedColor
property string releasedColor
property string icon: ""
2014-07-07 19:08:30 +02:00
property string textColor: "#FFFFFF"
2014-07-19 16:07:40 +02:00
property int fontSize: 12
2014-07-07 19:08:30 +02:00
property alias text: label.text
signal clicked()
Rectangle {
anchors.left: parent.left
anchors.right: parent.right
height: parent.height - 1
2014-07-09 17:44:13 +02:00
y: buttonArea.pressed ? 0 : 1
//radius: 4
2014-07-09 17:44:13 +02:00
color: buttonArea.pressed ? parent.shadowPressedColor : parent.shadowReleasedColor
2014-07-07 19:08:30 +02:00
}
Rectangle {
anchors.left: parent.left
anchors.right: parent.right
height: parent.height - 1
2014-07-09 17:44:13 +02:00
y: buttonArea.pressed ? 1 : 0
2014-07-07 19:08:30 +02:00
color: buttonArea.pressed ? parent.pressedColor : parent.releasedColor
//radius: 4
2014-07-07 19:08:30 +02:00
}
Text {
id: label
anchors.verticalCenter: parent.verticalCenter
anchors.left: parent.left
anchors.right: parent.right
horizontalAlignment: Text.AlignHCenter
elide: Text.ElideRight
2014-07-09 17:44:13 +02:00
font.family: "Arial"
font.bold: true
font.letterSpacing: -1
2014-07-19 16:07:40 +02:00
font.pixelSize: button.fontSize
2014-07-07 19:08:30 +02:00
color: parent.textColor
visible: parent.icon === ""
}
Image {
anchors.centerIn: parent
visible: parent.icon !== ""
source: parent.icon
2014-07-07 19:08:30 +02:00
}
MouseArea {
id: buttonArea
anchors.fill: parent
onClicked: parent.clicked()
}
}