⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 waitdialog.cpp

📁 Symbian OS C++ for Mobile Phones Volume 3 源码
💻 CPP
字号:

#include "oandxcontroller.h"


CWaitDialog::CWaitDialog(const TDesC& aBodyText)
/**
	Record text to display in dialog.

	@param	aBodyText		Text to display in wait dialog label.
							The caller must maintain this text for the dialog's
							lifetime.
 */
:	iBodyText(aBodyText)
	{
	// empty.
	}

void CWaitDialog::PreLayoutDynInitL()
/**
	Override CEikDialog by setting the label text to that
	which was supplied to the constructor.
 */
	{
	CEikLabel* plb = static_cast<CEikLabel*>(Control(EWaitDlgCtIdLabel));
	plb->SetTextL(iBodyText);
	}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -