equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2010 Ixonos Plc. |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of the "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 * Ixonos Plc |
|
14 * |
|
15 * Description: |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 |
|
21 #include <e32def.h> |
|
22 |
|
23 #ifndef __IMAGEEDITOR_PAN__ |
|
24 #define __IMAGEEDITOR_PAN__ |
|
25 |
|
26 /// Image Editor panics |
|
27 enum TImageEditorPanicIds |
|
28 { |
|
29 /// Editor view is not constructed |
|
30 EImageEditorPanicNoView = 0, |
|
31 |
|
32 /// Editor manager is needed but not constructed |
|
33 EImageEditorPanicNoEditorManager, |
|
34 |
|
35 /// Attemp to access iProgressDialog when it is not constructed |
|
36 EImageEditorPanicNoProgressDialog, |
|
37 |
|
38 /// When everything goes Beverly Hills... |
|
39 EImageEditorPanicUnexpectedCommand = 90210 |
|
40 }; |
|
41 |
|
42 #endif __IMAGEEDITOR_PAN__ |