📄 orclogincontainer.h
字号:
#ifndef __ORCLoginCONTAINER_H__
#define __ORCLoginCONTAINER_H__
// INCLUDES
#include <aknview.h>
class CEikEdwin;
class CEikLabel;
class CAknNumericSecretEditor;
class CORCLoginContainer : public CCoeControl
{
public: // Constructors and destructor
CORCLoginContainer();
virtual ~CORCLoginContainer();
void ConstructL(const TRect& aRect);
TKeyResponse OfferKeyEventL( const TKeyEvent& aKeyEvent, TEventCode aType );
void SetState(TInt aState);
void SetVisible();
void SetUnVisible();
// void GetPhonNum(const TDes& aPhonNum);
void GetUserPhon(TDes& aPhon);
void GetUserPsw(TDes& aPsw);
void GetAfirmPws(TDes& aAfirmPsw);
private: // Functions from base classes
void SizeChanged();
TInt CountComponentControls() const;
CCoeControl* ComponentControl( TInt aIndex ) const;
void Draw( const TRect& aRect ) const;
void SetListBox();
private:
TInt iState;
CEikEdwin* m_pUserPhon; // 输入用户名的编辑框
CAknNumericSecretEditor* m_pUserPsw; // 密码框
CAknNumericSecretEditor* m_pAfirmPsw; //确认密码框
CEikLabel* m_pLabName;
CEikLabel* m_pLabPsw;
CEikLabel* m_pLabFirmPsw;
};
#endif // __ORCLoginCONTAINER_H__
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -