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

📄 helpview.h

📁 symbian和旗下的HTTPENGINE的相关代码
💻 H
字号:
/* 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -