gpt4 book ai didi

qt - QQuickView,切换窗口后没有键盘焦点

转载 作者:行者123 更新时间:2023-12-04 13:07:06 25 4
gpt4 key购买 nike

我的 cpp 应用程序有一个 QMainWindow 派生类,在 ui 中有 QQuickView 小部件。 View 内有许多接受键盘输入的 QML 项。单击某个项目时,我会在单击的项目上调用 forceActiveFocus()。从我启动应用程序到我切换到另一个窗口,这一切都有效。

如果我切换到另一个应用程序然后返回,或者切换到我的应用程序中的另一个窗口并返回,则调用 forceActiveFocus() 无效。这些项目有几种不同的类型,但这里是一个示例项目:

TextInput {
id: textInput
anchors.fill: parent
inputMethodHints: Qt.ImhFormattedNumbersOnly
onActiveFocusChanged: console.log(activeFocus)
onEditingFinished:
{

}

MouseArea {
anchors.fill: textInput
onClicked: {
textInput.forceActiveFocus()
console.log("clicked")
}
}
}

切换时,我看到 activeFocus 记录到控制台为 false。当我再次切换回来并单击该项目时,“单击”会记录到控制台,因此正在处理鼠标事件。但是,永远不会再次调用 onActiveFocusChanged。

我还尝试了一个以 FocusScope 作为项目父级的实现,得到了相同的行为,焦点跟随我的点击,直到我切换到其他窗口并再次返回。

更新

阅读@user2436719 的评论后,我尝试了两个最小的例子。仅当使用 QQuickView 时出现这个问题。这是使用 QML 的 QML 应用程序 Window与以下 main.qrc ,这工作得很好:
import QtQuick 2.7
import QtQuick.Window 2.2

Window {
color: "lightblue"

Rectangle {
id: textInputRect
color: "white"
height: 50
width: 150
anchors.centerIn: parent

TextInput {
id: textInput
anchors.fill: parent
inputMethodHints: Qt.ImhFormattedNumbersOnly
onActiveFocusChanged: console.log(activeFocus)
onEditingFinished:
{

}
}
}

}

第二个是带有 QMainWindow 的 CPP 应用程序具有 QQuickView 的派生类ui 中的小部件。此版本表现出问题行为。这是 main.qrc :
import QtQuick 2.7
import QtQuick.Window 2.2

Rectangle {
anchors.fill: parent
color: "lightblue"

Rectangle {
id: textInputRect
color: "white"
height: 50
width: 150
anchors.centerIn: parent

TextInput {
id: textInput
anchors.fill: parent
inputMethodHints: Qt.ImhFormattedNumbersOnly
onActiveFocusChanged: console.log(activeFocus)
onEditingFinished:
{

}
}
}
}

从QQuickView版本,这里是 main :
int main(int argc, char *argv[])
{
QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
QApplication app(argc, argv);

QQmlApplicationEngine engine;
engine.load(QUrl(QLatin1String("qrc:/main.qml")));

MainWindow window;
QQuickView* view = new QQuickView;

window.setView(view);

window.show();

return app.exec();
}

这是我如何设置 QQuickViewMainWindow :
void MainWindow::setView(QQuickView *value)
{
view = value;
QWidget *container = QWidget::createWindowContainer(view, this);
view->setSource(QUrl("qrc:/main.qml"));
ui->verticalLayout->addWidget(container);
}

最佳答案

好的,这是 QTBUG-34414 .在该错误的评论底部发布了一个解决方法。在切换到我的应用程序的其他窗口或其他应用程序的情况下,发布的解决方法为我解决了这个问题。关闭对话框后仍然没有焦点。将此覆盖放在我的窗口类中可以解决这两种情况的问题:

bool MyWindow::event(QEvent *event)
{
if (event->type() == QEvent::ActivationChange ||
event->type() == QEvent::WindowUnblocked) {
if(view->isActive()) { //view is pointer to my QQuickView
window()->activateWindow();
return true;
}
}
// handle events that don't match
return QWidget::event(event);
}

这个覆盖在 OSX Sierra 上使用 Qt 5.7 对我有用。

关于qt - QQuickView,切换窗口后没有键盘焦点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40849281/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com