我们知道在Symbian的按键事件处理中使用以下方法:
TKeyResponse CMegajoyContainer::OfferKeyEventL(const TKeyEvent& aKeyEvent, TEventCode aType)
这个方法是在CCoeControl(Control base class from which all other controls are derived)中定义的虚函数,其定义如下:
OfferKeyEventL()
virtual TKeyResponse OfferKeyEventL(const TKeyEvent& aKeyEvent,TEventCode aType);
Description
Handles key events.
If a control wishes to process key events, it should implement this function. The implementation must ensure that the function returns EKeyWasNotConsumed if it does not do anything in response to a key event— otherwise, other controls or dialogs may be prevented from receiving the key event. If it is able to process the event it should return EKeyWasConsumed .
注释:
如果一个控件希望处理按键事件,那么它就应该实现这个函数。如果对一个按键事件,控件并没做任何事情,那么函数的实现中必须确保函数返回EKeyWasNotConsumed。否则,(控件栈中的)其它控件或对话框可能会接收不到按键事件。如果此控件能够处理按键事件,那么它应该返回EKeyWasConsumed。
When a key event occurs, the control framework calls this function for each control on the control stack, until one of them can process the key event (and returns EKeyWasConsumed ).
注释:
当一个按键事件发生时,控件框架调用控件栈上的每个控件的OfferKeyEventL方法,直到它们中的一个能够处理这个按键事件(并且返回EKeyWasConsumed)。
Parameters
const TKeyEvent& aKeyEvent |
The key event.
|
TEventCode aType |
The type of key event: EEventKey , EEventKeyUp or EEventKeyDown .
|
|
Return value
TKeyResponse |
Indicates whether or not the key event was used by this control.
|
|
Notes:
- Each keyboard key press results in three separate events: EEventKeyDown, EEventKey, and EEventKeyUp, in that order.
每个键被按下时会顺序产生三个独立的事件:EEventKeyDown、EEventKey、EEventKeyUp。
- To receive key events, which can be processed by this function, the application should call CCoeAppUi::AddToStackL() to add the control to the stack. This only applies, however, to controls which are not components of a compound control. Compound controls should pass key events to their components as necessary: the components themselves do not go on the stack.
为了接收到按键事件,应用程序应该调用CCoeAppUi::AddToStackL() 方法把控件增加到栈上。尽管这个规则仅仅用在非混合控件。混合控件应该传递按键事件给其组件:组件自己并不在控件栈上。
- Classes that override CCoeControl::OfferKeyEventL() should also override the InputCapabilities() virtual function, returning a TCoeInputCapabilities object whose attributes correspond to the behaviour of the OfferKeyEventL() function. Note that it is not necessary to call InputCapabilities() on any component controls from inside a class' InputCapabilities() function — this is done automatically by the UI Control Framework.
重载CCoeControl::OfferKeyEventL()的类也应该重载虚函数InputCapabilities() ,它会返回一个TCoeInputCapabilities 对象,这个对象的属性和OfferKeyEventL()方法的行为吻合。注意,在控件中并不是必须要调用InputCapabilities() 方法,因为这个过程自动被UI Control Framework完成了。
|
virtual TKeyResponse OfferKeyEventL(const TKeyEvent& aKeyEvent,TEventCode aType);
中的第二个参数没什么好说的,它就代表三种按键事件中的一种,我们重点来看看TKeyEvent:
TKeyEvent
Support
Supported from 5.0
Description
Key event details.
When processing a TKeyEvent , the TStdScanCode in iScanCode should usually be ignored in favour of the TKeyCode in iCode . Using iScanCode would bypass the keyboard mapping and any FEP that happens to be installed. The exceptions to this general rule are games where the positions of the keys are more important than their translations, and FEPs that are implementing keyboard maps themselves. In these cases, if the iCode is used rather than iScanCode to determine the key pressed, there will be two unfortunate consequences. Firstly, the low-level keyboard mapping might re-arrange the mapping that you are trying to impose. Secondly, you will subvert the CTRL+number method of entering Unicode literals.
注释:
当处理一个TKeyEvent时,TStdScanCode中的iScanCode通常应该被忽略而赞成用TKeyCode中的iCode。用iScanCode可以绕过键盘映射和任何已经安装的FEP(A front-end processor)。这个规则的例外情况是游戏,因为游戏中键盘的方位比它们实际的值更重要,还有FEP中,它们已经实现了键盘映射。在这些情况下,用iCode去决定按键,会有两个意外的后果。首先,底层的键盘映射机制可能会重新布置键盘映射。其次,你会破坏输入Unicode字符的CTRL+number方法。
Members
Defined in TKeyEvent :
iCode , iModifiers , iRepeats , iScanCode
Member data
TUint iCode
Description
The character code generated for an EEventKey , or 0 for a down or up event.
Key codes for special keys are defined in TKeyCode .
对应一个EEventKey产生的字符码,当按下或释放按键的时候值为0(这点需要注意,我测试的时候,没按键的时候屏幕上值为0,只有当键被按超过几s时才会有相应的值产生,当释放按键的时候值也为0,所以你如果写成下面的代码值就始终为0,测试不出来实际的值:
if( aType == EEventKeyDown ){ TBuf<40> scanCode; scanCode.AppendNum(aKeyEvent.iCode); scanCode.operator +=_L(" iScanCode is pressed down!"); CEikonEnv::Static()->InfoMsg(scanCode); }
所以应该写成下面这样:
if( aType == EEventKey ){ TBuf<40> scanCode; scanCode.AppendNum(aKeyEvent.iCode); scanCode.operator +=_L(" iScanCode is pressed down!"); CEikonEnv::Static()->InfoMsg(scanCode); }
当aType为EEventKeyDown或EEventKeyUp时,iCode的值均为0
)。
特定按键的Key codes在TKeyCode中定义。
TUint iModifiers
Description
State of modifier keys and pointing device. Modifier keys are defined in TEventModifier .
TInt iRepeats
Description
Count of auto repeats generated.
0 means an event without repeats. 1 or more means "this many auto repeat events". It is normal to ignore this value and treat it as a single event.
TInt iScanCode
Description
The scan code of the key that caused the event.
Standard scan codes are defined in TStdScanCode .
|
所以,从上面的SDK HELP可以看出来:iScanCode这个值是实际键盘的扫描码,也就是一个键对应一个数字。而iCode是键的一些映射,比如EKeyLeftArrow
、EKeyRightArrow
、EKeyUpArrow
、EKeyDownArrow
、EKeyDevice3分别代表左、右、上、下、Fire键,而63554、63555分别代表左右软键等。
所以用iCode具有更强的通用性,不会出现下面的问题:
我写了一个程序,用CAknView::OfferKeyEventL(const TKeyEvent& aKeyEvent, TEventCode aType)接受键盘事件,仅仅处理"*"按键,我发现,Symbian定义的EStdKeyNkpAsterisk值为133,在模拟器上工作正常,可是转到我的Nokia 6060后,失败了,后来发现Nokia 6060对"*"的扫描码为40,我很困惑的是如果每个手机都定义了自己的扫描码系统,那么Symbian定义扫描码常量的作用是什么呢,指导作用?另外,是不是所有手机都不遵循Symbian扫描码定义呢?如果是这样,是不是每个手机型号都要定义一个自己的扫描码头文件,那可是非常非常恐怖的一件事情。
|
分享到:
相关推荐
通过对Symbian系统中左右软键处理的分析,我们可以看到,通过适当的编程技巧和资源文件配置,开发者可以灵活地控制这些按键的功能,从而提升用户的交互体验。无论是通过代码直接处理按键事件,还是通过资源文件定义...
我用carbide c++ 可以断点 不用这个 但是nokia不同机器型号的键值不同 倒是没见到过 想起原来有个自己写的练手的小东西 就发出来把 可以检测symbian s60 2nd的按键iscancode 也许有人有用吧
Symbian 是一款曾经非常流行的移动操作系统,在其发展过程中,开发者们遇到了各种各样的需求和技术挑战。其中,模拟按键事件是在 Symbian 应用开发中一个常见的需求。本文将详细介绍在 Symbian 平台上模拟按键事件的...
在Symbian操作系统中,模拟按键是一项非常实用的功能,尤其是在测试和开发阶段。通过模拟按键事件,开发者可以更容易地调试应用程序的行为,确保用户界面按照预期响应各种按键操作。本文将详细介绍Symbian系统中模拟...
代驾应用系统 SSM毕业设计 附带论文 启动教程:https://www.bilibili.com/video/BV1GK1iYyE2B
线上书籍查阅系统 SSM毕业设计 附带论文 启动教程:https://www.bilibili.com/video/BV1GK1iYyE2B
c语言教工工资管理系统
可保存图片,开源,绘制奇妙美丽的图片
# 基于Xilinx FPGA加速的面部评分系统 ## 项目简介 本项目是一个基于Xilinx FPGA加速的面部识别和评分系统,名为FaceScore。该项目在国际夏季学校中作为案例研究完成,旨在展示如何在嵌入式系统中高效部署深度学习应用。通过利用Xilinx的硬件加速技术,系统能够实现快速且高效的面部识别与评分功能。 ## 项目的主要特性和功能 1. 面部检测利用深度学习模型从视频流中识别出人脸,并输出人脸的坐标。 2. 硬件加速通过Xilinx FPGA加速深度学习模型的计算密集型部分,如卷积操作。 3. 面部评分对检测到的人脸进行特征提取,并通过图像分类CNN模型进行评分。 4. 整体架构项目包含ARM处理器(用于视频流和图像处理)、面部检测模块、DPU(FPGA上的软核)和面部评分模块。 ## 安装与使用步骤 假设用户已经下载了本项目的源码文件。 1. 环境准备 安装Xilinx提供的开发环境及相关工具链。
PHP学生成绩查询(源代码+论文)
1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。
Android项目之——漂亮的平台书架
1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。
c语言商品销售系统源码
android_jni操作指南
gee python 教程(西班牙语)
金融支付终端管理系统 SSM毕业设计 附带论文 启动教程:https://www.bilibili.com/video/BV1GK1iYyE2B
教务管理系统 SSM毕业设计 附带论文 启动教程:https://www.bilibili.com/video/BV1GK1iYyE2B
Android ListView下拉刷新 Demo
jackson-core-2.10.4.jar