zoukankan      html  css  js  c++  java
  • Using keyboard hooks in WinCE

    http://www.codeproject.com/KB/mobile/wincekbhook.aspx

    http://www.codeproject.com/KB/mobile/KeyboardhooksWinCE.aspx

    Introduction

    The article shows how to use keyboard hooks in WinCE.

    Background

    I came across a problem where I had to remap certain special keys on my handheld for an existing dialog based application. The only solution I knew that would gracefully do this in WinCE was hooks. But MSDN states that hook APIs aren't supported in WinCE. But I found that they were present in coredll.lib. So, I thought of manually loading these APIs and using them. Initially, I did have some problems doing this, but a look into winuser.h in VC++, made the job a lot easier. Googling also helped me to some extent, but I don't remember the URLs now, my apologies to those whom I haven't given the credit.

    Using the code

    You just have to use two files winceKBhook.cpp and winceKBhook.h. The code has been commented thoroughly for easy understanding. You can use these files in either an EXE or a DLL.

    The mechanism of using a hook would be to install it. This is done using the function ActivateKBHook() in winceKBhook.cpp. This function loads the necessary hook APIs and installs the keyboard hook. It is necessary to pass the handle of the application to be hooked and a low level keyboard procedure, which has to be defined by the user. All the keyboard events come to this procedure. Your code can then manage these events the way you want. The example shown below just remaps the keys. After you are done with using the hook you can unload it using DeActivateKBHook().

    Collapse Copy Code
    //Install the KB hook by passing the 
    //handle of the application to be hooked 
    //and the address of the KB procedure 
    //which will handle all the KB events
    if(!ActivateKBHook(hInstance, LLKeyboardHookCallbackFunction))
    {
        MessageBox(GetActiveWindow(), 
            TEXT("Couldn't intall hook...Terminating"), 
            TEXT("Warning"), NULL);
        exit(1);
    }
    
    //LLKeyboardHookCallbackFunction is the funtion whose 
    //address we passed to the system while installing the hook.
    //so all the KB events will bring the control to this procedure.
    //Here we want that when the user presse left or 
    //right key it should be interpreted as an UP key
    //so now you can allow the user to configure the 
    //key boards the way he/she wants it
    LRESULT CALLBACK LLKeyboardHookCallbackFunction(
                      int nCode, WPARAM wParam, LPARAM lParam) 
    {
        if(((((KBDLLHOOKSTRUCT*)lParam)->vkCode) == VK_LEFT) || 
               ((((KBDLLHOOKSTRUCT*)lParam)->vkCode) == VK_RIGHT))
        {
            //Generate the keyboard press event of the mapped key
            keybd_event(VK_UP, 0, 0, 0); 
    
            //release the mapped key
            keybd_event(VK_UP, 0, KEYEVENTF_KEYUP, 0); 
        }
    
        //let default processing take place
        return CallNextHookEx(g_hInstalledLLKBDhook, nCode, 
                                                  wParam, lParam);
    }
    
    //we are done with the hook. now uninstall it.
    DeactivateKBHook();
  • 相关阅读:
    用Oracle实现ASH的数据透视图
    Oracle AWR 之 通过dbms_workload_repository.awr_report_text(html)函数在客户端生成AWR报告
    (转)CentOS 7 安装 Python3、pip3
    (转) Linux 内核运行参数修改——sysctl命令
    (转)oracle linux 7 安装oracle 12c
    (转)Oracle与DB2在数据库高可用技术上的相同与差异探讨
    (转)OpenStack —— 原理架构介绍(一、二)
    (转)ELK原理与介绍
    (转)Db2 备份恢复性能问题诊断与调优
    (转)IBM AIX系统安装
  • 原文地址:https://www.cnblogs.com/xyzlmn/p/3168294.html
Copyright © 2011-2022 走看看