📄 dirscraccview2.h
字号:
/*
* ============================================================================
* Name : CDirScrAccView2 from DirScrAccView2.h
* Part of : DirScrAcc
* Created : 20.11.2002 by Forum Nokia
* Description:
* Declares view 2 for application.
* Version : 1.0
* Copyright: Nokia Corporation
* ============================================================================
*/
#ifndef DIRSCRACCVIEW2_H
#define DIRSCRACCVIEW2_H
// INCLUDES
#include <aknview.h>
// CONSTANTS
// UID of view
const TUid KView2Id = {2};
// FORWARD DECLARATIONS
class CDirScrAccContainer2;
// CLASS DECLARATION
/**
* CDirScrAccView2 view class.
*
*/
class CDirScrAccView2 : public CAknView
{
public: // Constructors and destructor
/**
* Symbian default constructor.
*/
void ConstructL();
/**
* Destructor.
*/
~CDirScrAccView2();
public: // Functions from base classes
/**
* Return Uid
*/
TUid Id() const;
/**
* Handle Commands
*/
void HandleCommandL(TInt aCommand);
/**
* Handle size change
*/
void HandleClientRectChange();
private:
/**
* From AknView, activates view
*/
void DoActivateL(const TVwsViewId& aPrevViewId,TUid aCustomMessageId,
const TDesC8& aCustomMessage);
/**
* From AknView, deactivates view
*/
void DoDeactivate();
private: // Data
CDirScrAccContainer2* iContainer;
};
#endif
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -