comparison src/ui/bmi/AUIEditor_i.h @ 94:64ad3a654677

AUIEditor_i.h: bogotab fixes
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 08 Nov 2020 06:53:15 +0000
parents c0052fe355d3
children
comparison
equal deleted inserted replaced
93:1a17927dd8a2 94:64ad3a654677
7 This software product is the property of Condat (UK) Ltd and may not be 7 This software product is the property of Condat (UK) Ltd and may not be
8 disclosed to any third party without the express permission of the owner. 8 disclosed to any third party without the express permission of the owner.
9 9
10 ******************************************************************************** 10 ********************************************************************************
11 11
12 $Project name: Basic MMI 12 $Project name: Basic MMI
13 $Project code: BMI (6349) 13 $Project code: BMI (6349)
14 $Module: MMI 14 $Module: MMI
15 $File: AUIEditor_i.h 15 $File: AUIEditor_i.h
16 $Revision: 1.0 16 $Revision: 1.0
17 17
18 $Author: Condat(UK) 18 $Author: Condat(UK)
19 $Date: 13/11/02 19 $Date: 13/11/02
20 20
21 ******************************************************************************** 21 ********************************************************************************
22 22
23 Description: 23 Description:
24 24
51 * Internal structure 51 * Internal structure
52 */ 52 */
53 53
54 typedef struct 54 typedef struct
55 { 55 {
56 T_MMI_CONTROL mmi_control; 56 T_MMI_CONTROL mmi_control;
57 T_MFW_HND parent; /* The parent window */ 57 T_MFW_HND parent; /* The parent window */
58 T_MFW_HND win; /* The edit window */ 58 T_MFW_HND win; /* The edit window */
59 T_MFW_HND kbd; /* The keyboard handler */ 59 T_MFW_HND kbd; /* The keyboard handler */
60 T_MFW_HND kbd_long; /* The longpress keyboard handler */ 60 T_MFW_HND kbd_long; /* The longpress keyboard handler */
61 T_MFW_HND timer; /* The timer for timeouts */ 61 T_MFW_HND timer; /* The timer for timeouts */
62 T_MFW_HND title_timer; /* Timer used for scrolling title */ 62 T_MFW_HND title_timer; /* Timer used for scrolling title */
63 USHORT title_pos; /* Start position to display title text */ 63 USHORT title_pos; /* Start position to display title text */
64 USHORT title_next_pos; /* The next position to display the title text */ 64 USHORT title_next_pos; /* The next position to display the title text */
65 65
66 T_ED_DATA *editor; /* The ATB editor */ 66 T_ED_DATA *editor; /* The ATB editor */
67 T_AUI_EDITOR_DATA editor_data; /* The MMI Editor data */ 67 T_AUI_EDITOR_DATA editor_data; /* The MMI Editor data */
68 T_AUI_ENTRY_DATA *entry_data; /* Key entry data */ 68 T_AUI_ENTRY_DATA *entry_data; /* Key entry data */
69 69
70 T_ATB_TEXT title; /* Title of editor */ 70 T_ATB_TEXT title; /* Title of editor */
71 BOOL hasTitle; /* TRUE if title is provided */ 71 BOOL hasTitle; /* TRUE if title is provided */
72 72
73 BOOL doNextLongPress; /* Flag used to notice/not notice long keypress */ 73 BOOL doNextLongPress; /* Flag used to notice/not notice long keypress */
74 74
75 T_ATB_TEXT predText; /* Predicted word buffer */ 75 T_ATB_TEXT predText; /* Predicted word buffer */
76 T_ED_CHAR predTextChar; /* Current character */ 76 T_ED_CHAR predTextChar; /* Current character */
77 77
78 char *displayBuffer; /* SPR#2672 - SH - Pointer to display buffer */ 78 char *displayBuffer; /* SPR#2672 - SH - Pointer to display buffer */
79 } 79 }
80 T_AUI_EDITOR_INFO; 80 T_AUI_EDITOR_INFO;
81 81
82 /******************************************************************************* 82 /*******************************************************************************
83 83