如何在 qml 中捕获从虚拟键盘按下的 Key_Cancel?

How to catch Key_Cancel pressed from virtual keyboard in qml?

我有以下 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
            }
        }
    }

此键盘如下所示。

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

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

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

谢谢。

我认为唯一的办法就是在Key代码中自己响应(textBeforeEditing是你自己的变量):

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

缺点是这使用私有API。