📄 richtexteditorappui.h
字号:
/*
* ============================================================================
* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -