blueview.h

来自「一个简单的手机读写文件的例子。可以让你轻松学会在SYMBIAN中如何读写文件。」· C头文件 代码 · 共 40 行

H
40
字号
/* 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 + =
减小字号Ctrl + -
显示快捷键?