securitysettings/cpeapuiplugins/cpeapciphersuiteui/inc/cpeapciphersuiteui_p.h
branchRCL_3
changeset 46 c74b3d9f6b9e
parent 45 bad0cc58d154
child 55 9c2aa05919d9
equal deleted inserted replaced
45:bad0cc58d154 46:c74b3d9f6b9e
     1 /*
       
     2 * Copyright (c) 2010 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 "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: 
       
    15 *   Control Panel QT UI for TLS ciphersuite configiration in EAP methods
       
    16 *
       
    17 */
       
    18 
       
    19 /*
       
    20 * %version: 4 %
       
    21 */
       
    22 
       
    23 #ifndef CP_EAP_CIPHERSUITE_UI_P_H
       
    24 #define CP_EAP_CIPHERSUITE_UI_P_H
       
    25 
       
    26 // System includes
       
    27 #include <hbdataformmodelitem.h> 
       
    28 
       
    29 // User includes
       
    30 
       
    31 // Forward declarations
       
    32 class CpSettingFormItemData;
       
    33 
       
    34 // External data types
       
    35 
       
    36 // Constants
       
    37 
       
    38 /*!
       
    39  * @addtogroup group_eap_cipher_suite
       
    40  * @{
       
    41  */
       
    42 
       
    43 class CpEapCiphersuiteUiPrivate
       
    44 {
       
    45 public:
       
    46     CpEapCiphersuiteUiPrivate();
       
    47     
       
    48     ~CpEapCiphersuiteUiPrivate();
       
    49 
       
    50     int ciphersuiteSelected(QVariant suites, int id);
       
    51 
       
    52     CpSettingFormItemData* createGroupItem(
       
    53         QVariant &suites, QString name, int id);
       
    54     
       
    55 private:
       
    56     friend class CpEapCiphersuiteUi;
       
    57     QHash<HbDataFormModelItem*, int> mSuiteMapper;
       
    58 };
       
    59 
       
    60 /*! @} */
       
    61 
       
    62 #endif