我使用的是Carbide.C ++ 2.3和S60 3rd FP2 SDK
在Container的OfferKeyEventL函数中,我收到了所有关键事件但是如何识别关键地图/密钥组?
我的意思是询问如何识别它是Alpha键事件还是数字键事件或特殊键事件??
请指导我......
答案 0 :(得分: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;