diff options
| author | xiphon <xiphon@protonmail.com> | 2018-12-05 09:52:18 +0000 |
|---|---|---|
| committer | xiphon <xiphon@protonmail.com> | 2018-12-05 21:14:12 +0300 |
| commit | f72b4073acd75c685a0e2847df80ec39bdd0cc16 (patch) | |
| tree | 2a1330d51063f2e0a1787815271a21156fa3fef1 /components | |
| parent | 71a1ff6677917e2c8be330c38fa6d3bfb79dffd2 (diff) | |
| download | monzero-gui-f72b4073acd75c685a0e2847df80ec39bdd0cc16.tar.gz monzero-gui-f72b4073acd75c685a0e2847df80ec39bdd0cc16.tar.xz monzero-gui-f72b4073acd75c685a0e2847df80ec39bdd0cc16.zip | |
checkbox: remove a gap between rectangle and text, fix layout
Diffstat (limited to 'components')
| -rw-r--r-- | components/CheckBox.qml | 70 |
1 files changed, 29 insertions, 41 deletions
diff --git a/components/CheckBox.qml b/components/CheckBox.qml index 72716150..52f863e4 100644 --- a/components/CheckBox.qml +++ b/components/CheckBox.qml @@ -31,7 +31,7 @@ import QtQuick.Layouts 1.1 import "../components" as MoneroComponents -RowLayout { +Item { id: checkBox property alias text: label.text property string checkedIcon: "../images/checkedIcon-black.png" @@ -42,6 +42,7 @@ RowLayout { property alias fontColor: label.color signal clicked() height: 25 * scaleRatio + width: checkBoxLayout.width function toggle(){ checkBox.checked = !checkBox.checked @@ -49,43 +50,31 @@ RowLayout { } RowLayout { - Layout.fillWidth: true - Rectangle { - anchors.left: parent.left - width: 25 * scaleRatio - height: checkBox.height - 1 - radius: 3 - y: 0 - color: "transparent" - border.color: - if(checkBox.checked){ - return MoneroComponents.Style.inputBorderColorActive; - } else { - return MoneroComponents.Style.inputBorderColorInActive; - } - } + id: checkBoxLayout + + Item { + id: checkMark + height: checkBox.height + width: checkBox.height - Rectangle { - id: backgroundRect - anchors.left: parent.left - width: 25 * scaleRatio - height: checkBox.height - 1 - y: 1 - color: "transparent" + Rectangle { + id: backgroundRect + anchors.fill: parent + radius: 3 + color: "transparent" + border.color: + if(checkBox.checked){ + return MoneroComponents.Style.inputBorderColorActive; + } else { + return MoneroComponents.Style.inputBorderColorInActive; + } + } Image { anchors.centerIn: parent source: checkBox.checkedIcon visible: checkBox.checked } - - MouseArea { - anchors.fill: parent - cursorShape: Qt.PointingHandCursor - onClicked: { - toggle() - } - } } Text { @@ -94,16 +83,15 @@ RowLayout { font.pixelSize: checkBox.fontSize color: MoneroComponents.Style.defaultFontColor wrapMode: Text.Wrap - Layout.fillWidth: true - anchors.left: backgroundRect.right - anchors.leftMargin: !isMobile ? 10 : 8 - MouseArea { - anchors.fill: parent - cursorShape: Qt.PointingHandCursor - onClicked: { - toggle() - } - } + Layout.leftMargin: !isMobile ? 10 : 8 + } + } + + MouseArea { + anchors.fill: parent + cursorShape: Qt.PointingHandCursor + onClicked: { + toggle() } } } |
