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.
sl@0
     1
 // Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
 // All rights reserved.
sl@0
     3
 // This component and the accompanying materials are made available
sl@0
     4
 // under the terms of "Eclipse Public License v1.0"
sl@0
     5
 // which accompanies this distribution, and is available
sl@0
     6
 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
 //
sl@0
     8
 // Initial Contributors:
sl@0
     9
 // Nokia Corporation - initial contribution.
sl@0
    10
 //
sl@0
    11
 // Contributors:
sl@0
    12
 //
sl@0
    13
 // Description:
sl@0
    14
 //
sl@0
    15
sl@0
    16
sl@0
    17
#include "testlistcontainer.h"
sl@0
    18
#include "testlistengine.h"
sl@0
    19
#include "testlauncher.hrh"
sl@0
    20
sl@0
    21
#include <testlauncher.rsg>
sl@0
    22
#include <EIKAPP.H>
sl@0
    23
#include <eikbtgpc.h>
sl@0
    24
sl@0
    25
sl@0
    26
void CFileListContainer::ConstructL(const TRect& aRect)
sl@0
    27
    {
sl@0
    28
    CreateWindowL();
sl@0
    29
sl@0
    30
    iListBox = new (ELeave) CAknDoubleNumberStyleListBox;
sl@0
    31
    iListBox->SetContainerWindowL(*this);
sl@0
    32
    iListBox->ConstructL(this, EAknListBoxMarkableList);
sl@0
    33
sl@0
    34
    // Create the scroll indicator
sl@0
    35
    iListBox->CreateScrollBarFrameL(ETrue);
sl@0
    36
    iListBox->ScrollBarFrame()
sl@0
    37
        ->SetScrollBarVisibilityL(CEikScrollBarFrame::EOff, CEikScrollBarFrame::EAuto);
sl@0
    38
sl@0
    39
    iListBox->Model()->SetOwnershipType(ELbmOwnsItemArray);
sl@0
    40
    iListBox->ActivateL();
sl@0
    41
sl@0
    42
    // Create the FileListEngine
sl@0
    43
    iAppEngine = new (ELeave) CFileListEngine;
sl@0
    44
sl@0
    45
#ifdef __SERIES60_3X__
sl@0
    46
    iAppEngine->ConstructL();
sl@0
    47
#else
sl@0
    48
    iAppEngine->ConstructL((CEikProcess*)(((CEikAppUi*)iCoeEnv->AppUi())->Application()->Process()));
sl@0
    49
#endif
sl@0
    50
sl@0
    51
    SetFileListL(EFileListPictures, EFileListDate);
sl@0
    52
    
sl@0
    53
    SetRect(aRect);
sl@0
    54
    ActivateL();
sl@0
    55
    }
sl@0
    56
sl@0
    57
CFileListContainer::~CFileListContainer()
sl@0
    58
    {
sl@0
    59
    delete iAppEngine;
sl@0
    60
    delete iListBox;
sl@0
    61
    }
sl@0
    62
sl@0
    63
sl@0
    64
sl@0
    65
// This will set up filelist.
sl@0
    66
// Directory and Size can be changed. See Filelist.hrh for possible values
sl@0
    67
// This function is located in the container and not in the engine, because it
sl@0
    68
// activates the listbox.
sl@0
    69
