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.
16 #ifndef FILELISTCONTAINER_H
17 #define FILELISTCONTAINER_H
20 #include "testlistengine.h"
24 #include <eiklbx.h> // For Listbox
28 * CFileListContainer container control class.
31 class CFileListContainer : public CCoeControl, MCoeControlObserver
35 * Symbian default constructor.
36 * @param aRect Frame rectangle for container.
38 void ConstructL(const TRect& aRect);
40 virtual ~CFileListContainer();
41 void SetFileListL(TInt aDirectory, TInt aSizeDate);
42 void LaunchCurrentL();
45 * Function - OfferKeyEventL
47 * @param aKeyEvent The key event.
48 * @param aType The type of key event: EEventKey, EEventKeyUp or EEventKeyDown.
49 * @return Indicates whether or not the key event was used by this control.
51 TKeyResponse OfferKeyEventL(const TKeyEvent& aKeyEvent,TEventCode aType);
56 TInt CountComponentControls() const;
57 CCoeControl* ComponentControl(TInt aIndex) const;
58 void Draw(const TRect& aRect) const;
59 void HandleControlEventL(CCoeControl* aControl,TCoeEvent aEventType);
62 CFileListEngine* iAppEngine;
66 CAknDoubleNumberStyleListBox* iListBox;