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


#ifndef __HELPCONTAINER_H__ 
#define __HELPCONTAINER_H__ 
 
// INCLUDES 
#include  
#include  // CCoeControl 
#include  // TCharFormatMask 
 
class CRichTextEditorRichTextEditor; 
class CHelpContainer : public CCoeControl 
{ 
public: // Constructors and destructor 
 	CHelpContainer();	 
//	virtual ~CHelpContainer(); 
	void ConstructL(const TRect& aRect); 
	TKeyResponse OfferKeyEventL( const TKeyEvent& aKeyEvent, TEventCode aType ); 
 
public: // Constructors and destructor 
 
	static CHelpContainer* NewL(const TRect& aRect); 
	static CHelpContainer* NewLC(const TRect& aRect); 
	~CHelpContainer(); 
 
private: // Functions from base classes 
    void SizeChanged(); 
    TInt CountComponentControls() const; 
    CCoeControl* ComponentControl( TInt aIndex ) const; 
    void Draw( const TRect& aRect ) const; 
 
	//	TKeyResponse OfferKeyEventL(const TKeyEvent& aKeyEvent,TEventCode aType); 
private: // members 
 
	void AddTextToEditorL(); 
 
private: //data 
 
	CRichTextEditorRichTextEditor* iEditor; 
}; 
 
#endif      // __HelpCONTAINER_H__ 
// End of File