csmsdialog.h

来自「可以在symbian S60 3rd手机平台实现短信发送功能」· C头文件 代码 · 共 44 行

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