os/graphics/graphicstest/uibench/s60/testlauncher/src/testlistcontainer.cpp
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 
    17 #include "testlistcontainer.h"
    18 #include "testlistengine.h"
    19 #include "testlauncher.hrh"
    20 
    21 #include <testlauncher.rsg>
    22 #include <EIKAPP.H>
    23 #include <eikbtgpc.h>
    24 
    25 
    26 void CFileListContainer::ConstructL(const TRect& aRect)
    27     {
    28     CreateWindowL();
    29 
    30     iListBox = new (ELeave) CAknDoubleNumberStyleListBox;
    31     iListBox->SetContainerWindowL(*this);
    32     iListBox->ConstructL(this, EAknListBoxMarkableList);
    33 
    34     // Create the scroll indicator
    35     iListBox->CreateScrollBarFrameL(ETrue);
    36     iListBox->ScrollBarFrame()
    37         ->SetScrollBarVisibilityL(CEikScrollBarFrame::EOff, CEikScrollBarFrame::EAuto);
    38 
    39     iListBox->Model()->SetOwnershipType(ELbmOwnsItemArray);
    40     iListBox->ActivateL();
    41 
    42     // Create the FileListEngine
    43     iAppEngine = new (ELeave) CFileListEngine;
    44 
    45 #ifdef __SERIES60_3X__
    46     iAppEngine->ConstructL();
    47 #else
    48     iAppEngine->ConstructL((CEikProcess*)(((CEikAppUi*)iCoeEnv->AppUi())->Application()->Process()));
    49 #endif
    50 
    51     SetFileListL(EFileListPictures, EFileListDate);
    52     
    53     SetRect(aRect);
    54     ActivateL();
    55     }
    56 
    57 CFileListContainer::~CFileListContainer()
    58     {
    59     delete iAppEngine;
    60     delete iListBox;
    61     }
    62 
    63 
    64 
    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)
    70     {
    71     // Set the listbox to use the file list model
    72     CDesCArray* items = static_cast<CDesCArray*>(iListBox->Model()->ItemTextArray());
    73 
    74     // If there are items, they will be removed here
    75     if (iAppEngine->RemoveItems(items))
    76         {
    77         // This makes changes to the actual listbox
    78         iListBox->HandleItemRemovalL();
    79         }
    80 
    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)
    87         {
    88         // Create FileList Items in the ListBox
    89         iAppEngine->GetFileListItemsL(items);
    90         }
    91     // Close FileList session
    92     iAppEngine->EndFileList();
    93 
    94     // Refresh the listbox due to model change
    95     iListBox->HandleItemAdditionL();
    96     iListBox->SetCurrentItemIndex(0);
    97 
    98     // Set correct middle softkey
    99     CEikButtonGroupContainer * cbaGroup = iEikonEnv->AppUiFactory()->Cba();
   100     if (iAppEngine->IsDirListEmpty())
   101         {
   102         // Don't use middle softkey at all
   103         cbaGroup->SetCommandSetL(R_AVKON_SOFTKEYS_OPTIONS_EXIT);
   104         }
   105 
   106     iListBox->DrawNow();
   107     }
   108 
   109 // Called by framework when the view size is changed
   110 void CFileListContainer::SizeChanged()
   111     {
   112     // control resizing
   113     TRect rect = Rect();
   114     iListBox->SetExtent(TPoint(0,0),rect.Size());
   115     }
   116 
   117 // Called by framework when a key is pressed
   118 TKeyResponse CFileListContainer::OfferKeyEventL(const TKeyEvent& aKeyEvent,TEventCode aType)
   119     {
   120     TKeyResponse ret;
   121 
   122     // See if we have a selection
   123     TInt code = aKeyEvent.iCode;
   124     switch(code)
   125         {
   126         // is navigator button pressed
   127         case EKeyOK:
   128             iAppEngine->LaunchCurrentL(iListBox->CurrentItemIndex());
   129             ret = EKeyWasConsumed;
   130             break;
   131 
   132         default:
   133             // Let Listbox take care of its key handling
   134             ret = iListBox->OfferKeyEventL(aKeyEvent, aType);
   135             break;
   136         }
   137     return ret;
   138     }
   139 
   140 void CFileListContainer::LaunchCurrentL()
   141     {
   142     iAppEngine->LaunchCurrentL(iListBox->CurrentItemIndex());
   143     }
   144 
   145 TInt CFileListContainer::CountComponentControls() const
   146     {
   147     return 1;
   148     }
   149 CCoeControl* CFileListContainer::ComponentControl(TInt aIndex) const
   150     {
   151     switch (aIndex)
   152         {
   153         case 0:
   154             return iListBox;
   155         default:
   156             return NULL;
   157         }
   158     }
   159 
   160 void CFileListContainer::Draw(const TRect& aRect) const
   161     {
   162     CWindowGc& gc = SystemGc();
   163     // drawing code
   164     gc.SetPenStyle(CGraphicsContext::ENullPen);
   165     gc.SetBrushColor(KRgbGray);
   166     gc.SetBrushStyle(CGraphicsContext::ESolidBrush);
   167     gc.DrawRect(aRect);
   168     }
   169 
   170 void CFileListContainer::HandleControlEventL(CCoeControl* /*aControl*/, TCoeEvent /*aEventType*/)
   171     {
   172     // empty
   173     }