Evil Spork
Evil Spork

Reputation: 1001

How to use number pad Keys in Qt?

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.

Upvotes: 0

Views: 1232

Answers (1)

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

Upvotes: 1

Related Questions