2020-08-06 07:25:53 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
|
|
|
import "../imports"
|
|
|
|
|
|
|
|
Button {
|
|
|
|
id: root
|
|
|
|
property alias label: txtBtnLabel.text
|
|
|
|
|
|
|
|
width: txtBtnLabel.width + 2 * 12
|
|
|
|
height: txtBtnLabel.height + 2 * 6
|
|
|
|
|
|
|
|
background: Rectangle {
|
|
|
|
color: Style.current.backgroundTertiary
|
|
|
|
radius: 6
|
|
|
|
anchors.fill: parent
|
|
|
|
border.color: Style.current.borderTertiary
|
|
|
|
border.width: 1
|
|
|
|
}
|
|
|
|
|
|
|
|
StyledText {
|
|
|
|
id: txtBtnLabel
|
|
|
|
color: Style.current.textColorTertiary
|
|
|
|
font.pixelSize: 12
|
|
|
|
height: 16
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
2020-08-26 15:52:26 +00:00
|
|
|
//% "Paste"
|
|
|
|
text: qsTrId("paste")
|
2020-08-06 07:25:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
MouseArea {
|
|
|
|
id: mouse
|
|
|
|
cursorShape: Qt.PointingHandCursor
|
|
|
|
anchors.fill: parent
|
|
|
|
onClicked: {
|
|
|
|
parent.clicked()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|