📄 lookcontainer.h
字号:
#ifndef __LOOKCONTAINER_H__
#define __LOOKCONTAINER_H__
// INCLUDES
#include <aknview.h>
//add text
#include <eikedwin.h>
class CEikEdwin;
class CEiklabel;
class CLookContainer : public CCoeControl
{
public: // Constructors and destructor
CLookContainer();
virtual ~CLookContainer();
void ConstructL(const TRect& aRect, const TDesC& aName, const TDesC& aContent);
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;
CEikEdwin* m_pLookText;
CEikEdwin* m_pLooktitle;
CEikLabel* m_pLooklabelname;
CEikLabel* m_pLooklabelcontent;
};
#endif // __LookCONTAINER_H__
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -