我正在使用Qt 5.8.0向QtQuick Controls2应用程序添加键盘快捷键,我想使用QKeySequence控制选项卡栏,如下所示:
ApplicationWindow {
...
Shortcut {
sequence: StandardKey.NextChild
onActivated: tabBar.nextTab()
}
Shortcut {
sequence: StandardKey.PreviousChild
onActivated: tabBar.previousTab()
}
}
TabBar {
id: tabBar
...
function nextTab() {
console.log("next tab")
if((currentIndex + 1) < contentChildren.length)
currentIndex += 1
else
currentIndex = 0
}
function previousTab() {
console.log("previous tab")
if((currentIndex - 1) > 0)
currentIndex -= 1
else
currentIndex = contentChildren.length - 1
}
}
这适用于使用 Ctrl+Tab 的 NextChild 序列,但 PreviousChild 序列不起作用。我检查了文档,它声称在 Windows 中,上一个 Child 序列是 Ctrl+Shift+Tab,正如我所期望的那样。
我添加了一个console.log()
来检查该函数是否被调用,而它没有。由于我对两个函数使用相同的代码,我只能假设键序列是错误的,或者我缺少其他什么?
似乎是一个Qt错误https://bugreports.qt.io/browse/QTBUG-15746
或者,您可以将上一个子快捷方式定义为
Shortcut {
sequence: "Ctrl+Shift+Tab"
onActivated: {
tabBar.previousTab()
}
}
这是无关紧要的,但您的previousTab
实现中有一个小索引错误
function previousTab() {
console.log("previous tab")
if(currentIndex > 0) // Instead of (currentIndex - 1) > 0
currentIndex--
else
currentIndex = contentChildren.length-1
}