|
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 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: Panic utility |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef DMGRUILIBPANIC_H |
|
21 #define DMGRUILIBPANIC_H |
|
22 |
|
23 // INCLUDE FILES |
|
24 |
|
25 #include <e32std.h> |
|
26 |
|
27 enum TUiLibPanReason |
|
28 { |
|
29 EUiLibPanNull = 1, |
|
30 EUiLibPanNotNull, |
|
31 EUiLibPanNotSupported, |
|
32 EUiLibPanNoDownloadsListModel, |
|
33 EUiLibPanNoDialogWhenVisible, |
|
34 EUiLibPanUnexpDialogWhenInvisible, |
|
35 EUiLibPanDLNegItemIndex, |
|
36 EUiLibPanNullHandledDownload, |
|
37 EUiLibPanNullHandlerObserver, |
|
38 EUiLibPanDivisionWithZero, |
|
39 EUiLibPanSmallDivBuffer, |
|
40 EUiLibPanCalledWhenUserExit, |
|
41 EUiLibPanBadExitType, |
|
42 EUiLibPanOptionsShownWhileNoDownloads, |
|
43 EUiLibPanStateIsStillMoved, |
|
44 EUiLibPanInProgressDownloadNotFound, |
|
45 EUiLibPanDlStateNotCompleted, |
|
46 EUiLibPanCreatedNotVisible, |
|
47 EUiLibPanProgressNotVisible, |
|
48 EUiLibPanPausedNotVisible, |
|
49 EUiLibPanCompletedNotVisible, |
|
50 EUiLibPanFailedNotVisible, |
|
51 EUiLibPanHideMenuWhileNoDialog, |
|
52 EUiLibPanAlreadyExistWhenAppend, |
|
53 EUiLibPanDocHandlerAlreadyRunning, |
|
54 EUiLibPanNullListBoxInSetModel, |
|
55 EUiLibPanNullListBoxInHandleModelChange, |
|
56 EUiLibPanNullMenuBar |
|
57 }; |
|
58 |
|
59 GLREF_C void Panic( TUiLibPanReason aReason ); |
|
60 |
|
61 #endif // DMGRUILIBPANIC_H |