helpview.h

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

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

#ifndef __HELPVIEW_H__
#define __HELPVIEW_H__


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


#endif // __FREESMS_HelpView_H__

⌨️ 快捷键说明

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