equal
deleted
inserted
replaced
|
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 "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: Declarations for resource and C++ file. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 |
|
22 #ifndef USERDICT_HRH |
|
23 #define USERDICT_HRH |
|
24 |
|
25 // DATA TYPES |
|
26 enum TUserDictCommandIds // Command ID |
|
27 { |
|
28 EUserDictCmdOpen = 0x6000, |
|
29 EUserDictCmdNewWord, |
|
30 EUserDictCmdDelete, |
|
31 EUserDictCmdEmpty |
|
32 }; |
|
33 |
|
34 enum TUserDictDlgCtrlIds // Control ID which is used in dialog. |
|
35 { |
|
36 EUserDictWordEdwin = 0x6020, |
|
37 EUserDictReadingEdwin, |
|
38 EUserDictDeleteQuery, |
|
39 EUserDictDeleteWaitNote |
|
40 }; |
|
41 |
|
42 enum TUserDictEntrySizes |
|
43 { |
|
44 // Buffer size of the word entry field of the Editor. |
|
45 EUseDictWordBuffer = 25, |
|
46 // Buffer size of the reading entry field of the Editor. |
|
47 EUseDictReadingBuffer = 8 |
|
48 }; |
|
49 |
|
50 #endif // USERDICT_HRH |
|
51 |
|
52 // End of File |