?? chvappview.h
字號:
/*
* HView [c]2004 Marcin Skoczylas, All rights reserved
*
* This file is under GPL license, see gpl.txt file
*
*/
#ifndef __HVAPPVIEW__
#define __HVAPPVIEW__
#include <aknview.h>
class CHVAppUi;
const TUid KAppViewId = {1};
class CHVContainer;
class CHVAppView : public CAknView
{
public:
CHVAppView();
void ConstructL(CHVAppUi *appUi);
virtual ~CHVAppView();
// from CAknView, Returns the ID of view.
TUid Id() const;
//from CAknView, Handles the commands.
void HandleCommandL(TInt aCommand);
//from CAknView, Handles the clientrect.
void HandleClientRectChange();
private:
//from CAknView, Creates the Container class object.
void DoActivateL(const TVwsViewId& /*aPrevViewId*/,
TUid /*aCustomMessageId*/,
const TDesC8& /*aCustomMessage*/);
//from AknView, Deletes the Container class object.
void DoDeactivate();
void DynInitMenuPaneL(TInt aResourceId,CEikMenuPane* aMenuPane);
public: // Data
CHVContainer *iContainer;
CHVAppUi *appUi;
};
#endif //__HVAPPVIEW__
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -