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

📄 statuspaneview1.h

📁 状态栏示例
💻 H
字号:
#ifndef __STATUSPANE_VIEW1_H__
#define __STATUSPANE_VIEW1_H__

//INCLUDES

// System includes
#include <aknview.h>	// CAknView

// FORWARD DECLARATIONS

class CStatusPaneContainer1;

/**
*
* @class	CStatusPaneView1 StatusPaneView1.h
* @brief	This is a view class for the StatusPane example based on the
* Series 60 view switching architecture.  It allows the user to change
* the visibility of the status pane.
*
* Copyright (c) EMCC Software Ltd 2003
* @version	1.0
*
*/
class CStatusPaneView1: public CAknView
	{
public: // constructors and destructor

	static CStatusPaneView1* NewL();
	static CStatusPaneView1* NewLC();
	~CStatusPaneView1();

private: // from CAknView

	TUid Id() const;
	void HandleCommandL(TInt aCommand);

	void DoActivateL(
		const TVwsViewId& aPrevViewId,
		TUid aCustomMessageId,
		const TDesC8& aCustomMessage);

	void DoDeactivate();

	void HandleStatusPaneSizeChange();

private: // constructors

	void ConstructL();

private: // data

	CStatusPaneContainer1* iContainer; // what this view will display
	TUid iId;
	};

#endif	// __STATUSPANE_VIEW1_H__

// End of File

⌨️ 快捷键说明

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