Home > Back-end >  How to use number pad Keys in Qt?
How to use number pad Keys in Qt?

Time:01-31

The Qt::Key enum has no number pad specific numeric definitions. So how would one go about distinguishing between a number pressed on the number pad vs a number on the number row? I know the events at the OS level are different. Enter and Return on the other hand are separate keys.

CodePudding user response:

Use keyPressEvent->modifiers().testFlag(Qt::KeypadModifier).

  •  Tags:  
  • Related