Hello,
I managed to change the StatusPane using this methods :
//CODE
CEikStatusPane * sp = StatusPane();
CFbsBitmap * Bitmap;
CFbsBitmap * BitmapM;
CAknContextPane * ContextPane;
Bitmap = iEikonEnv->CreateBitmapL( KPathImages, EMbmMyAppIcone); BitmapM = iEikonEnv->CreateBitmapL( KPathImages, EMbmMyAppIcone_mask );
ContextPane = ( CAknContextPane * ) sp->ControlL( TUid::Uid( EEikStatusPaneUidContext ) );
ContextPane->SetPicture( Bitmap, BitmapM );
Bitmap = NULL;
BitmapM = NULL;
ContextPane = NULL;
//END OF CODE
However I would like to know how to change it back to its default (I mean back to the one defined in RESOURCE EIK_APP_INFO).
Thany you very much.
Bernie

Reply With Quote

