📄 cmmsssenddialog.h
字号:
/* Copyright (c) 2004, Nokia. All rights reserved */
#ifndef __CMMSSDIALOG_H__
#define __CMMSSDIALOG_H__
// INCLUDES
#include <e32base.h>
#include <aknform.h>
#include "mmssend.hrh"
// CLASS DECLARATION
/**
* An instance of a dialog which allows the user to
* enter a recipient address and subject to the message
*/
class CMmssSendDialog : public CAknDialog
{
public: // constructors and destructors
/**
* ~CMmssSendDialog
* Constructor
*/
CMmssSendDialog();
/**
* ~CMmssSendDialog
* Destructor
*/
virtual ~CMmssSendDialog();
/**
* ConstructL
* Perform the second phase construction of a CMmssSendDialog object
*/
void ConstructL();
protected:
/**
* From CAknDialog, OkToExitL
* Handle attempt to dismiss dialog
* @param aKeycode keycode used to close dialog
* @result true if OK to close dialog
*/
TBool OkToExitL( TInt aButtonId );
/**
* From CAknDialog, PreLayoutDynInitL
* Initialise dialog before display
*/
void PreLayoutDynInitL();
};
#endif // __CMMSSDIALOG_H__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -