1 /* |
|
2 * Copyright (c) 2009 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: Declaration of CNoWLANNetworksAvailableNotif |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef __NO_WLAN_NETWORKS_AVAILABLE_NOTE_H__ |
|
21 #define __NO_WLAN_NETWORKS_AVAILABLE_NOTE_H__ |
|
22 |
|
23 // INCLUDES |
|
24 #include "ConnectionDialogsNotifBase.h" |
|
25 #include "nowlansdiscreetpopup.h" |
|
26 |
|
27 //FORWARD DECLARATION |
|
28 class CNoWlansDiscreetPopup; |
|
29 |
|
30 /** |
|
31 * CNoWLANNetworksAvailableNotif class |
|
32 */ |
|
33 NONSHARABLE_CLASS( CNoWLANNetworksAvailableNotif ) |
|
34 : public CConnectionDialogsNotifBase |
|
35 { |
|
36 public: |
|
37 /** |
|
38 * NewL function |
|
39 * @param - |
|
40 * return CNoWLANNetworksAvailableNotif* |
|
41 */ |
|
42 static CNoWLANNetworksAvailableNotif* NewL( |
|
43 const TBool aResourceFileResponsible ); |
|
44 |
|
45 /** |
|
46 * RegisterL register the client notifier function |
|
47 * @param - |
|
48 * return TNotifierInfo |
|
49 */ |
|
50 TNotifierInfo RegisterL(); |
|
51 |
|
52 /** |
|
53 * Start the Notifier |
|
54 * @param aBuffer Buffer |
|
55 * @param aReplySlot Identifies which message argument to use for the |
|
56 * reply. This message argument will refer to a |
|
57 * modifiable descriptor, a TDes8 type, into which |
|
58 * data can be returned. |
|
59 * @param aMessage Message |
|
60 * return - |
|
61 */ |
|
62 void StartL( const TDesC8& aBuffer, TInt aReplySlot, |
|
63 const RMessagePtr2& aMessage ); |
|
64 |
|
65 /** |
|
66 * Cancel() the notifier |
|
67 * @param - |
|
68 * return - |
|
69 */ |
|
70 void Cancel(); |
|
71 |
|
72 /** |
|
73 * CompleteL the notifier is complete |
|
74 * @param aStatus status |
|
75 * return - |
|
76 */ |
|
77 void CompleteL( TInt aStatus ); |
|
78 |
|
79 protected: |
|
80 /** |
|
81 * Constructor |
|
82 */ |
|
83 CNoWLANNetworksAvailableNotif(); |
|
84 |
|
85 protected: |
|
86 // pointer to active object, owned |
|
87 CNoWlansDiscreetPopup* iActiveNote; |
|
88 |
|
89 }; |
|
90 |
|
91 #endif //__NO_WLAN_NETWORKS_AVAILABLE_NOTE_H__ |
|
92 |
|
93 // End of File |
|
94 |
|