⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 csmsdialog.h

📁 Symbian 手机发短信程序 smssend-vc
💻 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 + -