void CFileListContainer::SetFileListL(TInt aDirectory, TInt aSizeDate)
sl@0
    70
    {
sl@0
    71
    // Set the listbox to use the file list model
sl@0
    72
    CDesCArray* items = static_cast<CDesCArray*>(iListBox->Model()->ItemTextArray());
sl@0
    73
sl@0
    74
    // If there are items, they will be removed here
sl@0
    75
    if (iAppEngine->RemoveItems(items))
sl@0
    76
        {
sl@0
    77
        // This makes changes to the actual listbox
sl@0
    78
        iListBox->HandleItemRemovalL();
sl@0
    79
        }
sl@0
    80
sl@0
    81
    // Let's show directory
sl@0
    82
    iAppEngine->SetDirectory(aDirectory);
sl@0
    83
    // Let's decide whether to show file size or modification date
sl@0
    84
    iAppEngine->SetSizeDate(aSizeDate);
sl@0
    85
    // Do preparations for the FileList
sl@0
    86
    if(iAppEngine->StartFileList() == KErrNone)
sl@0
    87
        {
sl@0
    88
        // Create FileList Items in the ListBox
sl@0
    89
        iAppEngine->GetFileListItemsL(items);
sl@0
    90
        }
sl@0
    91
    // Close FileList session
sl@0
    92
    iAppEngine->EndFileList();
sl@0
    93
sl@0
    94
    // Refresh the listbox due to model change
sl@0
    95
    iListBox->HandleItemAdditionL();
sl@0
    96
    iListBox->SetCurrentItemIndex(0);
sl@0
    97
sl@0
    98
    // Set correct middle softkey
sl@0
    99
    CEikButtonGroupContainer * cbaGroup = iEikonEnv->AppUiFactory()->Cba();
sl@0
   100
    if (iAppEngine->IsDirListEmpty())
sl@0
   101
        {
sl@0
   102
        // Don't use middle softkey at all
sl@0
   103
        cbaGroup->SetCommandSetL(R_AVKON_SOFTKEYS_OPTIONS_EXIT);
sl@0
   104
        }
sl@0
   105
sl@0
   106
    iListBox->DrawNow();
sl@0
   107
    }
sl@0
   108
sl@0
   109
// Called by framework when the view size is changed
sl@0
   110
void CFileListContainer::SizeChanged()
sl@0
   111
    {
sl@0
   112
    // control resizing
sl@0
   113
    TRect rect = Rect();
sl@0
   114
    iListBox->SetExtent(TPoint(0,0),rect.Size());
sl@0
   115
    }
sl@0
   116
sl@0
   117
// Called by framework when a key is pressed
sl@0
   118
TKeyResponse CFileListContainer::OfferKeyEventL(const TKeyEvent& aKeyEvent,TEventCode aType)
sl@0
   119
    {
sl@0
   120
    TKeyResponse ret;
sl@0
   121
sl@0
   122
    // See if we have a selection
sl@0
   123
    TInt code = aKeyEvent.iCode;
sl@0
   124
    switch(code)
sl@0
   125
        {
sl@0
   126
        // is navigator button pressed
sl@0
   127
        case EKeyOK:
sl@0
   128
            iAppEngine->LaunchCurrentL(iListBox->CurrentItemIndex());
sl@0
   129
            ret = EKeyWasConsumed;
sl@0
   130
            break;
sl@0
   131
sl@0
   132
        default:
sl@0
   133
            // Let Listbox take care of its key handling
sl@0
   134
            ret = iListBox->OfferKeyEventL(aKeyEvent, aType);
sl@0
   135
            break;
sl@0
   136
        }
sl@0
   137
    return ret;
sl@0
   138
    }
sl@0
   139
sl@0
   140
void CFileListContainer::LaunchCurrentL()
sl@0
   141
    {
sl@0
   142
    iAppEngine->LaunchCurrentL(iListBox->CurrentItemIndex());
sl@0
   143
    }
sl@0
   144
sl@0
   145
TInt CFileListContainer::CountComponentControls() const
sl@0
   146
    {
sl@0
   147
    return 1;
sl@0
   148
    }
sl@0
   149
CCoeControl* CFileListContainer::ComponentControl(TInt aIndex) const
sl@0
   150
    {
sl@0
   151
    switch (aIndex)
sl@0
   152
        {
sl@0
   153
        case 0:
sl@0
   154
            return iListBox;
sl@0
   155
        default:
sl@0
   156
            return NULL;
sl@0
   157
        }
sl@0
   158
    }
sl@0
   159
sl@0
   160
void CFileListContainer::Draw(const TRect& aRect) const
sl@0
   161
    {
sl@0
   162
    CWindowGc& gc = SystemGc();
sl@0
   163
    // drawing code
sl@0
   164
    gc.SetPenStyle(CGraphicsContext::ENullPen);
sl@0
   165
    gc.SetBrushColor(KRgbGray);
sl@0
   166
    gc.SetBrushStyle(CGraphicsContext::ESolidBrush);
sl@0
   167
    gc.DrawRect(aRect);
sl@0
   168
    }
sl@0
   169
sl@0
   170
void CFileListContainer::HandleControlEventL(CCoeControl* /*aControl*/, TCoeEvent /*aEventType*/)
sl@0
   171
    {
sl@0
   172
    // empty
sl@0
   173
    }