equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2006 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: Wait note observer |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef M_MPXWAITNOTEOBSERVER_H |
|
21 #define M_MPXWAITNOTEOBSERVER_H |
|
22 |
|
23 #include <aknnotedialog.h> |
|
24 /** |
|
25 * MMPXWaitNoteObserver |
|
26 * |
|
27 * Wait Note Observer |
|
28 * |
|
29 * @lib mpxwaitnotedialog.lib |
|
30 * @since S60 3.1 |
|
31 */ |
|
32 NONSHARABLE_CLASS( MMPXWaitNoteObserver ) |
|
33 { |
|
34 |
|
35 public: |
|
36 /** |
|
37 * Handles that a wait note has been dismissed |
|
38 * This function should call view utility mark view as closed |
|
39 */ |
|
40 virtual void HandleWaitNoteDismissedL() = 0; |
|
41 /** |
|
42 * Get pointer to the note dialog |
|
43 * |
|
44 * @param aNoteDialog Referrence of Pointer to the note dialog. |
|
45 * @param aDlgRsc The resource ID. |
|
46 * @param aTone Tone of the note dialog. |
|
47 */ |
|
48 virtual void NoteDialogL( CAknNoteDialog*& aNoteDialog, |
|
49 TInt aDlgRsc, |
|
50 CAknNoteDialog::TTone aTone ) = 0; |
|
51 }; |
|
52 |
|
53 |
|
54 #endif // M_MPXWAITNOTEOBSERVER_H |