equal
deleted
inserted
replaced
|
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 plugin for TLS-based EAP methods configuration |
|
16 * |
|
17 */ |
|
18 |
|
19 /* |
|
20 * %version: 6 % |
|
21 */ |
|
22 |
|
23 #ifndef CPEAPTLSMETHODSPLUGIN_H |
|
24 #define CPEAPTLSMETHODSPLUGIN_H |
|
25 |
|
26 // System includes |
|
27 #include <QObject> |
|
28 |
|
29 // User includes |
|
30 #include "cpeapplugininterface.h" |
|
31 |
|
32 // Forward declarations |
|
33 |
|
34 // External data types |
|
35 |
|
36 // Constants |
|
37 |
|
38 /*! |
|
39 * @addtogroup group_eap_ui_plugin_tlsmethods |
|
40 * @{ |
|
41 */ |
|
42 class CpEapTlsMethodsPlugin : public QObject, public CpEapPluginInterface |
|
43 { |
|
44 Q_OBJECT |
|
45 Q_INTERFACES(CpEapPluginInterface) |
|
46 |
|
47 public: |
|
48 CpEapTlsMethodsPlugin(); |
|
49 ~CpEapTlsMethodsPlugin(); |
|
50 |
|
51 void setSettingsReference(const EapQtConfigInterface::EapBearerType bearer, const int iapId); |
|
52 QList<EapQtPluginInfo> pluginInfo(); |
|
53 CpBaseSettingView* uiInstance(const EapQtPluginHandle& outerHandle, |
|
54 const EapQtPluginInfo &plugin); |
|
55 |
|
56 private: |
|
57 EapQtConfigInterface::EapBearerType mBearer; |
|
58 int mIapId; |
|
59 }; |
|
60 |
|
61 /*! @} */ |
|
62 |
|
63 #endif |