26
|
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 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:
|
|
15 |
* Control Panel QT UI for TLS ciphersuite configiration in EAP methods
|
|
16 |
*
|
|
17 |
*/
|
|
18 |
|
|
19 |
/*
|
|
20 |
* %version: 2 %
|
|
21 |
*/
|
|
22 |
|
|
23 |
|
|
24 |
#ifndef CP_EAP_CIPHERSUITE_UI_H
|
|
25 |
#define CP_EAP_CIPHERSUITE_UI_H
|
|
26 |
|
|
27 |
/*!
|
|
28 |
* @addtogroup group_eap_cipher_suite
|
|
29 |
* @{
|
|
30 |
*/
|
|
31 |
|
|
32 |
#include <QVariant>
|
|
33 |
#include "cpsettingformitemdata.h"
|
|
34 |
|
|
35 |
|
|
36 |
#ifdef BUILD_CP_EAP_CIPHERSUITE_UI_DLL
|
|
37 |
#define CP_EAP_CIPHERSUITE_UI_EXPORT Q_DECL_EXPORT
|
|
38 |
#else
|
|
39 |
#define CP_EAP_CIPHERSUITE_UI_EXPORT Q_DECL_IMPORT
|
|
40 |
#endif
|
|
41 |
|
|
42 |
class CpEapCiphersuiteUiPrivate;
|
|
43 |
|
|
44 |
/*!
|
|
45 |
*/
|
|
46 |
class CP_EAP_CIPHERSUITE_UI_EXPORT CpEapCiphersuiteUi: public CpSettingFormItemData
|
|
47 |
{
|
|
48 |
public:
|
|
49 |
CpEapCiphersuiteUi(CpItemDataHelper &dataHelpper, QVariant &ciphersuites);
|
|
50 |
~CpEapCiphersuiteUi();
|
|
51 |
|
|
52 |
QVariant ciphersuites();
|
|
53 |
|
|
54 |
private:
|
|
55 |
Q_DISABLE_COPY(CpEapCiphersuiteUi)
|
|
56 |
CpEapCiphersuiteUi();
|
|
57 |
CpEapCiphersuiteUiPrivate* d_ptr;
|
|
58 |
};
|
|
59 |
|
|
60 |
|
|
61 |
/*! @} */
|
|
62 |
|
|
63 |
#endif
|
|
64 |
|