comparison src/ui/bmi/mmiUserData.h @ 130:cf085bee523c

mmiUserData.h: bogotab fixes
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 10 Nov 2020 06:43:13 +0000
parents c0052fe355d3
children
comparison
equal deleted inserted replaced
129:e42fae1d006d 130:cf085bee523c
1 #ifndef _DEF_MMI_USERDATA_H_ 1 #ifndef _DEF_MMI_USERDATA_H_
2 #define _DEF_MMI_USERDATA_H_ 2 #define _DEF_MMI_USERDATA_H_
3 3
4 /******************************************************************************* 4 /*******************************************************************************
5 5
6 CONDAT (UK) 6 CONDAT (UK)
7 7
8 ******************************************************************************** 8 ********************************************************************************
9 9
10 This software product is the property of Condat (UK) Ltd and may not be 10 This software product is the property of Condat (UK) Ltd and may not be
11 disclosed to any third party without the express permission of the owner. 11 disclosed to any third party without the express permission of the owner.
12 12
13 ******************************************************************************** 13 ********************************************************************************
14 14
15 $Project name: Basic MMI 15 $Project name: Basic MMI
16 $Project code: BMI (6349) 16 $Project code: BMI (6349)
17 $Module: MMI 17 $Module: MMI
18 $File: MmiUserData.h 18 $File: MmiUserData.h
19 $Revision: 1.0 19 $Revision: 1.0
20 20
21 $Author: Condat(UK) 21 $Author: Condat(UK)
22 $Date: 25/10/00 22 $Date: 25/10/00
23 23
24 ******************************************************************************** 24 ********************************************************************************
25 25
26 Description: 26 Description:
27 27
29 29
30 ******************************************************************************** 30 ********************************************************************************
31 $History: MmiUserData.h 31 $History: MmiUserData.h
32 32
33 33
34
35 $End 34 $End
36 35
37 *******************************************************************************/ 36 *******************************************************************************/
38 37
39 38
40
41
42 #define ALLOC_MEMORY mfwAlloc 39 #define ALLOC_MEMORY mfwAlloc
43 #define FREE_MEMORY mfwFree 40 #define FREE_MEMORY mfwFree
44
45 41
46 42
47 /* 43 /*
48 * The following enum is the _only_ place where keys for the userData mechanism 44 * The following enum is the _only_ place where keys for the userData mechanism
49 * can be defined. Everybody _can_ and _must_ define their own keys for 45 * can be defined. Everybody _can_ and _must_ define their own keys for
50 * _every_ particular use of userData. 46 * _every_ particular use of userData.
51 */ 47 */
52 typedef enum 48 typedef enum
53 { 49 {
54 UD_SOFTKEYS, 50 UD_SOFTKEYS,
55 UD_OLD_FOCUS, 51 UD_OLD_FOCUS,
56 UD_SAT_BITS, 52 UD_SAT_BITS,
57 UD_SAT_HANDLE, 53 UD_SAT_HANDLE,
58 UD_SAT_KEYBOARD, 54 UD_SAT_KEYBOARD,
59 UD_SAT_MENU, 55 UD_SAT_MENU,
60 UD_SAT_MENU_ATTRIBUTES, 56 UD_SAT_MENU_ATTRIBUTES,
61 UD_SAT_MENU_IDS, 57 UD_SAT_MENU_IDS,
62 UD_SAT_MENU_STRINGPOOL, 58 UD_SAT_MENU_STRINGPOOL,
63 UD_SAT_SETUPMENU_COMMAND, 59 UD_SAT_SETUPMENU_COMMAND,
64 UD_KBD, 60 UD_KBD,
65 UD_PARENTWIN, 61 UD_PARENTWIN,
66 UD_MENU 62 UD_MENU
67 } UserKey; 63 } UserKey;
68 64
69 65
70 /* 66 /*
71 * Please note that all functions below come in a userDataHnd... and userDataWin... 67 * Please note that all functions below come in a userDataHnd... and userDataWin...
109 * with <key> existed. 105 * with <key> existed.
110 */ 106 */
111 107
112 108
113 #endif 109 #endif
114