From 20cbd99ae762bae1ea4cbcac85a4b7b845c746e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Tinkl?= Date: Fri, 2 Sep 2022 17:59:28 +0200 Subject: [PATCH] fix(StatusRadioButton): StatusRadioButton can't be fully clicked - fix the control's width (don't have to be explicit, the QQC2 Control takes care of calculating the implicitWidth/Height automatically based on contents) - while at it, fix the metrics to be able to support RTL languages too (it was off for Arabic) - some smaller cleanups too --- ui/StatusQ/sandbox/controls/Controls.qml | 13 ++++++- .../StatusQ/Controls/StatusRadioButton.qml | 39 ++++++++----------- 2 files changed, 29 insertions(+), 23 deletions(-) diff --git a/ui/StatusQ/sandbox/controls/Controls.qml b/ui/StatusQ/sandbox/controls/Controls.qml index 845d2560d7..7f82b49152 100644 --- a/ui/StatusQ/sandbox/controls/Controls.qml +++ b/ui/StatusQ/sandbox/controls/Controls.qml @@ -113,9 +113,20 @@ GridLayout { StatusSwitch { } + StatusSwitch { + text: "Switch with text" + } StatusRadioButton { - text: "i'm radio!" + text: "Radio button 1" + checked: true + } + StatusRadioButton { + text: "Radio button 2 (clicking on this text will uncheck the above)" + } + StatusRadioButton { + LayoutMirroring.enabled : true + text: "Radio button 3 (forced right-to-left)" } StatusCheckBox {} diff --git a/ui/StatusQ/src/StatusQ/Controls/StatusRadioButton.qml b/ui/StatusQ/src/StatusQ/Controls/StatusRadioButton.qml index 3717769f80..9d2bc2a5fc 100644 --- a/ui/StatusQ/src/StatusQ/Controls/StatusRadioButton.qml +++ b/ui/StatusQ/src/StatusQ/Controls/StatusRadioButton.qml @@ -1,14 +1,12 @@ import QtQuick 2.14 import QtQuick.Controls 2.14 -import QtQml 2.14 import StatusQ.Core 0.1 import StatusQ.Core.Theme 0.1 import StatusQ.Components 0.1 - RadioButton { - id: statusRadioButton + id: root /*! \qmlproperty int StatusRadioButton::size @@ -24,32 +22,29 @@ RadioButton { Large } - width: indicator.implicitWidth - indicator: Rectangle { - implicitWidth: size === StatusRadioButton.Size.Large ? 20 : 14 - implicitHeight: size === StatusRadioButton.Size.Large ? 20 : 14 - x: 0 - y: 6 - radius: 10 - color: statusRadioButton.checked ? Theme.palette.primaryColor1 - : Theme.palette.directColor8 + implicitWidth: root.size === StatusRadioButton.Size.Large ? 20 : 14 + implicitHeight: root.size === StatusRadioButton.Size.Large ? 20 : 14 + x: root.text ? (root.mirrored ? root.width - width - root.rightPadding : root.leftPadding) : root.leftPadding + (root.availableWidth - width) / 2 + y: root.topPadding + (root.availableHeight - height) / 2 + radius: width / 2 + color: root.checked ? Theme.palette.primaryColor1 : Theme.palette.directColor8 Rectangle { - width: size === StatusRadioButton.Size.Large ? 12 : 8 - height: size === StatusRadioButton.Size.Large ? 12 : 8 - radius: 6 - anchors.horizontalCenter: parent.horizontalCenter - anchors.verticalCenter: parent.verticalCenter - color: statusRadioButton.checked ? Theme.palette.white : "transparent" - visible: statusRadioButton.checked + width: root.size === StatusRadioButton.Size.Large ? 12 : 8 + height: root.size === StatusRadioButton.Size.Large ? 12 : 8 + radius: width / 2 + anchors.centerIn: parent + color: Theme.palette.white + visible: root.checked } } contentItem: StatusBaseText { - text: statusRadioButton.text + font: root.font + text: root.text color: Theme.palette.directColor1 verticalAlignment: Text.AlignVCenter - leftPadding: !!statusRadioButton.text ? statusRadioButton.indicator.width + statusRadioButton.spacing - : statusRadioButton.indicator.width + leftPadding: root.indicator && !root.mirrored ? root.indicator.width + root.spacing : 0 + rightPadding: root.indicator && root.mirrored ? root.indicator.width + root.spacing : 0 } }