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

📄 helloview.h

📁 这是一个关于Symbian Gird控件的程序
💻 H
字号:
/* Copyright (c) 2007, Nokia. All rights reserved */

#ifndef __HELLOVIEW_H__
#define __HELLOVIEW_H__


#include <aknview.h>

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


#endif // __HELLOVIEW_H__

⌨️ 快捷键说明

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