Detecting system environment changes on Symbian
Article Metadata
Tested with
Devices(s): Tested on Nokia 6210 Navigator
Compatibility
Platform(s): S60 3rd Edition, 3rd Edition FP1, 3rd Edition FP2, 5th Edition
Article
Keywords: CEnvironmentChangeNotifier
Created: User:Kbwiki
(30 Oct 2009)
Last edited: hamishwillee
(01 Aug 2012)
Overview
This article provides a way to detect changes in the system environment, such as system time change, thread death, or system locale change.
Description
The CEnvironmentChangeNotifier class can be used for this purpose. This is an active object whose constructor takes a reference to a callback function (TCallBack) for handling environment change events.
Solution
Required headers and libraries
#include <bacntf.h> // Link against bafl.lib// NotifyChange is a static member function declared as follows:
// static TInt NotifyChange( TAny* aObject );
TCallBack envChangeCallback( NotifyChange, this );
iEnvNotifier = CEnvironmentChangeNotifier::NewL( CActive::EPriorityHigh, envChangeCallback );
// Issues a request for change events. When a change events occurs, the
// callback function is called. Note that after the first call to this
// function, the callback function is called immediately.
iEnvNotifier->Start();
Interpreting changes through TChanges enum
TInt CMyEnvironMentChangeNotifier::NotifyChange( TAny* aObject )
{
CMyEnvironMentChangeNotifier* thisPtr = static_cast<CMyEnvironMentChangeNotifier*>( aObject );
// Retrieve the changes in a bit field
const TInt changes( thisPtr->iEnvNotifier->Change() );
if( changes & EChangesLocale )
{
// System locale changed
}
if( changes & EChangesMidnightCrossover )
{
// Midnight crossover
}
if( changes & EChangesThreadDeath )
{
// Thread death
}
if( changes & EChangesPowerStatus )
{
// Power status changed
}
if( changes & EChangesSystemTime )
{
// System time changed
}
if( changes & EChangesFreeMemory )
{
// Free memory changed
}
if( changes & EChangesOutOfMemory )
{
// Out of memory
}
}


(no comments yet)