00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031 #include "ContactsModelDocument.h"
00032 #include "ContactsModelContainer.h"
00033
00034 const TInt KGranularityOfArray = 10;
00035
00036 const TInt KBufferSize = 256;
00037
00038
00039
00040
00041
00042
00043
00044 void CContactsModelContainer::ConstructL(const TRect& aRect, CContactsModelDocument* aDocument)
00045 {
00046 iDocument = aDocument;
00047 CreateWindowL();
00048 SetRect(aRect);
00049
00050
00051 iListBox = new (ELeave) CAknSingleStyleListBox;
00052 iListBox->ConstructL(this, 0);
00053 iListBox->SetContainerWindowL(*this);
00054 iListBox->SetRect(aRect.Size());
00055
00056 iListBoxRows = new (ELeave) CDesCArrayFlat( KGranularityOfArray );
00057 iListBox->Model()->SetItemTextArray( iListBoxRows );
00058 iListBox->Model()->SetOwnershipType(ELbmDoesNotOwnItemArray);
00059
00060 iListBox->ActivateL();
00061 iListBox->CreateScrollBarFrameL(ETrue);
00062 iListBox->ScrollBarFrame()->SetScrollBarVisibilityL(CEikScrollBarFrame::EOn,
00063 CEikScrollBarFrame::EAuto);
00064
00065 ActivateL();
00066 MakeVisible(ETrue);
00067 }
00068
00069
00070 CContactsModelContainer::~CContactsModelContainer()
00071 {
00072 delete iListBox;
00073 iListBox = NULL;
00074
00075 if( iListBoxRows )
00076 {
00077 iListBoxRows->Reset();
00078 }
00079 delete iListBoxRows;
00080 iListBoxRows= NULL;
00081 }
00082
00083
00084
00085
00086
00087
00088 void CContactsModelContainer::SizeChanged()
00089 {
00090 }
00091
00092
00093
00094
00095
00096 TInt CContactsModelContainer::CountComponentControls() const
00097 {
00098 return 1;
00099 }
00100
00101
00102
00103
00104
00105 CCoeControl* CContactsModelContainer::ComponentControl(TInt aIndex) const
00106 {
00107 if( aIndex > 0 )
00108 {
00109 return NULL;
00110 }
00111 return iListBox;
00112 }
00113
00114
00115
00116
00117
00118 void CContactsModelContainer::Draw(const TRect& ) const
00119 {
00120 CWindowGc& gc = SystemGc();
00121 TRect rect = Rect();
00122 gc.Clear(rect);
00123 }
00124
00125
00126
00127
00128
00129
00130 void CContactsModelContainer::HandleControlEventL(
00131 CCoeControl* ,TCoeEvent )
00132 {
00133
00134 }
00135
00136 void CContactsModelContainer::UpdateL()
00137 {
00138 iListBoxRows->Reset();
00139 if( iDocument->ItemCount() > 0 )
00140 {
00141
00142 for( TInt i = 0; i < iDocument->ItemCount(); ++i )
00143 {
00144
00145 HBufC* row = iDocument->GetItemL(i);
00146 CleanupStack::PushL(row);
00147
00148 TBuf<KBufferSize> buf;
00149 buf.Format(_L("\t%S"), row);
00150 iListBoxRows->AppendL(buf);
00151
00152 CleanupStack::PopAndDestroy();
00153 }
00154
00155 iListBox->HandleItemAdditionL();
00156 }
00157 }
00158
00159
00160 TInt CContactsModelContainer::ItemCount()
00161 {
00162 return iDocument->ItemCount();
00163 }
00164
00165 TKeyResponse CContactsModelContainer::OfferKeyEventL(const TKeyEvent& aKeyEvent, TEventCode aType)
00166 {
00167 return iListBox->OfferKeyEventL(aKeyEvent, aType);
00168 }
00169
00170 TInt CContactsModelContainer::GetSelectedItem()
00171 {
00172 return iListBox->CurrentItemIndex();
00173 }
00174
00175