richtexteditorappui.h

来自「symbian C++ 开发学习的一个很好的例子」· C头文件 代码 · 共 66 行

H
66
字号
 /*
* ============================================================================
*  Name     : CRTEAppUi from RichTextEditorAppUi.h
*  Part of  : RichTextEditor
*  Created  : 05/08/2006 by Forum Nokia 
*  Version  : 2.0
*  Copyright: Forum Nokia
* ============================================================================
*/

#ifndef RTEAPPUI_H
#define RTEAPPUI_H

// INCLUDES
#include <eikapp.h>
#include <eikdoc.h>
#include <e32std.h>
#include <coeccntx.h>
#include <aknappui.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();
        
	  /**
         * HandleStatusPaneSizeChange.
         * Called by framework when the view layout is changed.
         */
        void HandleStatusPaneSizeChange();

    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 + -
显示快捷键?