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

📄 notelistdialog.h

📁 《基于Symbian OS的手机开发与应用实践》这本书的配套源码。
💻 H
字号:
/*
* ============================================================================
*  Name     : CNoteListDialog from SimpleDlgDialog.h
*  Part of  : NoteListDialog
*  Created  : 12.04.2005 by ToBeReplacedByAuthor
*  Description:
*     Declares dialog for application.
*  Version  :
*  Copyright: ToBeReplacedByCopyright
* ============================================================================
*/

#ifndef NOTELISTDIALOG_H
#define NOTELISTDIALOG_H

// INCLUDES
#include <akndialog.h>

// FORWARD DECLARATIONS

// CLASS DECLARATION

/**
* CNoteListDialog dialog class
* 
*/
class CNoteListDialog : public CAknDialog
    {
    public: // Constructors and destructor
        /**
        * Destructor.
        */
        ~CNoteListDialog();
        
        static TInt RunLD();

    public: // New functions

    public: // Functions from base classes
        void ProcessCommandL( TInt aCommandId ) ;

    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: 
        void ShowNoteL();
    };

#endif

// End of File

⌨️ 快捷键说明

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