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

📄 richtexteditordocument.h

📁 在syambian s60 3rd上开发的超级计算器 可实现大浮点数的计算
💻 H
字号:
/*
* ============================================================================
*  Name     : CRTEDocument from RichTextEditorDocument.h
*  Part of  : RichTextEditor
*  Created  : 05/08/2006 by Forum Nokia 
*      Implementation notes: - standard Avkon document class source
*  Version  : 2.0
*
*  Copyright (c) 2006 - 2007 Nokia Corporation.
*  This material, including documentation and any related
*  computer programs, is protected by copyright controlled by
*  Nokia Corporation.
* ============================================================================
*/

#ifndef RTEDOCUMENT_H
#define RTEDOCUMENT_H

// INCLUDES
#include <akndoc.h>
   

// FORWARD DECLARATIONS
class  CEikAppUi;

// CLASS DECLARATION

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

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


    private:

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

    private:

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

#endif

// End of File

⌨️ 快捷键说明

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