禁止QML MouseArea在按下时获得焦点

时间:2014-04-13 10:35:59

标签: qml sailfish-os

在我的应用程序中,我有一个TextArea,在其下面有一个包含Button个项目的工具栏。每当按下Button时,TextArea失去焦点,并隐藏虚拟键盘(右侧)。但是,如果我希望TextArea保持关注,即使已按下Button该怎么办?

在SailfishOS中,Button只是MouseArea,而不是QML Button。这意味着我无法将Button.activeFocusOnPress设置为false。有没有办法为MouseArea复制此行为?

以下是一些代码:

    TextArea {
      id: editor
      width: parent.width
      height: 200
      anchors.top: pageHeader.bottom
      anchors.bottom: toolbar.top
    }

    ListModel {
      id: textNavButtons
      ListElement {buttonText: "left"}
      ListElement {buttonText: "right"}
      ListElement {buttonText: "tab"}
      ListElement {buttonText: "home"}
      ListElement {buttonText: "end"}
    }

    Row {
      id: toolbar
      anchors.bottom: parent.bottom
      width: parent.width
      height: 80

      Repeater {
        id: toolbarRepeater
        model: textNavButtons
        property int modelCount: model.count

        delegate: Button {
          text: buttonText
          width: parent.width / toolbarRepeater.modelCount
          onClicked: {
            console.log("I was clicked: " + text);
          }
        }
      }
    }

编辑:我的目标是使用这些按钮在文本中插入标签,或者使用Home,End,Left,Right等进行导航。我不确定使用这些按钮是否能达到目标,但我没有其他的想法。我也必须模拟按键。

0 个答案:

没有答案