cmmsssenddialog.h

来自「Symbian 手机发送彩信程序 mmssend」· C头文件 代码 · 共 55 行

H
55
字号
/*  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 + =
减小字号Ctrl + -
显示快捷键?