|
1 /* |
|
2 * Copyright (c) 2002 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: MsgEditorPanic declaration |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef INC_MSGEDITORPANIC_H |
|
21 #define INC_MSGEDITORPANIC_H |
|
22 |
|
23 // ========== INCLUDE FILES ================================ |
|
24 |
|
25 // ========== CONSTANTS ==================================== |
|
26 |
|
27 // ========== MACROS ======================================= |
|
28 |
|
29 // ========== DATA TYPES =================================== |
|
30 |
|
31 enum TMsgEditorPanic |
|
32 { |
|
33 EMsgNullPointer, |
|
34 EMsgIncorrectSelectionItemType, |
|
35 EMsgInvalidEntryNumber, |
|
36 EMsgInvalidStartPos, |
|
37 EMsgDocPosOutOfRange, |
|
38 EMsgIncorrectComponentIndex, |
|
39 EMsgInheritedFunctionIsMissing, |
|
40 EMsgControlNotFocused, |
|
41 EMsgIncorrectClipboardFunction, |
|
42 EMsgIncorrectEditFunction, |
|
43 EMsgNoTextView, |
|
44 EMsgScrollBarNotExists, |
|
45 EMsgScrollBarAlreadyExists, |
|
46 EMsgHeaderNotExists, |
|
47 EMsgBodyNotExists, |
|
48 EMsgHeaderAlreadyExists, |
|
49 EMsgBodyAlreadyExists, |
|
50 EMsgIncorrectFormComponent, |
|
51 EMsgNoFocusingControlExist, |
|
52 EMsgNonFocusingControl, |
|
53 EMsgNoFocusInHeaderOrBody, |
|
54 EMsgFocusLost, |
|
55 EMsgControlIdNotSet, |
|
56 EMsgControlIdNotUnique, |
|
57 EMsgIncorrectControlId, |
|
58 EMsgControlNotFound, |
|
59 EMsgRemovedControlFocused, |
|
60 EMsgTextViewNotCreated, |
|
61 EMsgIconTextTooLong, |
|
62 EMsgIconIsMissing, |
|
63 EMsgHeaderWidthChanged, |
|
64 EMsgBodyWidthChanged, |
|
65 EMsgCopyNotPossible, |
|
66 EMsgCutNotPossible, |
|
67 EMsgPasteNotPossible, |
|
68 EMsgUndoNotPossible, |
|
69 EMsgSelectAllNotPossible, |
|
70 EMsgCorrectFontNotFound, |
|
71 EMsgNoSystemFontsFound, |
|
72 EMsgRecipientsAlreadySet, |
|
73 EMsgCursorPosNotFormatted, |
|
74 EMsgFunctionCalledBeforeInitialization, |
|
75 EMsgFunctionDeprecated |
|
76 }; |
|
77 |
|
78 // ========== FUNCTION PROTOTYPES ========================== |
|
79 |
|
80 GLREF_C void Panic(TMsgEditorPanic aPanic); |
|
81 |
|
82 // ========== FORWARD DECLARATIONS ========================= |
|
83 |
|
84 // ========== CLASS DECLARATION ============================ |
|
85 |
|
86 #endif |
|
87 |
|
88 // End of file |