|
1 /* |
|
2 * Copyright (c) 2003 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 * Declaration of class TDialerDialogs. |
|
16 * |
|
17 * |
|
18 */ |
|
19 |
|
20 |
|
21 // INCLUDE FILES |
|
22 |
|
23 #ifndef __BROWSERTELSERVICE_DLGS_H |
|
24 #define __BROWSERTELSERVICE_DLGS_H |
|
25 |
|
26 #include <eikdialg.h> |
|
27 #include <eikedwin.h> |
|
28 #include <aknnotewrappers.h> |
|
29 #include <aknwaitdialog.h> |
|
30 |
|
31 |
|
32 // CLASS DECLARATION |
|
33 |
|
34 /** |
|
35 * Implements the dialogs needed by browsertelservice |
|
36 */ |
|
37 class TDialerDialogs |
|
38 { |
|
39 public: |
|
40 /** |
|
41 * Displayes an error note |
|
42 * @param aPrompt The desired text to be shown |
|
43 */ |
|
44 static void ErrorNoteL( const TDesC& aPrompt ); |
|
45 |
|
46 /** |
|
47 * Displayes a confirmation dialog |
|
48 * @param aMsg The desired text to be shown |
|
49 * @param aResourceId Resource for the dialog |
|
50 * @return Non zero if accepted |
|
51 */ |
|
52 static TInt ConfirmationDlgL( const TDesC& aMsg, TInt aResourceId ); |
|
53 |
|
54 /** |
|
55 * Displayes a wait dialog |
|
56 * @param aMsg The desired text to be shown |
|
57 * @param aResourceId Resource for the dialog |
|
58 * @return Non zero if accepted |
|
59 */ |
|
60 static TInt WaitDialogL( const TDesC& aMsg, TInt aResourceId ); |
|
61 }; |
|
62 |
|
63 |
|
64 #endif |
|
65 |