Update contrib.
1 // Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
17 #include "testlistcontainer.h"
18 #include "testlistengine.h"
19 #include "testlauncher.hrh"
21 #include <testlauncher.rsg>
26 void CFileListContainer::ConstructL(const TRect& aRect)
30 iListBox = new (ELeave) CAknDoubleNumberStyleListBox;
31 iListBox->SetContainerWindowL(*this);
32 iListBox->ConstructL(this, EAknListBoxMarkableList);
34 // Create the scroll indicator
35 iListBox->CreateScrollBarFrameL(ETrue);
36 iListBox->ScrollBarFrame()
37 ->SetScrollBarVisibilityL(CEikScrollBarFrame::EOff, CEikScrollBarFrame::EAuto);
39 iListBox->Model()->SetOwnershipType(ELbmOwnsItemArray);
40 iListBox->ActivateL();
42 // Create the FileListEngine
43 iAppEngine = new (ELeave) CFileListEngine;
45 #ifdef __SERIES60_3X__
46 iAppEngine->ConstructL();
48 iAppEngine->ConstructL((CEikProcess*)(((CEikAppUi*)iCoeEnv->AppUi())->Application()->Process()));
51 SetFileListL(EFileListPictures, EFileListDate);
57 CFileListContainer::~CFileListContainer()
65 // This will set up filelist.
66 // Directory and Size can be changed. See Filelist.hrh for possible values
67 // This function is located in the container and not in the engine, because it
68 // activates the listbox.
69 void CFileListContainer::SetFileListL(TInt aDirectory, TInt aSizeDate)
71 // Set the listbox to use the file list model
72 CDesCArray* items = static_cast<CDesCArray*>(iListBox->Model()->ItemTextArray());
74 // If there are items, they will be removed here
75 if (iAppEngine->RemoveItems(items))
77 // This makes changes to the actual listbox
78 iListBox->HandleItemRemovalL();
81 // Let's show directory
82 iAppEngine->SetDirectory(aDirectory);
83 // Let's decide whether to show file size or modification date
84 iAppEngine->SetSizeDate(aSizeDate);
85 // Do preparations for the FileList
86 if(iAppEngine->StartFileList() == KErrNone)
88 // Create FileList Items in the ListBox
89 iAppEngine->GetFileListItemsL(items);
91 // Close FileList session
92 iAppEngine->EndFileList();
94 // Refresh the listbox due to model change
95 iListBox->HandleItemAdditionL();
96 iListBox->SetCurrentItemIndex(0);
98 // Set correct middle softkey
99 CEikButtonGroupContainer * cbaGroup = iEikonEnv->AppUiFactory()->Cba();
100 if (iAppEngine->IsDirListEmpty())
102 // Don't use middle softkey at all
103 cbaGroup->SetCommandSetL(R_AVKON_SOFTKEYS_OPTIONS_EXIT);
109 // Called by framework when the view size is changed
110 void CFileListContainer::SizeChanged()
114 iListBox->SetExtent(TPoint(0,0),rect.Size());
117 // Called by framework when a key is pressed
118 TKeyResponse CFileListContainer::OfferKeyEventL(const TKeyEvent& aKeyEvent,TEventCode aType)
122 // See if we have a selection
123 TInt code = aKeyEvent.iCode;
126 // is navigator button pressed
128 iAppEngine->LaunchCurrentL(iListBox->CurrentItemIndex());
129 ret = EKeyWasConsumed;
133 // Let Listbox take care of its key handling
134 ret = iListBox->OfferKeyEventL(aKeyEvent, aType);
140 void CFileListContainer::LaunchCurrentL()
142 iAppEngine->LaunchCurrentL(iListBox->CurrentItemIndex());
145 TInt CFileListContainer::CountComponentControls() const
149 CCoeControl* CFileListContainer::ComponentControl(TInt aIndex) const
160 void CFileListContainer::Draw(const TRect& aRect) const
162 CWindowGc& gc = SystemGc();
164 gc.SetPenStyle(CGraphicsContext::ENullPen);
165 gc.SetBrushColor(KRgbGray);
166 gc.SetBrushStyle(CGraphicsContext::ESolidBrush);
170 void CFileListContainer::HandleControlEventL(CCoeControl* /*aControl*/, TCoeEvent /*aEventType*/)