monero-gui/pages/merchant/MerchantCheckbox.qml

67 lines
1.5 KiB
QML
Raw Normal View History

2019-04-11 01:17:29 +00:00
import QtQuick 2.9
2018-12-08 15:55:29 +00:00
import QtQuick.Layouts 1.1
import QtGraphicalEffects 1.0
2019-04-11 01:17:29 +00:00
import "../../components" as MoneroComponents
2018-12-08 15:55:29 +00:00
2019-07-23 19:24:41 +00:00
Item {
2018-12-08 15:55:29 +00:00
id: root
property bool checked: false;
property alias text: content.text
signal changed;
2019-07-23 19:24:41 +00:00
width: checkBoxLayout.width
height: 22
2018-12-08 15:55:29 +00:00
2019-07-23 19:24:41 +00:00
RowLayout {
id: checkBoxLayout
spacing: 10
2018-12-08 15:55:29 +00:00
2019-07-23 19:24:41 +00:00
Item {
height: root.height
width: root.height
Rectangle {
id: checkbox
anchors.fill: parent
radius: 5
2018-12-08 15:55:29 +00:00
2019-07-23 19:24:41 +00:00
Image {
id: imageChecked
visible: root.checked
anchors.centerIn: parent
source: "qrc:///images/uncheckedIcon.png"
}
}
DropShadow {
anchors.fill: source
cached: true
horizontalOffset: 3
verticalOffset: 3
radius: 8.0
samples: 16
color: "#20000000"
smooth: true
source: checkbox
}
}
MoneroComponents.TextPlain {
id: content
font.pixelSize: 14
font.bold: false
color: "white"
text: ""
themeTransition: false
}
}
2018-12-08 15:55:29 +00:00
MouseArea {
anchors.fill: parent
hoverEnabled: true
cursorShape: Qt.PointingHandCursor
onClicked: {
root.checked = !root.checked;
changed();
}
}
}