testusernamedialog.h
来自「symbianOS第三版开发与实用教程部分源码和部分试验」· C头文件 代码 · 共 32 行
H
32 行
#ifndef TESTUSERNAMEDIALOG_H_
#define TESTUSERNAMEDIALOG_H_
#include <akndialog.h>
class CTestUserNameDialog : public CAknDialog
{
public: // static construction and execution
static TBool RunDlgLD (TDes& aPlayerName);
protected: // from CAknDialog
TBool OkToExitL(TInt aButtonId);
protected: // from CEikDialog
void PreLayoutDynInitL();
private: // Constructor
CTestUserNameDialog(TDes& aPlayerName) : iPlayerName(aPlayerName){};
private: // data
TDes& iPlayerName;
};
#endif /*TESTUSERNAMEDIALOG_H_*/
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?