📄 colorcontainer.h
字号:
#ifndef __ColorCONTAINER_H__
#define __ColorCONTAINER_H__
// INCLUDES
#include <aknview.h>
class CEikLabel;
class CEikEdwin;
class CAknNumericSecretEditor;
class CColorContainer : public CCoeControl
{
public: // Constructors and destructor
CColorContainer();
virtual ~CColorContainer();
void ConstructL(const TRect& aRect);
TKeyResponse OfferKeyEventL( const TKeyEvent& aKeyEvent, TEventCode aType );
private: // Functions from base classes
void SizeChanged();
TInt CountComponentControls() const;
CCoeControl* ComponentControl( TInt aIndex ) const;
void Draw( const TRect& aRect ) const;
public:
void GetEditText(TDes& aDes);
private:
CEikLabel* m_pLabel;
CEikLabel* m_pLabel2;
CEikEdwin* m_pEdwin;
CEikEdwin* m_pEdwin2;
CAknNumericSecretEditor* m_pEdScrect;
TInt m_nDrawEditRectFlag;
};
#endif // __ColorCONTAINER_H__
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -