www.pudn.com > LDFUCK.rar > LookContainer.h


#ifndef __LOOKCONTAINER_H__ 
#define __LOOKCONTAINER_H__ 
 
// INCLUDES 
#include  
//add text 
#include  
 
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