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

📄 aknexnotedocument.h

📁 symbian ui的 例子 初学者可以 好好看看,这个是培训的资料,应该比较宝贵
💻 H
字号:
/*
* ==============================================================================
*  Name        : aknexnotedocument.h
*  Part of     : Note example
*  Interface   :
*  Description :
*  Version     :
*
*  Copyright (c) 2004 - 2006 Nokia Corporation.
*  This material, including documentation and any related
*  computer programs, is protected by copyright controlled by
*  Nokia Corporation.
* ==============================================================================
*/

#ifndef __AKNEXNOTEDOCUMENT_H__
#define __AKNEXNOTEDOCUMENT_H__


// INCLUDES
#include <eikdoc.h>



// FORWARD DECLARATIONS
class  CEikAppUi;

// CLASS DECLARATION

/**
*  CAknExNoteDocument application class.
*/
class CAknExNoteDocument : public CEikDocument
    {
    public: // Constructors and destructor

        /**
        * NewL.
        * Two-phased constructor.
        * Construct a CAknExNoteDocument for the AVKON application aApp.
        * Using two phase construction,and return a pointer 
        * to the created object.
        * @param aApp Reference to Application class object.
        * @return Pointer to created Document class object.
        */
        static CAknExNoteDocument* NewL( CEikApplication& aApp );

        /**
        * ~CAknExNoteDocument.
        * Virtual Destructor.
        */
        virtual ~CAknExNoteDocument();

    private: // Constructors

        /**
        * CAknExNoteDocument.
        * C++ default constructor.
        * @param aApp Reference to Application class object.
        */
        CAknExNoteDocument( CEikApplication& aApp );

    private: // From CEikDocument

        /**
        * CreateAppUiL
        * Create CAknExNoteAppUi "App UI" object.
        * @return Pointer to created AppUi class object.
        */
        CEikAppUi* CreateAppUiL();

    };

#endif  //__AKNEXNOTEDOCUMENT_H__

// End of File

⌨️ 快捷键说明

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