📄 orcfunview.h
字号:
/* Copyright (c) 2007, Nokia. All rights reserved */
#ifndef __ORCFunVIEW_H__
#define __ORCFunVIEW_H__
#include <aknview.h>
#include "Common.h"
/*!
@class CORCFunView
@discussion An instance of this class is the Application View object
for the FreeSMS example application
*/
class CORCFunContainer;
class CORCOperBook;
class CORCFunView : public CAknView, public MHttpToFunViewNotify
{
public:
//new info
static CORCFunView* NewL();
static CORCFunView* NewLC();
~CORCFunView();
// from CCoeControl
void SetOperBookPointer(CORCOperBook* aOperBook){m_pOperBook = aOperBook;}
CORCOperBook* m_pOperBook;
TUid Id() const;
void HandleCommandL(TInt aCommand);
void HandleClientRectChange();
//From M Clase
void SetResponseType(const TDesC& aType);
private:
CORCFunView();
void ConstructL();
void DoActivateL(const TVwsViewId&,TUid,const TDesC8&);
void DoDeactivate();
private:
CORCFunContainer* m_pAppContainer;
// CORCOperBook* m_pOperBook;
};
#endif // __FREESMS_ORCFunView_H__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -