?? greenview.h
字號:
/* Copyright (c) 2007, Nokia. All rights reserved */
#ifndef __GreenVIEW_H__
#define __GreenVIEW_H__
#include <aknview.h>
#include <Common.h>
/*!
@class CGreenView
@discussion An instance of this class is the Application View object
for the FreeSMS example application
*/
class CGreenContainer;
class CGreenView : public CAknView,
public MBlueNotify
{
public:
virtual void BlueNotify(TInt aFlag);
//new info
static CGreenView* NewL();
static CGreenView* NewLC();
~CGreenView();
// from CCoeControl
TUid Id() const;
void HandleCommandL(TInt aCommand);
void HandleClientRectChange();
private:
CGreenView();
void ConstructL();
void DoActivateL(const TVwsViewId&,TUid,const TDesC8&);
void DoDeactivate();
private:
CGreenContainer* m_pAppContainer;
};
#endif // __FREESMS_GreenView_H__
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -