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

📄 statuspanecontainer1.h

📁 symbian 状态条
💻 H
字号:
#ifndef __STATUSPANE_CONTAINER1_H__
#define __STATUSPANE_CONTAINER1_H__

// INCLUDES
#include <coecntrl.h>	// CCoeControl

// FORWARD DECLARATIONS
class CEikLabel;

// CLASS DECLARATION

/**
*
* @class	CStatusPaneContainer1 StatusPaneContainer1.h
* @brief	This is a container 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 CStatusPaneContainer1 : public CCoeControl
	{
public: // constructors and destructor

	static CStatusPaneContainer1* NewL(const TRect& aRect);
	static CStatusPaneContainer1* NewLC(const TRect& aRect);
	~CStatusPaneContainer1();

private: // constructor

	void ConstructL(const TRect& aRect);

private: // from CoeControl

	TInt CountComponentControls() const;
	CCoeControl* ComponentControl(TInt aIndex) const;
	void Draw(const TRect& aRect) const;
	void SizeChanged();

private: // data

	CEikLabel* iLabel;
	};

#endif	// __STATUSPANE_CONTAINER1_H__

// End of File

⌨️ 快捷键说明

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