我有一个其他工作的应用程序,运行在带有触摸屏的beaglebone黑色上。我在应用中添加了QComboBox
,并且遇到了一些非常奇怪的行为。
在打开QComboBox
之前,所有小部件都能正常工作。一旦用户触摸组合框,窗口中任何位置的每次后续触摸都会重新打开组合框。点击组合框下拉列表会导致下拉列表消失,但会导致应用停止接受触摸输入。因此,此应用程序完全是砖砌的。我知道屏幕响应正确,因为当我点击时光标仍然移动,我仍然可以通过单击X关闭应用程序。
为了确保我的现有代码不会以某种方式导致此行为,我在一个仅由QComboBox
和QPushButton
组成的新应用中复制了这种情况。
测试项目的代码如下所示,但是我的所有内容都是由qt自动生成的,除了按下按钮的插槽,它只是在点击时将按钮的背景颜色更改为红色。
我的问题是
1)到底发生了什么事?
2)这会发生在其他人身上还是我的Qt被打破了?
3)我该如何解决?
以下是测试应用的代码:
Test.pro:
#-------------------------------------------------
#
# Project created by QtCreator 2018-03-28T15:03:35
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = Test
TEMPLATE = app
# The following define makes your compiler emit warnings if you use
# any feature of Qt which has been marked as deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS
# You can also make your code fail to compile if you use deprecated APIs.
# In order to do so, uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain
version of Qt.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs
deprecated before Qt 6.0.0
SOURCES += \
main.cpp \
mainwindow.cpp
HEADERS += \
mainwindow.h
FORMS += \
mainwindow.ui
unix {
target.path = /home/debian
INSTALLS += target
}
Main.cpp的:
#include "mainwindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}
mainwindow.h:
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
private slots:
void on_pushButton_clicked();
private:
Ui::MainWindow *ui;
};
#endif // MAINWINDOW_H
mainwindow.cpp:
#include "mainwindow.h"
#include "ui_mainwindow.h"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
}
MainWindow::~MainWindow()
{
delete ui;
}
void MainWindow::on_pushButton_clicked()
{
ui->pushButton->setStyleSheet("QPushButton { background-color: red; } ");
}
以下是我的测试应用的外观: