Namespaces
Variants
Actions

Detecting Focus Change

Jump to: navigation, search
Article Metadata

Article
Created: giridharn (24 May 2007)
Last edited: hamishwillee (30 May 2013)

The S60 framework will notify an application when it gains or loses the keyboard focus through a call to CAknAppUi::HandleForegroundEventL( TBool aForeground ) function. The aForeground parameter is true if the application has gained keyboard focus, false if it has lost it.

This function can be reimplemented whenever an application needs to react to focus change events. However, the base class should be called in order not to disrupt framework's event handling.

For example:

void CMyAppUi::HandleForegroundEventL( TBool aForeground )
{
// Call base class implementation
CAknAppUi::HandleForegroundEventL( aForeground );
 
if( aForeground )
{
// We have gained the focus
...
}
else
{
// We have lost the focus
...
}
}

See also

Alternative method using {{{1}}}.

This page was last modified on 30 May 2013, at 07:33.
94 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