Namespaces
Variants
Actions

Getting notifications of focus change and launch of other apps using Symbian C++

Jump to: navigation, search
Article Metadata

Compatibility
Platform(s): S60 3rd Edition

Article
Created: User:Technical writer 1 (26 Sep 2007)
Last edited: ashraf fawzy (25 Jul 2012)

Description

Sometimes applications need to get notifications about the change of the application in focus or launching of another application.


Solution

The notifications can be enabled using the following code:

In the constructL of the AppUi, add the following lines:

//To get notifications about Focus change events
iCoeEnv->RootWin().EnableFocusChangeEvents();
//To get notifications about launching of other applications
iCoeEnv->RootWin().EnableGroupChangeEvents();


After these functions are called, the events are delivered to the window server every time the particular event occurs. The code to handle the notifications is as follows:

  void CMyAppUi::HandleWsEventL( const TWsEvent& aEvent,  
CCoeControl* aDestination )
{
if(aEvent.Type() == EEventFocusGroupChanged)
{
//Focus change event
//Handling to be done here
}
else if(aEvent.Type() == EEventWindowGroupsChanged)
{
//Group change event (launching of other applications)
//Handling to be done here
}
CAknAppUi::HandleWsEventL(aEvent,aDestination);
}
This page was last modified on 25 July 2012, at 16:52.
86 page views in the last 30 days.
Nokia Developer aims to help you create apps and publish them so you can connect with users around the world.

京ICP备05048969号  © Copyright Nokia 2013 All rights reserved