00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef __AKNLISTBOXSETTINGPAGE_H__
00022 #define __AKNLISTBOXSETTINGPAGE_H__
00023
00024 #include <aknsettingpage.h>
00025
00026 #include <aknutils.h>
00027 #include <eikslb.h>
00028 #include <eiklbo.h>
00029 #include <eiklbx.h>
00030 #include <eikclb.h>
00031 #include <eikclbd.h>
00032 #include <eiktxlbm.h>
00033 #include <coecobs.h>
00034 #include <aknlists.h>
00035
00044 class CAknListBoxSettingPage : public CAknSettingPage, public MEikListBoxObserver
00045 {
00046
00047 public:
00052 virtual CAknSetStyleListBox* ListBoxControl() const = 0;
00053
00057 IMPORT_C virtual void HandleListBoxEventL(CEikListBox* aListBox, TListBoxEvent aEventType);
00058
00059 protected:
00060
00066 CAknListBoxSettingPage( TInt aSettingPageResourceId );
00067
00097 CAknListBoxSettingPage( const TDesC* aSettingTitleText,
00098 TInt aSettingNumber,
00099 TInt aControlType,
00100 TInt aEditorResourceId,
00101 TInt aSettingPageResourceId = 0 );
00102
00103
00109 IMPORT_C void CheckAndSetDataValidity();
00110
00114 IMPORT_C void UpdateCbaL();
00115
00116
00122 IMPORT_C void SizeChanged();
00123
00130 IMPORT_C void Draw(const TRect& aRect) const;
00131
00132
00133
00134
00135
00142 static TBool FocusToSelectedItem();
00143
00150 static TBool FocusToFirstItem();
00151
00152
00159 public:
00160 static void CreateIconAndAddToArrayL( CArrayPtr<CGulIcon>*& aIconArray,
00161 const TAknsItemID& aId,
00162 const TInt aColorIndex,
00163 const TDesC& aBmpFile,
00164 const TInt32 aBmp,
00165 const TInt32 aBmpM );
00166
00167 private:
00170 IMPORT_C virtual void CAknListBoxSettingPage_Reserved_1();
00171
00172 protected:
00173
00178 TAknLayoutRect iAreaExtension;
00179 };
00180
00181 #endif