📄 indicatoriconexview2.h
字号:
/*
============================================================================
Name : CIndicatorIconExView2 from IndicatorIconExView2.h
Author :
Version :
Copyright : Copyright (c) 1999 - 2006 Vinsofts Inc.
(http://cc.1asphost.com/vinsofts/)
Description : Declares view for application.
============================================================================
*/
#ifndef INDICATORICONEXVIEW2_H
#define INDICATORICONEXVIEW2_H
// INCLUDES
#include <aknview.h>
// CONSTANTS
// UID of view
const TUid KView2Id = {2};
// FORWARD DECLARATIONS
class CIndicatorIconExContainer2;
// CLASS DECLARATION
/**
* CIndicatorIconExView2 view class.
*
*/
class CIndicatorIconExView2 : public CAknView
{
public: // Constructors and destructor
/**
* EPOC default constructor.
*/
void ConstructL();
/**
* Destructor.
*/
~CIndicatorIconExView2();
public: // Functions from base classes
/**
* From CAknView returns Uid of View
* @return TUid uid of the view
*/
TUid Id() const;
/**
* From MEikMenuObserver delegate commands from the menu
* @param aCommand a command emitted by the menu
* @return void
*/
void HandleCommandL(TInt aCommand);
/**
* From CAknView reaction if size change
* @return void
*/
void HandleClientRectChange();
private:
/**
* From CAknView activate the view
* @param aPrevViewId
* @param aCustomMessageId
* @param aCustomMessage
* @return void
*/
void DoActivateL(const TVwsViewId& aPrevViewId,TUid aCustomMessageId,
const TDesC8& aCustomMessage);
/**
* From CAknView deactivate the view (free resources)
* @return void
*/
void DoDeactivate();
private: // Data
CIndicatorIconExContainer2* iContainer;
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -