How to make narrow status pane in S60 3rd same as in "Menu" application (desktop) or web browser?
How to make narrow status pane in S60 3rd same as in "Menu" application (desktop) or web browser?
hi, You can create similar thin panel using the following code:
1)
if you are inside AppUi derived class
CEikStatusPane* sPane = StatusPane();
2) from another place
CEikStatusPane* sPane =
STATIC_CAST( CHelloWorldBasicAppUi* ,
(CEikonEnv::Static()->AppUi()) )->StatusPane() ;
if( sPane )
{
sPane->SwitchLayoutL( R_AVKON_STATUS_PANE_LAYOUT_SMALL );
}
replace CHelloWorldBasicAppUi to your AppUi derived class name