wlansecuritysettings/wlaneapsettingsui/EapTtls/ConfigUi/inc/EapTtlsUiSettingArray.h
branchRCL_3
changeset 46 c74b3d9f6b9e
equal deleted inserted replaced
45:bad0cc58d154 46:c74b3d9f6b9e
       
     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 TTLS UI settings array
       
    15 *
       
    16 */
       
    17 
       
    18 /*
       
    19 * %version: 11 %
       
    20 */
       
    21 
       
    22 #ifndef _EAPTTLSUISETTINGARRAY_H_
       
    23 #define _EAPTTLSUISETTINGARRAY_H_
       
    24 
       
    25 
       
    26 // INCLUDES
       
    27 #include <aknsettingitemlist.h>
       
    28 #include "EapTtlsUi.hrh"
       
    29 
       
    30 
       
    31 // CLASS DECLARATION
       
    32 
       
    33 /**
       
    34 */
       
    35 class CEapTtlsSettingItemArray : public CBase
       
    36     {
       
    37     public:
       
    38         static CEapTtlsSettingItemArray* NewL();
       
    39         virtual ~CEapTtlsSettingItemArray();
       
    40         CAknSettingItem* Item( TEapTtlsUiSettingPageIds aItem );
       
    41         CAknSettingItemArray* Array();
       
    42         void StoreSettingsL();
       
    43 
       
    44         void AddTextItemL( TDes& aBuffer, TInt aId, TInt aTitleResource,
       
    45                            TInt aSettingPageResource, TInt aAssociatedResource,
       
    46                            TInt aOrdinal);
       
    47 
       
    48         void AddBinarySettingItemL( TInt aSettingPageResourceId, 
       
    49                                     TInt aTitleResourceId,
       
    50                                     TInt aAssociatedResourceId,
       
    51                                     TInt aOrdinal,
       
    52                                     TBool& aModifiedValue);
       
    53 
       
    54     protected:
       
    55         CEapTtlsSettingItemArray();
       
    56         void ConstructL();
       
    57 
       
    58     private:
       
    59         CAknSettingItemArray* iArray;
       
    60     };
       
    61 
       
    62 #endif  // _EAPTTLSUISETTINGARRAY_H_
       
    63 
       
    64 //  End of File