|
1 /* |
|
2 * Copyright (c) 2004 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 * Declaration of class CWlanSettingsUi. |
|
16 * |
|
17 * |
|
18 */ |
|
19 |
|
20 |
|
21 #ifndef WLAN_SETTINGS_UI_H |
|
22 #define WLAN_SETTINGS_UI_H |
|
23 |
|
24 // INCLUDES |
|
25 |
|
26 #include <e32base.h> |
|
27 #include <wlancontainer.h> |
|
28 |
|
29 // FORWARD DECLARATIONS |
|
30 |
|
31 class CEikonEnv; |
|
32 class CWlanSettingsUiImpl; |
|
33 |
|
34 // CLASS DECLARATION |
|
35 |
|
36 /** |
|
37 * Public interface of WLAN Settings UI. |
|
38 * Proxy around the real implementation in CWlanSettingsUiImpl. |
|
39 */ |
|
40 NONSHARABLE_CLASS( CWlanSettingsUi ): public CBase |
|
41 { |
|
42 |
|
43 public: // Constructors and destructor |
|
44 |
|
45 /** |
|
46 * Two-phased constructor. Leaves on failure. |
|
47 * @param aEikEnv Eikon environment. |
|
48 * @return The constructed CWlanSettingsUi object. |
|
49 */ |
|
50 IMPORT_C static CWlanSettingsUi* NewL( CEikonEnv& aEikEnv ); |
|
51 |
|
52 /** |
|
53 * Destructor. |
|
54 */ |
|
55 IMPORT_C virtual ~CWlanSettingsUi(); |
|
56 |
|
57 public: // New methods |
|
58 |
|
59 /** |
|
60 * Launch WLAN Settings view. |
|
61 * @param aSession Commsdat session. |
|
62 */ |
|
63 IMPORT_C void RunSettingsL( CMDBSession* aSession ); |
|
64 |
|
65 /** |
|
66 * Launch WLAN Settings view. |
|
67 * with own session. |
|
68 */ |
|
69 IMPORT_C void RunSettingsL(); |
|
70 |
|
71 private: // Data |
|
72 |
|
73 CWlanSettingsUiImpl* iImpl; ///< Implementation. Owned. |
|
74 |
|
75 }; |
|
76 |
|
77 #endif |