www.pudn.com > QHelloWorld.rar > HelloWorldView.h


// HelloWorldView.h 
// 
// © Symbian Software Ltd 2005. All rights reserved. 
// 
 
#ifndef HELLOWORLDVIEW_H 
#define HELLOWORLDVIEW_H 
 
#include  
 
/** 
A very simple view that displays the text "Hello world", drawn using the default title  
font supplied by UIQ. It also consist of three commands that will bring up infoprints. 
*/ 
class CHelloWorldView : public CQikViewBase 
	{ 
public: 
	static CHelloWorldView* NewLC(CQikAppUi& aAppUi); 
	~CHelloWorldView(); 
	 
	// from CQikViewBase 
	TVwsViewId ViewId()const; 
	void HandleCommandL(CQikCommand& aCommand); 
	 
protected:  
	// from CQikViewBase 
	void ViewConstructL(); 
	 
private: 
	CHelloWorldView(CQikAppUi& aAppUi); 
	void ConstructL(); 
	}; 
 
#endif // HELLOWORLDVIEW_H