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