📄 aknexeditorview1.h
字号:
/* Copyright (c) 2004, Nokia. All rights reserved */
#ifndef __AKNEXEDITORVIEW1_H__
#define __AKNEXEDITORVIEW1_H__
// INCLUDES
#include <aknview.h>
// CONSTANTS
// UID of view
const TUid KViewId1 = {1};
// FORWARD DECLARATIONS
class CAknExEditorContainer1;
// CLASS DECLARATION
/**
* CAknExEditorView1 view class.
*/
class CAknExEditorView1 : public CAknView
{
public: // Constructors and destructor
/**
* CAknExEditorView1
* C++ default constructor
*/
CAknExEditorView1();
/**
* ConstructL
* Symbian default constructor.
*/
void ConstructL();
/**
* ~CAknExEditorView1
* Destructor.
*/
virtual ~CAknExEditorView1();
public: // Functions from base classes
/**
* Id
* From CAknView, Returns the ID of view.
* @return Returns the ID of view.
*/
TUid Id() const;
/**
* HandleCommandL
* From CAknView, Handles the commands.
* @pram aCommand Command to be handled.
*/
void HandleCommandL( TInt aCommand );
/**
* HandleClientRectChange
* From CAknView, Handles the clientrect.
*/
void HandleClientRectChange();
private:
/**
* DoActivateL
* From CAknView, Creates the Container class object.
* @param aPrevViewId This is not used now.
* @param aCustomMessage This is not used now.
* @param aCustomMessage This is not used now.
*/
void DoActivateL( const TVwsViewId& /*aPrevViewId*/,
TUid /*aCustomMessageId*/,
const TDesC8& /*aCustomMessage*/ );
/**
* DoDeactivate
* From AknView, Deletes the Container class object.
*/
void DoDeactivate();
private: // Data
/**
* iContainer, container class.
* Owned by CAknExEditorView1 object.
*/
CAknExEditorContainer1* iContainer;
};
#endif // __AKNEXEDITORVIEW1_H__
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -