如何捕捉从Qml中的虚拟键盘按下的Key_Cancel?

时间:2019-06-17 11:38:30

标签: qt qml virtual-keyboard

我有以下TextField作为链接到虚拟键盘的输入字段。

TextField {
        id: inputField
        color: buttonActive ? Style.buttonColorTextOn : Style.buttonColorTextOff
        text: "100"
        topPadding: 8
        anchors.left: parent.left
        anchors.leftMargin: 8
        anchors.right: icon.left
        anchors.rightMargin: 8
        anchors.top: parent.top
        anchors.topMargin: 6
        anchors.bottom: parent.bottom
        anchors.bottomMargin: 6
        inputMethodHints: Qt.ImhDigitsOnly
        validator: IntValidator { bottom:lowestInput; top: highestInput}
        selectionColor: Style.textSelectionBg
        selectedTextColor: Style.fontcolor1
        font.family: stdFont.name
        horizontalAlignment: TextField.AlignRight
        verticalAlignment: TextField.AlignVCenter
        font.pixelSize: Style.highlightedFontSize
        leftPadding: 3
        rightPadding: 3
        TextMetrics{
            id: textMetrics
            text: inputField.text
            font.family: stdFont.name
            font.pixelSize: Style.highlightedFontSize
        }

        background: Rectangle
        {
            color: buttonActive ? Style.buttonColorOn : Style.buttonColorOff
            border.color: buttonActive ? Style.buttonColorTextOn : Style.buttonColorTextOff
            border.width: 1
            Rectangle
            {
                id: inputFieldColor
                color: buttonActive ? Style.buttonColorOn : Style.buttonColorOff
                anchors.top: parent.top
                anchors.topMargin: inputField.topPadding - 1
                anchors.right: parent.right
                anchors.rightMargin: inputField.rightPadding - 1
                width: textMetrics.width + inputField.rightPadding
                height: textMetrics.height
            }
        }
    }

此键盘如下所示。

enter image description here

在此键盘的自定义布局中,取消键的构造如下。

Key {
                key: Qt.Key_Cancel
                text: "cancel"
}

我的问题是,当按下虚拟键盘上的取消按钮时,如何捕捉?我想在插槽中放一些onKeyCancelPressed的东西,并可能在按“取消”按钮之前撤消对文本字段所做的更改。

谢谢。

1 个答案:

答案 0 :(得分:1)

我认为唯一的方法是在Key代码本身中进行响应(textBeforeEditing是您自己的变量):

onClicked: InputContext.priv.inputItem.text = InputContext.priv.inputItem.textBeforeEditing

缺点是它使用私有API。