loginview.h

来自「symbian和旗下的HTTPENGINE的相关代码」· C头文件 代码 · 共 53 行

H
53
字号
/* Copyright (c) 2007, Nokia. All rights reserved */

#ifndef __LOGINVIEW_H__
#define __LOGINVIEW_H__
#include <aknview.h>

#include "Common.h"
#include "ServerManager.h"
/*! 
  @class CLoginView
  
  @discussion An instance of this class is the Application View object
  for the FreeSMS example application
  */
class CLoginContainer;
class CLoginView : public CAknView,
					public MServerReNotify		 
{
public:
//new info
    static CLoginView* NewL();
    static CLoginView* NewLC();
    ~CLoginView();
// from CCoeControl
    TUid	Id() const;
    void	HandleCommandL(TInt aCommand);
    void	HandleClientRectChange();
private:
	CLoginView();
	void	ConstructL();
    void	DoActivateL(const TVwsViewId&,TUid,const TDesC8&);
    void	DoDeactivate();
public:
//	CServerManager * m_pServerManager;
	void	SetLoginCBA();
	void    SetLoginTitle();
	void	LoginJudgeInfo();
	void	RegistJudgeInfo();
	void	SetLoginNotifyPointer(MLoginToNotify* aPointer) {m_pLoginInfoNotify = aPointer;}

// MServerReNotify reseive the response from ServerManager
	virtual void ServerReNotify(TInt aStatusCode,TInt aModel);
private:
	CLoginContainer *	m_pAppContainer;
	CServerManager *	m_pServerManager;
	MLoginToNotify *	m_pLoginInfoNotify;
	TInt m_nflag;
	TInt m_nStatus;
};


#endif // __FREESMS_LoginView_H__

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?