equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2005-2007 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 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef MPBK2IMAGEFIELDOBSERVER_H |
|
20 #define MPBK2IMAGEFIELDOBSERVER_H |
|
21 |
|
22 // INCLUDES |
|
23 |
|
24 |
|
25 // FORWARD DECLATIONS |
|
26 |
|
27 |
|
28 // CLASS DECLARATION |
|
29 |
|
30 /** |
|
31 * Phonebook 2 contact editor image field observer |
|
32 */ |
|
33 class MPbk2ImageFieldObserver |
|
34 { |
|
35 public: // Interface |
|
36 |
|
37 /** |
|
38 * Called when image has bee loaded. |
|
39 * Returns system error code |
|
40 */ |
|
41 virtual TInt ImageLoadingComplete() = 0; |
|
42 |
|
43 |
|
44 /** |
|
45 * Called when image loading failed. |
|
46 * Returns system error code |
|
47 */ |
|
48 virtual TInt ImageLoadingFailed() = 0; |
|
49 |
|
50 |
|
51 /** |
|
52 * Called when image loading was cancelled. |
|
53 * Returns system error code |
|
54 */ |
|
55 virtual TInt ImageLoadingCancelled() = 0; |
|
56 |
|
57 |
|
58 |
|
59 }; |
|
60 |
|
61 #endif // MPBK2IMAGEFIELDOBSERVER |
|
62 |
|
63 // End of File |