diff -r ebe688cedc25 -r 7fdbb852d323 messagingappbase/mcesettings/inc/MceSettingsArrays.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/messagingappbase/mcesettings/inc/MceSettingsArrays.h Wed Sep 01 12:31:54 2010 +0100 @@ -0,0 +1,90 @@ +/* +* 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 // 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