richtexteditorappui.h

来自「在syambian s60 3rd上开发的超级计算器 可实现大浮点数的计算」· C头文件 代码 · 共 74 行

H
74
字号
 /*
* ============================================================================
*  Name     : CRTEAppUi from RichTextEditorAppUi.h
*  Part of  : RichTextEditor
*  Created  : 05/08/2006 by Forum Nokia
*  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 RTEAPPUI_H
#define RTEAPPUI_H

// INCLUDES
#include <eikapp.h>
#include <eikdoc.h>
#include <e32std.h>
#include <coeccntx.h>
#include <aknappui.h>
#include <aknnotewrappers.h> 

// FORWARD DECLARATIONS
class CRTEContainer;


// CLASS DECLARATION

/**
* Application UI class.
* Provides support for EIKON control architecture
*
*/
class CRTEAppUi : public CAknAppUi
    {
    public: // // Constructors and destructor

        /**
        * EPOC default constructor.
        */
        void ConstructL();

        /**
        * Destructor.
        */
        ~CRTEAppUi();

        /**
        * HandleResourceChangeL()
        * Called by framework when layout is changed.
        * @param aType the type of resources that have changed
        */
        void HandleResourceChangeL( TInt aType );

    private:
        /**
        * From CEikAppUi, takes care of command handling.
        * @param aCommand command to be handled
        */
        void HandleCommandL(TInt aCommand);

    private: //Data
        CRTEContainer* iAppContainer;

        
    };

#endif

// End of File

⌨️ 快捷键说明

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