⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 yellowview.h

📁 一个简单的手机读写文件的例子。可以让你轻松学会在SYMBIAN中如何读写文件。
💻 H
字号:
/* Copyright (c) 2007, Nokia. All rights reserved */

#ifndef __YellowVIEW_H__
#define __YellowVIEW_H__


#include <aknview.h>

/*! 
  @class CYellowView
  
  @discussion An instance of this class is the Application View object
  for the FreeSMS example application
  */
class CYellowContainer;
class CYellowView : public CAknView			 
{
public:
//new info
    static CYellowView* NewL();
    static CYellowView* NewLC();
    ~CYellowView();
// from CCoeControl
    TUid	Id() const;
    void	HandleCommandL(TInt aCommand);
    void	HandleClientRectChange();
private:
	CYellowView();
	void	ConstructL();
    void	DoActivateL(const TVwsViewId&,TUid,const TDesC8&);
    void	DoDeactivate();
private:
	CYellowContainer*	m_pAppContainer;
};


#endif // __FREESMS_YellowView_H__

⌨️ 快捷键说明

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