1d5dd49870
Now the global namespace (not instance) is "Bitcoin". The application instance now is "Pay".
34 lines
591 B
QML
34 lines
591 B
QML
import QtQuick 2.11
|
|
import QtQuick.Controls 2.11
|
|
import QtQuick.Layouts 1.11
|
|
|
|
Item {
|
|
id: root
|
|
width: 30
|
|
height: 30
|
|
|
|
signal clicked;
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
onClicked: root.clicked();
|
|
cursorShape: Qt.PointingHandCursor
|
|
}
|
|
|
|
Rectangle {
|
|
color: "#bbbbbb"
|
|
width: 30
|
|
height: 3
|
|
radius: 3
|
|
rotation: 45
|
|
anchors.centerIn: parent
|
|
}
|
|
Rectangle {
|
|
color: "#bbbbbb"
|
|
width: 30
|
|
height: 3
|
|
radius: 3
|
|
rotation: -45
|
|
anchors.centerIn: parent
|
|
}
|
|
}
|