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

📄 rtxdocument.h

📁 显示彩色字体的程序
💻 H
字号:
/*
* ============================================================================
*  Name     : CRTxDocument from RTxDocument.h
*  Part of  : RTx
*  Created  : 2003. 08. 15. by (V) - Forum Nokia 
*  Description:
*     Declares document for application.
*  Version  :
*  Copyright: Forum Nokia
* ============================================================================
*/

#ifndef RTXDOCUMENT_H
#define RTXDOCUMENT_H

// INCLUDES
#include <akndoc.h>
   

// FORWARD DECLARATIONS
class  CEikAppUi;

// CLASS DECLARATION

/**
*  CRTxDocument application class.
*/
class CRTxDocument : public CAknDocument
    {
    public: // Constructors and destructor
        /**
        * Two-phased constructor.
        */
        static CRTxDocument* NewL(CEikApplication& aApp);

        /**
        * Destructor.
        */
        virtual ~CRTxDocument();


    private:

        /**
        * EPOC default constructor.
        */
        CRTxDocument(CEikApplication& aApp);
        void ConstructL();

    private:

        /**
        * From CEikDocument, create CRTxAppUi "App UI" object.
        */
        CEikAppUi* CreateAppUiL();
    };

#endif

// End of File

⌨️ 快捷键说明

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