?? statuspanecontainer1.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
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -