Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Qt Key Pressevent Enter

void LoginModle::keyPressEvent(QKeyEvent *event)
{
    qDebug() << event->key() << "\t" << Qt::Key_Enter << "\t" << QKeyEvent::Enter;
    if( event->key() == Qt::Key_Enter)
        OKButtonClicked();
    else
        QDialog::keyPressEvent(event);
}

This code is very simple, class LoginModle inherits from QWidget. run this code and when I press Enter, it shows:

16777220     16777221    10

It means that my Enter in keyboard is 16777220, but in Qt, it was defined as 16777221.

My system is Elementary OS (Freya), which is based on Ubuntu 14.04.

Is there something wrong with my driver or just the program's mistake ?

like image 585
Anudorannador Avatar asked Sep 03 '14 05:09

Anudorannador


2 Answers

The Enter key referred to by Qt::Key_Enter is the Enter key on the numeric keypad. You are pressing the "Enter" key that's next to the letters on your keyboard. That's known as the Return key, and its value is represented by Qt::Key_Return, which equals 16777220.

So, in order to support both key presses, you would modify the if statement as follows:

if( (event->key() == Qt::Key_Enter) || (event->key() == Qt::Key_Return))
        OKButtonClicked();
    else
        QDialog::keyPressEvent(event);
like image 181
Tanuj Mathur Avatar answered Dec 26 '22 05:12

Tanuj Mathur


16777220(dec) = 1000004(hex), so according to this list, pressed key is "Return". Look at the Wiki - Enter key is in numeric keypad, key used by you is called in Qt "Return key".

like image 27
trivelt Avatar answered Dec 26 '22 06:12

trivelt