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

📄 dialerdocument.h

📁 symbian 的打电话程序 可以实现安装sis
💻 H
字号:
/* Copyright (c) 2004, Nokia. All rights reserved */


#ifndef __DIALERDOCUMENT_H__
#define __DIALERDOCUMENT_H__

// INCLUDES
#include <eikdoc.h>

// FORWARD DECLARATIONS
class CDialerAppUi;
class CEikApplication;

// CLASS DECLARATIONS
/**
*  CDialerDocument
*  An instance of class CDialerDocument is the Document part of the AVKON
*  application framework for the Dialer example application
*/
class CDialerDocument : public CEikDocument
    {
    public: // Constructors and Destructors

        /**
        * NewL()
        * Construct a CDialerDocument for the AVKON application aApp 
        * using two phase construction, and return a pointer to 
        * the created object
        * @param aApp application creating this document
        * @return a pointer to the created instance of CDialerDocument
        */
        static CDialerDocument* NewL( CEikApplication& aApp );

        /**
        * NewLC()
        * Construct a CDialerDocument for the AVKON application aApp 
        * using two phase construction, and return a pointer to 
        * the created object
        * @param aApp application creating this document
        * @return a pointer to the created instance of CDialerDocument
        */
        static CDialerDocument* NewLC( CEikApplication& aApp );

        /**
        * ~CDialerDocument()
        * Destroy the object and release all memory objects
        */
        virtual ~CDialerDocument();

    private:    // Constructors

        /**
        * ConstructL()
        * Perform the second phase construction of a CDialerDocument object
        */
        void ConstructL();

        /**
        * CDialerDocument()
        * Perform the first phase of two phase construction 
        * @param aApp application creating this document
        */
        CDialerDocument( CEikApplication& aApp );

        /**
        * CreateAppUiL ()
        * Create a CDialerAppUi object and return a pointer to it
        * @return a pointer to the created instance of the AppUi created
        */
        CEikAppUi* CreateAppUiL();
    };


#endif // __DIALERDOCUMENT_H__


// End of File

⌨️ 快捷键说明

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