os/graphics/graphicstest/uibench/s60/testlauncher/inc/testlistcontainer.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7  //
     8  // Initial Contributors:
     9  // Nokia Corporation - initial contribution.
    10  //
    11  // Contributors:
    12  //
    13  // Description:
    14  //
    15 
    16 #ifndef FILELISTCONTAINER_H
    17 #define FILELISTCONTAINER_H
    18 
    19 
    20 #include "testlistengine.h"
    21 
    22 #include <coecntrl.h>
    23 #include <aknlists.h>
    24 #include <eiklbx.h> // For Listbox
    25 
    26 
    27 /**
    28 *  CFileListContainer  container control class.
    29 *
    30 */
    31 class CFileListContainer : public CCoeControl, MCoeControlObserver
    32     {
    33     public:
    34         /**
    35         * Symbian default constructor.
    36         * @param aRect Frame rectangle for container.
    37         */
    38         void ConstructL(const TRect& aRect);
    39         
    40         virtual ~CFileListContainer();
    41         void SetFileListL(TInt aDirectory, TInt aSizeDate);
    42         void LaunchCurrentL();
    43 
    44         /**
    45         * Function - OfferKeyEventL
    46         * Handles key events.
    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.
    50         */
    51         TKeyResponse OfferKeyEventL(const TKeyEvent& aKeyEvent,TEventCode aType);
    52 
    53     private:
    54         // From CoeControl
    55         void SizeChanged();
    56         TInt CountComponentControls() const;
    57         CCoeControl* ComponentControl(TInt aIndex) const;
    58         void Draw(const TRect& aRect) const;
    59         void HandleControlEventL(CCoeControl* aControl,TCoeEvent aEventType);
    60 
    61     public:
    62         CFileListEngine* iAppEngine;
    63 
    64     private:
    65         // Listbox
    66         CAknDoubleNumberStyleListBox* iListBox;
    67     };
    68 
    69 #endif