symbian-在后台捕获按键消息

symbian-在后台捕获按键消息
2009年3月30日

The CKeyCapturer implementation illustrates how to capture key events in a background process. Note that you need to define the key to be captured when using the CaptureKey() function (example is capturing the EKeyDevice0 key).

Also note that if the key should also be usable for the focused application, you need to manually forward it. This is already handled by the example as shown in the RunL() method. The callback interface function will return EFalse if the key is supposed to be forwarded to the focus application and ETrue if the key was consumed.

This example code should work with all platforms, but when used with S60 3rd Edition devices you need to have the SwEvent capability.

If you want to capture basic application keys in a foreground application you can use the standard OfferKeyEventL() method implemented in your CCoeControl derived class. If your application does not implement the standard application framework, you could also try using CKeyCapturer2 implementation.

Header required:

#include <w32std.h>
#include <apgwgnam.h> //CApaWindowGroupName


 


Library Required:

LIBRARY   ws32.lib
LIBRARY   apgrfx.lib //CApaWindowGroupName


Capability Required:

capability    SwEvent

 
CapturingKeys.cpp
CKeyCapturer* CKeyCapturer::NewL(MKeyCallBack& aObserver)
          {
          CKeyCapturer* self = CKeyCapturer::NewLC(aObserver);
          CleanupStack::Pop(self);
          return self;
          }
 
CKeyCapturer* CKeyCapturer::NewLC(MKeyCallBack& aObserver)
          {
          CKeyCapturer* self = new (ELeave) CKeyCapturer(aObserver);
          CleanupStack::PushL(self);
          self->ConstructL();
          return self;
          }
 
CKeyCapturer::CKeyCapturer(MKeyCallBack& aObserver)
:CActive(EPriorityStandard),iObserver(aObserver),iHandle(-1)
{
}
 
CKeyCapturer::~CKeyCapturer()
{
          if(iHandle > -1)
          {
                    iWg.CancelCaptureKey(iHandle);
          }
         
          iHandle = -1;
         
          Cancel();
         
          iWg.Close();
          iWsSession.Close();
}
 
void CKeyCapturer::ConstructL()
{
          CActiveScheduler::Add(this);
         
          User::LeaveIfError(iWsSession.Connect());
 
          iWg=RWindowGroup(iWsSession);
          User::LeaveIfError(iWg.Construct((TUint32)&iWg, EFalse));
          iWg.SetOrdinalPosition(-1);
          iWg.EnableReceiptOfFocus(EFalse);
 
          CApaWindowGroupName* wn=CApaWindowGroupName::NewLC(iWsSession);
          wn->SetHidden(ETrue);
          wn->SetWindowGroupName(iWg);
          CleanupStack::PopAndDestroy();
 
          iHandle = iWg.CaptureKey(EKeyDevice0, 0,0);
          Listen();
}
 
void CKeyCapturer::RunL()
{
          if (iStatus == KErrNone)
          {
                    TWsEvent e;
                    iWsSession.GetEvent(e);
         
                    if(iObserver.KeyCapturedL(e))
                    {        
                               TInt wgId = iWsSession.GetFocusWindowGroup();
                               iWsSession.SendEventToWindowGroup(wgId, e);
                    }
          }
         
          if (iStatus != KErrCancel)
          {
                    Listen();
          }
}
 
void CKeyCapturer::DoCancel()
{
          iWsSession.EventReadyCancel();
}
 
void CKeyCapturer::Listen()
{
          iWsSession.EventReady(&iStatus);
          SetActive();
}
CapturingKeys.h
class MKeyCallBack
{
public:
          virtual TBool KeyCapturedL(TWsEvent aEvent) = 0;
};
 
class CKeyCapturer : public CActive
{
public:
          static CKeyCapturer* NewL(MKeyCallBack& aObserver);
          static CKeyCapturer* NewLC(MKeyCallBack& aObserver);
          virtual ~CKeyCapturer();
private:
          CKeyCapturer(MKeyCallBack& aObserver);
          void ConstructL();
          void RunL();
          void DoCancel();
          void Listen();
private:
          MKeyCallBack&       iObserver;
          RWsSession          iWsSession;
          RWindowGroup    iWg;
          TInt                           iHandle;
};
If you need to capture keys that are intended for applications like Google Maps or Nokia Maps, where a key held down makes multiple events you might better use this code in the RunL function:
void CKeyCapturer::RunL()
{
          if (iStatus == KErrNone)
          {
                    TWsEvent e;
                    iWsSession.GetEvent(e);                 
 
                    //Only if iRepeats is 0 we should forward the event
                    if(e.Key()->iRepeats == 0 && iObserver.KeyCapturedL(e))
                    {
                               TInt wgId = iWsSession.GetFocusWindowGroup();
                               iWsSession.SendEventToWindowGroup(wgId, e);                           
                    }                  
          }
 
          if (iStatus != KErrCancel)
          {
                    Listen();
          }
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值