对于QML,为什么LayoutMirroring在Slider中不起作用?

时间:2017-06-19 08:53:15

标签: qt qml qtquick2 qtquickcontrols

今天我尝试了QtQuick.Controls中的Slider,我的滑块是从左到右,我想通过 LayoutMirroring.enabled 从右到左设置我的滑块,最后我发现我可以#39; t倒置了滑块。

这是我的小型演示代码,那么我们如何反转滑块?

Window {
    visible: true
    width: 640
    height: 480
    title: qsTr("Hello World")

    Slider{
        id:test
        value: 0.2
        width:400
        LayoutMirroring.enabled: true
    }
}

2 个答案:

答案 0 :(得分:1)

如果您使用Slider中的QtQuick.Controls 2.x - 至少对我来说 - 它就像魅力一样。如果您使用Slider中的QtQuick.Controls 1.x则不会。

来自documentation

  

但请注意,镜像不会影响Item x坐标值定义的任何定位,因此即使启用了镜像,通常也需要应用一些布局修复来支持所需的布局方向。 / p>

QtQuick.Controls 1.x - Slider使用基于坐标的implementation,并且没有其他预防措施来支持LayoutMirroring

然而,Slider的布局通常是对称的,因此您需要做的就是将值映射为(0,1)到(1,0)。对于开发人员来说,这应该是一件容易的事。

import QtQuick.Controls 1.3
import QtQuick.Controls.Layouts 1.3
import QtQuick.Controls.Private 1.3 // Needed for a mysterious value from the original, now mirrored style.
Slider {
    y: 40
    id: sli
    width: parent.width
    minimumValue: 50
    maximumValue: 100

    property real mirroredValue: maximumValue - value + minimumValue

    // Invert style
    style: SliderStyle {
        groove: Item {
            property color fillColor: "#49d"
            anchors.verticalCenter: parent.verticalCenter
            // Whatever TextSingleton is. You need to import QtQuick.Controls.Private 1.x for it.
            implicitWidth: Math.round(TextSingleton.implicitHeight * 4.5) 
            implicitHeight: Math.max(6, Math.round(TextSingleton.implicitHeight * 0.3))
            Rectangle {
                radius: height/2
                anchors.fill: parent
                border.width: 1
                border.color: "#888"
                gradient: Gradient {
                    GradientStop { color: "#bbb" ; position: 0 }
                    GradientStop { color: "#ccc" ; position: 0.6 }
                    GradientStop { color: "#ccc" ; position: 1 }
                }
            }
            Item {
                clip: true
                x: styleData.handlePosition // let the fill-stuff start at the handle position...
                width: parent.width - styleData.handlePosition // and end at the end of the groove.
                height: parent.height
                Rectangle {
                    anchors.fill: parent
                    border.color: Qt.darker(fillColor, 1.2)
                    radius: height/2
                    gradient: Gradient {
                        GradientStop {color: Qt.lighter(fillColor, 1.3)  ; position: 0}
                        GradientStop {color: fillColor ; position: 1.4}
                    }
                }
            }
        }
    }
}

如果您不想设置滑块的值,则需要在mirroredValuevalue之间安装bidirectional binding

答案 1 :(得分:0)

我有类似的问题。我的滑块是垂直的,值从底部到顶部增加。我希望它们从上到下增加。我使用旋转完成它。我认为您可以这样解决您的问题:

Slider {
    id: test
    value: 0.2
    width: 400
    rotation: 180 // This should make the slider right-to-left
}