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