sl@0: // Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #ifndef FILELISTCONTAINER_H sl@0: #define FILELISTCONTAINER_H sl@0: sl@0: sl@0: #include "testlistengine.h" sl@0: sl@0: #include sl@0: #include sl@0: #include // For Listbox sl@0: sl@0: sl@0: /** sl@0: * CFileListContainer container control class. sl@0: * sl@0: */ sl@0: class CFileListContainer : public CCoeControl, MCoeControlObserver sl@0: { sl@0: public: sl@0: /** sl@0: * Symbian default constructor. sl@0: * @param aRect Frame rectangle for container. sl@0: */ sl@0: void ConstructL(const TRect& aRect); sl@0: sl@0: virtual ~CFileListContainer(); sl@0: void SetFileListL(TInt aDirectory, TInt aSizeDate); sl@0: void LaunchCurrentL(); sl@0: sl@0: /** sl@0: * Function - OfferKeyEventL sl@0: * Handles key events. sl@0: * @param aKeyEvent The key event. sl@0: * @param aType The type of key event: EEventKey, EEventKeyUp or EEventKeyDown. sl@0: * @return Indicates whether or not the key event was used by this control. sl@0: */ sl@0: TKeyResponse OfferKeyEventL(const TKeyEvent& aKeyEvent,TEventCode aType); sl@0: sl@0: private: sl@0: // From CoeControl sl@0: void SizeChanged(); sl@0: TInt CountComponentControls() const; sl@0: CCoeControl* ComponentControl(TInt aIndex) const; sl@0: void Draw(const TRect& aRect) const; sl@0: void HandleControlEventL(CCoeControl* aControl,TCoeEvent aEventType); sl@0: sl@0: public: sl@0: CFileListEngine* iAppEngine; sl@0: sl@0: private: sl@0: // Listbox sl@0: CAknDoubleNumberStyleListBox* iListBox; sl@0: }; sl@0: sl@0: #endif