messagingappbase/mcesettings/inc/MceSettingsArrays.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Wed, 14 Apr 2010 15:53:21 +0300
branchRCL_3
changeset 15 52d61119153d
parent 0 72b543305e3a
permissions -rw-r--r--
Revision: 201013 Kit: 201015

/*
* Copyright (c) 2002 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:  
*     Helper class for dialogs. Overrides MdcaPoint to return correct string for
*     listboxes.
*
*/



#ifndef MCESETTINGSARRAYS_H
#define MCESETTINGSARRAYS_H

//  INCLUDES

#include <MsgArrays.h> // CUidNameArray

// FORWARD DECLARATIONS


// CLASS DECLARATION


/**
*  Helper class for dialogs. Overrides MdcaPoint to return correct string for
*  listboxes.
*/
class CMceUidNameArray :
    public CUidNameArray
    {
    public:

        enum TMceUidNameArrayType
            {
            EMtmList,
            EServicesList
            };

    public:

        /**
        * Two-phased constructor.
        */
        IMPORT_C static CMceUidNameArray* NewL( TMceUidNameArrayType aType = EMtmList );
        
        /**
         * Destructor
         */
        IMPORT_C ~CMceUidNameArray();

    private:

        /**
         * Default constructor
         */
        CMceUidNameArray( TMceUidNameArrayType aType );

        /**
         * Symbian OS constructor
         */
        void ConstructL();

        /**
         * From MDesCArray
         * @param aIndex id of the folder to be opened
         * Returns string for listbox for displaying.
         */
        virtual TPtrC MdcaPoint( TInt aIndex ) const;

    private:
        TMceUidNameArrayType iListType;
        HBufC*  iText;

    };


#endif // MCESETTINGSARRAYS_H

// End of file