How to enable navigation arrows

来源:互联网 发布:网络摄像机监控方案 编辑:程序博客网 时间:2024/04/30 23:13

We may need to show the navigation arrows in the status pane. This can be done using the following code snippet :

 

CAknNavigationDecorator* iNaviLabel;
CAknNavigationControlContainer* iNaviContainer; 
CEikStatusPane* sp=(STATIC_CAST(CAknAppUi*,iEikonEnv->EikAppUi()))->StatusPane();
iNaviContainer =(STATIC_CAST(CAknNavigationControlContainer*
sp->ControlL(TUid::Uid(EEikStatusPaneUidNavi))));
 
if ( iNaviLabel )
{
iNaviLabel = NULL;
}
 
iNaviLabel = iNaviContainer->CreateNavigationLabelL( _L("label") );
iNaviLabel->MakeScrollButtonVisible(ETrue);
// Activate navi label so that it becomes visible and active
iNaviContainer->PushL( *iNaviLabel );
 
TBool isVisible =iNaviLabel->ScrollButtonVisible();
 
iNaviLabel->SetScrollButtonDimmed(CAknNavigationDecorator::ELeftButton, EFalse);
iNaviLabel->SetScrollButtonDimmed(CAknNavigationDecorator::ERightButton,EFalse);

原创粉丝点击