00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef __RECCOUNT_CONTAINER_H__
00020 #define __RECCOUNT_CONTAINER_H__
00021
00022
00023
00024
00025 #include <aknview.h>
00026 #include <akndef.h>
00027 #include "WikiDb.h"
00028
00029
00030 class CSearchView;
00031 class CWikiDb;
00032 class CAknsBasicBackgroundControlContext;
00033
00034
00035
00041 class CRecCountContainer : public CCoeControl
00042 {
00043 public:
00044
00052 static CRecCountContainer* NewL( const TRect& aRect, CSearchView& aView );
00053
00061 static CRecCountContainer* NewLC( const TRect& aRect, CSearchView& aView );
00062
00068 void ConstructL( const TRect& aRect );
00069
00074 ~CRecCountContainer();
00075
00076 private:
00077
00082 CRecCountContainer( CSearchView& aView );
00083
00084 public:
00085
00090 void Draw( const TRect& aRect ) const;
00091
00096 TInt CountComponentControls() const;
00097
00103 CCoeControl* ComponentControl( TInt aIndex ) const;
00104
00108 void SizeChanged();
00109
00113 void HandleResourceChange( TInt aType );
00114
00118 TTypeUid::Ptr MopSupplyObject( TTypeUid aId );
00119
00120 public:
00121
00122 void SetTextL( TInt aNumRecords );
00123
00124 private:
00125
00126 HBufC* FormatStringL( const TDesC& aString, const TInt aNumRecords );
00127
00128 public:
00129
00130 CAknsBasicBackgroundControlContext* iBackground;
00131
00132 private:
00133
00137 CSearchView& iView;
00138
00142 CWikiDb& iWikiEngine;
00143
00147 HBufC* iText;
00148 };
00149
00150 #endif // __RECCOUNT_CONTAINER_H__
00151
00152
00153