wlansecuritysettings/wlaneapsettingsui/EapGtc/ConfigUi/inc/EapGtcUiSettingArray.h
changeset 0 c8830336c852
child 2 1c7bc153c08e
equal deleted inserted replaced
-1:000000000000 0:c8830336c852
       
     1 /*
       
     2 * Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of the License "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description: Header file of EAP GTC UI settings array
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef _EAPGTCUISETTINGARRAY_H_
       
    20 #define _EAPGTCUISETTINGARRAY_H_
       
    21 
       
    22 // INCLUDES
       
    23 #include <aknsettingitemlist.h>
       
    24 #include "EapGtcUi.hrh"
       
    25 
       
    26 
       
    27 // CLASS DECLARATION
       
    28 
       
    29 /**
       
    30 */
       
    31 class CEapGtcSettingItemArray : public CBase
       
    32     {
       
    33     public:
       
    34         static CEapGtcSettingItemArray* NewL();
       
    35 
       
    36         virtual ~CEapGtcSettingItemArray();
       
    37 
       
    38         CAknSettingItem* Item( TEapGtcUiSettingPageIds aItem );
       
    39 
       
    40         CAknSettingItemArray* Array();
       
    41 
       
    42         void StoreSettingsL();
       
    43 
       
    44         void AddTextItemL( TDes& aBuffer, 
       
    45                             TInt aId, 
       
    46                             TInt aTitleResource, 
       
    47                             TInt aSettingPageResource, 
       
    48                             TInt aAssociatedResource, 
       
    49                             TInt aOrdinal);
       
    50 
       
    51     protected:
       
    52         CEapGtcSettingItemArray();
       
    53 
       
    54         void ConstructL();
       
    55 
       
    56     private:
       
    57         CAknSettingItemArray* iArray;
       
    58     };
       
    59 
       
    60 #endif  // _EAPGTCUISETTINGARRAY_H_
       
    61 
       
    62 //  End of File