securitysettings/cpeapuiplugins/cpeapciphersuiteui/inc/cpeapciphersuiteui.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: 3 %
       
    21 */
       
    22 
       
    23 
       
    24 #ifndef CP_EAP_CIPHERSUITE_UI_H
       
    25 #define CP_EAP_CIPHERSUITE_UI_H
       
    26 
       
    27 // System includes
       
    28 #include <QVariant>
       
    29 #include <cpsettingformitemdata.h>
       
    30 
       
    31 // User includes
       
    32 
       
    33 // Forward declarations
       
    34 class CpEapCiphersuiteUiPrivate;
       
    35 
       
    36 // External data types
       
    37 
       
    38 // Constants
       
    39 
       
    40 
       
    41 //If BUILD_CP_EAP_CIPHERSUITE_UI_DLL macro is defined 
       
    42 // in the project file,
       
    43 //The dll is exported, 
       
    44 //otherwise, 
       
    45 //the dll will be imported(used)
       
    46 #ifdef BUILD_CP_EAP_CIPHERSUITE_UI_DLL
       
    47 #define CP_EAP_CIPHERSUITE_UI_EXPORT Q_DECL_EXPORT
       
    48 #else
       
    49 #define CP_EAP_CIPHERSUITE_UI_EXPORT Q_DECL_IMPORT
       
    50 #endif
       
    51 
       
    52 
       
    53 /*!
       
    54  * @addtogroup group_eap_cipher_suite
       
    55  * @{
       
    56  */
       
    57 class CP_EAP_CIPHERSUITE_UI_EXPORT CpEapCiphersuiteUi: public CpSettingFormItemData
       
    58 {
       
    59 public:
       
    60     CpEapCiphersuiteUi( QVariant &ciphersuites );
       
    61     ~CpEapCiphersuiteUi();
       
    62 
       
    63     QVariant ciphersuites();
       
    64 
       
    65 private:
       
    66     Q_DISABLE_COPY(CpEapCiphersuiteUi)
       
    67     CpEapCiphersuiteUi();
       
    68     QScopedPointer<CpEapCiphersuiteUiPrivate> d_ptr;
       
    69 };
       
    70 
       
    71 /*! @} */
       
    72 
       
    73 #endif
       
    74