I have found it in one of examples.
Qt Code:
if (splash->isVisible() || event->key() == Qt::Key_Return || flipped) { return; }To copy to clipboard, switch view to plain text mode
Could you tell me what is Key_Return?
I have found it in one of examples.
Qt Code:
if (splash->isVisible() || event->key() == Qt::Key_Return || flipped) { return; }To copy to clipboard, switch view to plain text mode
Could you tell me what is Key_Return?
Maybe it represents the "return key" of the keyboard. Just as synonym for Qt::Key_Enter.
Qt::Key_Enter this is a Enter key on numeric pad. Qt::Key_Return this is a Enter key on main pad.
Qt differentiate this two keys. For me this a nonsense.
estel (5th September 2009)
Bookmarks