checkbox: remove a gap between rectangle and text, fix layout

This commit is contained in:
xiphon 2018-12-05 09:52:18 +00:00
parent 71a1ff6677
commit f72b4073ac

View file

@ -31,7 +31,7 @@ import QtQuick.Layouts 1.1
import "../components" as MoneroComponents import "../components" as MoneroComponents
RowLayout { Item {
id: checkBox id: checkBox
property alias text: label.text property alias text: label.text
property string checkedIcon: "../images/checkedIcon-black.png" property string checkedIcon: "../images/checkedIcon-black.png"
@ -42,6 +42,7 @@ RowLayout {
property alias fontColor: label.color property alias fontColor: label.color
signal clicked() signal clicked()
height: 25 * scaleRatio height: 25 * scaleRatio
width: checkBoxLayout.width
function toggle(){ function toggle(){
checkBox.checked = !checkBox.checked checkBox.checked = !checkBox.checked
@ -49,13 +50,17 @@ RowLayout {
} }
RowLayout { RowLayout {
Layout.fillWidth: true id: checkBoxLayout
Item {
id: checkMark
height: checkBox.height
width: checkBox.height
Rectangle { Rectangle {
anchors.left: parent.left id: backgroundRect
width: 25 * scaleRatio anchors.fill: parent
height: checkBox.height - 1
radius: 3 radius: 3
y: 0
color: "transparent" color: "transparent"
border.color: border.color:
if(checkBox.checked){ if(checkBox.checked){
@ -65,27 +70,11 @@ RowLayout {
} }
} }
Rectangle {
id: backgroundRect
anchors.left: parent.left
width: 25 * scaleRatio
height: checkBox.height - 1
y: 1
color: "transparent"
Image { Image {
anchors.centerIn: parent anchors.centerIn: parent
source: checkBox.checkedIcon source: checkBox.checkedIcon
visible: checkBox.checked visible: checkBox.checked
} }
MouseArea {
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
onClicked: {
toggle()
}
}
} }
Text { Text {
@ -94,9 +83,10 @@ RowLayout {
font.pixelSize: checkBox.fontSize font.pixelSize: checkBox.fontSize
color: MoneroComponents.Style.defaultFontColor color: MoneroComponents.Style.defaultFontColor
wrapMode: Text.Wrap wrapMode: Text.Wrap
Layout.fillWidth: true Layout.leftMargin: !isMobile ? 10 : 8
anchors.left: backgroundRect.right }
anchors.leftMargin: !isMobile ? 10 : 8 }
MouseArea { MouseArea {
anchors.fill: parent anchors.fill: parent
cursorShape: Qt.PointingHandCursor cursorShape: Qt.PointingHandCursor
@ -105,5 +95,3 @@ RowLayout {
} }
} }
} }
}
}