本文整理汇总了C++中CEikLabel::SetAlignment方法的典型用法代码示例。如果您正苦于以下问题:C++ CEikLabel::SetAlignment方法的具体用法?C++ CEikLabel::SetAlignment怎么用?C++ CEikLabel::SetAlignment使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CEikLabel
的用法示例。
在下文中一共展示了CEikLabel::SetAlignment方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: ConstructL
void CRecognizerContainer::ConstructL(const TRect& aRect, CAknView* View, TBool navi)
{
CALLSTACKITEM_N(_CL("CRecognizerContainer"), _CL("ConstructL"));
iView=View;
iNavi=navi;
iCurrentCodeArray=new RPointerArray<CCodeInfo>;
iScreenMsgBuf = CEikonEnv::Static()->AllocReadResourceL(R_CODE_SCREEN_MSG);
if (iNavi) {
CEikStatusPane* sp=iEikonEnv->AppUiFactory()->StatusPane();
CAknNavigationControlContainer *np = (CAknNavigationControlContainer *)sp->ControlL(TUid::Uid(EEikStatusPaneUidNavi));
CLocalNotifyWindow* tp=CLocalNotifyWindow::Global();
np->PushDefaultL(ETrue);
HBufC * t = iEikonEnv->AllocReadResourceL(R_CHOOSE_CODE);
tp->SetTitleText(t);
} else {
// CEikStatusPane* sp=iEikonEnv->AppUiFactory()->StatusPane();
CLocalNotifyWindow* tp=CLocalNotifyWindow::Global();
tp->SetTitleTextToDefaultL();
}
CreateWindowL();
iStandByLabel = new (ELeave) CEikLabel;
iStandByLabel->SetContainerWindowL(*this);
iStandByLabel->SetTextL(_L("Camera Standby\nClick to resume"));
iStandByLabel->SetAlignment(TGulAlignment(EHCenterVCenter));
iStandByLabel->SetExtent(TPoint(0,0), TSize(176,144));
SetRect(aRect);
ActivateL();
}