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