如何合并KeyReleaseEvent
和QPushButton
使用signal
. 我的意思是每当用户按下回车键按钮时,都应该使用 SLOT 调用某些函数。那么我必须在信号中使用什么?
void mywindow::keyReleaseEvent(QKeyEvent *event)
{
switch(event->key())
{
case Qt::Key_Enter:
connect(button1, SIGNAL(clicked()), this, SLOT(fileNew()));
connect(button2, SIGNAL(clicked()), this, SLOT(file()));
break;
}
}