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


#ifndef __NOTECONTAINER_H__ 
#define __NOTECONTAINER_H__ 
 
// INCLUDES 
#include  
 
class CEikFormattedCellListBox; 
//class COperateInfo; 
 
class CNoteContainer : public CCoeControl 
{ 
public: // Constructors and destructor 
 	CNoteContainer();	 
	virtual ~CNoteContainer(); 
	void ConstructL(const TRect& aRect); 
	TKeyResponse OfferKeyEventL( const TKeyEvent& aKeyEvent, TEventCode aType ); 
 
public: 
	void addInfotolist(const TDesC& aIcon, const TDesC& aName, const TDesC& aContent); 
	void delInfofromlist(); 
	void setCurrentIndex(TInt aIndex); 
	void GetEditinfro(); 
	TInt OptionGetId(); 
	TInt ReturnIndex(); 
private: // Functions from base classes 
    void SizeChanged(); 
    TInt CountComponentControls() const; 
    CCoeControl* ComponentControl( TInt aIndex ) const; 
    void Draw( const TRect& aRect ) const; 
	 
	CEikFormattedCellListBox* m_pNoteLtbox; 
	CDesCArrayFlat* m_pNoteLtboxArray; 
	TInt nIndex; 
	TInt sendIndex; 
//	RArray iNoteArray; 
//	COperateInfo* m_pOperateInfo; 
 
}; 
 
#endif      // __NoteCONTAINER_H__ 
// End of File