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