我想在QCoreApplication类的命令行应用程序中处理键盘事件。 在http://doc.qt.nokia.com/4.7/eventsandfilters.html之后我尝试重新实现QCoreApplication :: event(),但我的代码不起作用:
#include <QCoreApplication>
#include <QtGui/QKeyEvent>
class CoreApp : public QCoreApplication
{
Q_OBJECT
public:
explicit CoreApp(int & argc, char ** argv);
bool event(QEvent *event);
};
CoreApp::CoreApp(int & argc, char ** argv) :
QCoreApplication(argc,argv)
{
}
bool CoreApp::event(QEvent *event)
{
if (event->type() == QEvent::KeyPress) {
QKeyEvent *ke = static_cast<QKeyEvent *>(event);
if (ke->key() == Qt::Key_Q) {
qDebug("Quit?");
//qApp->quit();
return true;
}
}
return QCoreApplication::event(event);
}
int main(int argc, char *argv[])
{
CoreApp a(argc, argv);
return a.exec();
}
我检查过http://doc.qt.nokia.com/qq/qq11-events.html并没有找到解决方案。 如何妥善处理这些事件?