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 WPA/WPA2/802_Dot_1x configuration
|
|
16 |
*
|
|
17 |
*/
|
|
18 |
|
|
19 |
/*
|
|
20 |
* %version: tr1cfwln#14 %
|
|
21 |
*/
|
|
22 |
|
|
23 |
#ifndef CPWPACMNUI_H
|
|
24 |
#define CPWPACMNUI_H
|
|
25 |
|
|
26 |
// System includes
|
|
27 |
#include <cmmanagerdefines_shim.h>
|
|
28 |
|
|
29 |
// User includes
|
|
30 |
#include "cpwpacmnui_global.h"
|
|
31 |
|
|
32 |
// Forward Declarations
|
|
33 |
class CpItemDataHelper;
|
|
34 |
class CpSettingFormItemData;
|
|
35 |
class EapQtConfigInterface;
|
|
36 |
class CpWpaCmnUiPrivate;
|
|
37 |
|
|
38 |
/*!
|
|
39 |
* Implements the Ui for WPA/WPA2/802.1x Security Mode
|
|
40 |
*/
|
|
41 |
|
|
42 |
// Class declaration
|
|
43 |
class WPAUI_EXPORT CpWpaCmnUi
|
|
44 |
{
|
|
45 |
public:
|
|
46 |
|
|
47 |
CpWpaCmnUi(CMManagerShim::WlanSecMode securityMode, CpItemDataHelper &dataHelpper);
|
|
48 |
~CpWpaCmnUi();
|
|
49 |
|
|
50 |
CpSettingFormItemData* createUi(
|
|
51 |
EapQtConfigInterface *mEapQtConfigInterface,
|
|
52 |
CmConnectionMethodShim *cmCM);
|
|
53 |
|
|
54 |
bool validateSettings();
|
|
55 |
|
|
56 |
private:
|
|
57 |
|
|
58 |
Q_DISABLE_COPY(CpWpaCmnUi)
|
|
59 |
|
|
60 |
// Pointer to Private Implementation
|
|
61 |
CpWpaCmnUiPrivate* d_ptr;
|
|
62 |
|
|
63 |
};
|
|
64 |
|
|
65 |
|
|
66 |
|
|
67 |
#endif//CPWPACMNUI_H
|