|
1 /* |
|
2 * Copyright (c) 2002-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: Active object wrapper for launching Settings UI |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef C_COMASUPLSETTINGSUIOBSERVER_H |
|
20 #define C_COMASUPLSETTINGSUIOBSERVER_H |
|
21 |
|
22 /** |
|
23 * This class provides a callback interface for handling the |
|
24 * completion of settings. The Client derives a |
|
25 * class from this interface and implements the SettingsUICompleted-methods |
|
26 * that interest it. |
|
27 */ |
|
28 class MOMASuplUICompletionObserver |
|
29 { |
|
30 |
|
31 public: |
|
32 |
|
33 /** |
|
34 * This callback method is used to notify the client about |
|
35 * completion of settingsUi Launch |
|
36 * @param aError error encountered while launching change |
|
37 * @return None |
|
38 */ |
|
39 virtual void SettingsUICompletedL(TInt aError) = 0; |
|
40 |
|
41 /** |
|
42 * This callback method is used to notify the client about |
|
43 * completion of settingsUi Launch for SUPL usage |
|
44 * @param aError error encountered while launching change |
|
45 * @return None |
|
46 */ |
|
47 |
|
48 virtual void SettingsUsageUICompletedL(TInt aError) = 0; |
|
49 |
|
50 /** |
|
51 * This callback method is used to notify the client about |
|
52 * completion of Timeout UI |
|
53 * @param aError error encountered while launching change |
|
54 * @return None |
|
55 */ |
|
56 |
|
57 virtual void SettingsTimeOutUICompletedL(TInt aError) = 0; |
|
58 }; |
|
59 #endif // C_COMASUPLSETTINGSUIOBSERVER_H |
|
60 |