lark_rtptdialog.h

来自「symbian平台S60_2nd_FP2_SC rtp实现」· C头文件 代码 · 共 64 行

H
64
字号
/*
* ============================================================================
*  Name     : CLark_RtpTDialog from Lark_RtpTDialog.h
*  Part of  : Lark_RtpT
*  Created  : 08.10.2007 by 
*  Description:
*     Declares dialog for application.
*  Version  :
*  Copyright: 
* ============================================================================
*/

#ifndef LARK_RTPTDIALOG_H
#define LARK_RTPTDIALOG_H

// INCLUDES
#include <eikdialg.h>

// FORWARD DECLARATIONS

// CLASS DECLARATION

/**
* CLark_RtpTDialog dialog class
* 
*/
class CLark_RtpTDialog : public CEikDialog
    {
    public: // Constructors and destructor
		/**
		* Destructor.
		*/
		~CLark_RtpTDialog();

    public: // New functions

    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
    };

#endif

// End of File

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?