Join Now
Quality Rating:
  • Currently 0.0 / 5
(0.0 / 5 - 0 votes cast)
Expertise Level:
  • Currently 0.0 / 5
(0.0 / 5 - 0 votes cast)

This page was last modified 08:36, 26 November 2007.

Capturing all keys in Non-GUI applications

From Forum Nokia Wiki


CKeyCapturer2 illustrates how to capture all keys inside an application that doesn't implement the standard application frameworks and thus can't use the normal means on getting key events. If you want to capture keys in an application that implements the normal application framework, you can utilize the standard OfferKeyEventL() method implemented in your CCoeControl derived class.

This example implementation makes a window that takes focus and thus gets all key events as any other application taking focus would. Also since it is taking focus, other applications are not receiving any key input. If you just want to capture a few HW keys and let other applications still receive key events you might be better off using the CKeyCapturer implementation.


CapturingKeys2.cpp

CKeyCapturer2* CKeyCapturer2::NewL(MKeyCallBack& aObserver)
	{
	CKeyCapturer2* self = CKeyCapturer2::NewLC(aObserver);
	CleanupStack::Pop(self);
	return self;
	}
 
CKeyCapturer2* CKeyCapturer2::NewLC(MKeyCallBack& aObserver)
	{
	CKeyCapturer2* self = new (ELeave) CKeyCapturer2(aObserver);
	CleanupStack::PushL(self);
	self->ConstructL();
	return self;
	}
 
 
CKeyCapturer2::CKeyCapturer2(MKeyCallBack& aObserver)
:CActive(EPriorityHigh),iObserver(aObserver)
{
	
}
 
CKeyCapturer2::~CKeyCapturer2()
{
	Cancel();
	iWg.Close();
	iWsSession.Close();
}
 
void CKeyCapturer2::ConstructL()
{
	User::LeaveIfError(iWsSession.Connect());
 
	CActiveScheduler::Add(this);
 
	iWg=RWindowGroup(iWsSession);
	User::LeaveIfError(iWg.Construct((TUint32)&iWg, EFalse));
	
	iWg.SetOrdinalPosition(1, ECoeWinPriorityAlwaysAtFront+2);
	iWg.EnableReceiptOfFocus(ETrue);
 
	CApaWindowGroupName* wn=CApaWindowGroupName::NewLC(iWsSession);
	wn->SetHidden(EFalse);
	wn->SetWindowGroupName(iWg);
	CleanupStack::PopAndDestroy();
 
	Listen();
}
 
void CKeyCapturer2::RunL()
{
	if (iStatus == KErrNone) 
	{
		TWsEvent e;
		iWsSession.GetEvent(e);
		TInt type = e.Type();
 
		switch (type)
		{
		case EEventKey:	
			if(iObserver.KeyCapturedL(e))
			{
				TInt wgId = iWsSession.GetFocusWindowGroup();
				iWsSession.SendEventToWindowGroup(wgId, e);
			}
			break;
		case EEventKeyUp:
		case EEventKeyDown:
			break;
		};
	}
	
	if (iStatus != KErrCancel) 
	{
		Listen();
	}
}
 
void CKeyCapturer2::DoCancel()
{
	iWsSession.EventReadyCancel();
}
 
 
void CKeyCapturer2::Listen()
{
	iWsSession.EventReady(&iStatus);
	SetActive();
}

CapturingKeys2.h

class MKeyCallBack 
{
public:
	virtual TBool KeyCapturedL(TWsEvent aEvent) = 0;
};
 
 
 
class CKeyCapturer2 : public CActive 
{
public:
	static CKeyCapturer2* NewL(MKeyCallBack& aObserver);
	static CKeyCapturer2* NewLC(MKeyCallBack& aObserver);
	virtual ~CKeyCapturer2();
private:
	CKeyCapturer2(MKeyCallBack& aObserver);
	void ConstructL();
	void RunL();
	void DoCancel();
	void Listen();
private:
	MKeyCallBack& 	iObserver;
	RWsSession     	iWsSession;
	RWindowGroup    iWg; 
};
Related Discussions
Thread Thread Starter Forum Replies Last Post
CodeWarrior 3.0 Registration and keys bmanuel79 Carbide.c++ and CodeWarrior Tools 4 2005-04-18 19:47
How to debug exe ( non - gui ) in 9.1 3rd edition. vasant21 General Symbian C++ 4 2006-08-07 07:34
How to get secure-element keys of 6131 (without using unlocking midlet) esunilkumare Near Field Communication 1 2008-02-13 13:51
Compound control Hayohayo Symbian User Interface 7 2007-07-23 12:27
Using Active Object? xcompass General Symbian C++ 9 2007-06-29 12:30
 
Powered by MediaWiki
     
     RDF Facets:
     
     
     qfnZtypeQUqfnTypeZCommunityContentQ
     qfnZtypeQUqfnTypeZWebpageQ
     qfnZtypeQUqfnTypeZWikiContentQ
     qmarsZlanguageQUxhttpE3aE2fE2fswE2enokiaE2ecomE2flanguageE2d1E2fenX