如何在Symbian S60中获取Container类的OfferKeyEventL函数中的一组关键事件

时间:2010-11-16 11:02:22

标签: symbian s60

我使用的是Carbide.C ++ 2.3和S60 3rd FP2 SDK

在Container的OfferKeyEventL函数中,我收到了所有关键事件但是如何识别关键地图/密钥组?

我的意思是询问如何识别它是Alpha键事件还是数字键事件或特殊键事件??

请指导我......

1 个答案:

答案 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;