?? simpledialog.h
字號:
/*
* ============================================================================
* Name : CDlgDialog from DlgDialog.h
* Part of : dlg
* Created : 2006-1-8 by
* Description:
* Declares dialog for application.
* Version :
* Copyright:
* ============================================================================
*/
#ifndef DLGDIALOG_H
#define DLGDIALOG_H
// INCLUDES
#include <akndialog.h>
// FORWARD DECLARATIONS
// CLASS DECLARATION
/**
* CDlgDialog dialog class
*
*/
class CSimpleDialog : public CAknDialog
{
public: // Constructors and destructor
/**
* Destructor.
*/
~CSimpleDialog();
CSimpleDialog();
public: // New functions
static TBool RunDlgLD();
public: // Functions from base classes
protected: // New functions
protected: // Functions from base classes
/**
* From CEikDialog : This is called in CEikDialog::ExecuteLD()
* before a form is drawn.
*/
void PreLayoutDynInitL();
/**
* From CEikDialog : This is called by the dialog framework, returns true if the
* dialog can exit, false otherwise.
*
* @param aButtonId Id of the softkey which was pressed
* @return ETrue if the dialog can exit, false otherwise.
*/
TBool OkToExitL( TInt aButtonId );
private: //data
TBuf<20> iName;
};
#endif
// End of File
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -