?? csmsdialog.h
字號:
/* Copyright (c) 2003, Nokia. All rights reserved */
#ifndef __CSMSDIALOG_H__
#define __CSMSDIALOG_H__
// INCLUDES
#include <eikdialg.h>
// CLASS DECLARATION
/**
* CSmsDialog dialog class
*/
class CSmsDialog : public CEikDialog
{
public: // Constructors and destructor
/**
* ~CSmsDialog().
* Destructor.
*/
virtual ~CSmsDialog();
protected: // Functions from base classes
/**
* From CEikDialog, PreLayoutDynInitL.
* Called before a form is drawn.
*/
void PreLayoutDynInitL();
/**
* From CEikDialog, OkToExitL.
* Called by the dialog framework when the user presses
* a button in the button panel.
* @param aButtonId Id of the softkey which was pressed.
* @return ETrue if the dialog can exit, EFalse otherwise.
*/
TBool OkToExitL( TInt aButtonId );
};
#endif // __CSMSDIALOG_H__
// End of File
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -