0

Carbide.C++ 2.3 と S60 3rd FP2 SDK を使用しています

Container の OfferKeyEventL 関数ですべてのキー イベントを受信して​​いますが、キー マップ/キー グループを特定するにはどうすればよいですか?

アルファ キー イベント、数字キー イベント、または特殊キー イベントを特定する方法をお聞きしたいのですが??

私を案内してください...

4

1 に答える 1

0

そのために、TKeyEvent の iCode および iScanCode メンバーを使用できます。

/** The character code generated for an EEventKey, or 0 for a down or up event.
Key codes for special keys are defined in TKeyCode. */
TUint iCode;

/** The scan code of the key that caused the event.
Standard scan codes are defined in TStdScanCode. */
TInt iScanCode;
于 2010-11-17T02:39:28.830 に答える