comparison src/ui/bmi/AUITextEntry.h @ 96:cbd9aaba48db

AUITextEntry.h: bogotab fixes
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 08 Nov 2020 06:59:47 +0000
parents c0052fe355d3
children
comparison
equal deleted inserted replaced
95:c97658c97564 96:cbd9aaba48db
3 3
4 /* Key entry information*/ 4 /* Key entry information*/
5 5
6 typedef struct 6 typedef struct
7 { 7 {
8 T_MFW_HND win; /* The editor window */ 8 T_MFW_HND win; /* The editor window */
9 U32 update; /* Event to be sent to the window to update it */ 9 U32 update; /* Event to be sent to the window to update it */
10 T_ED_DATA *editor; /* Pointer to editor data */ 10 T_ED_DATA *editor; /* Pointer to editor data */
11 UBYTE Level; /* Alpha level selected */ 11 UBYTE Level; /* Alpha level selected */
12 UBYTE Key; /* Alpha mode current key */ 12 UBYTE Key; /* Alpha mode current key */
13 T_MFW_HND editTim; /* The timer for multi-tap */ 13 T_MFW_HND editTim; /* The timer for multi-tap */
14 } 14 }
15 T_AUI_ENTRY_DATA; 15 T_AUI_ENTRY_DATA;
16 16
17 17
18 T_AUI_ENTRY_DATA *AUI_entry_Create(T_MFW_HND win, T_ED_DATA *editor, U32 update); 18 T_AUI_ENTRY_DATA *AUI_entry_Create(T_MFW_HND win, T_ED_DATA *editor, U32 update);
19 void AUI_entry_Destroy(T_AUI_ENTRY_DATA *entry_data); 19 void AUI_entry_Destroy(T_AUI_ENTRY_DATA *entry_data);
20 USHORT AUI_entry_EditChar (T_AUI_ENTRY_DATA *entry_data, USHORT alphachar, BOOL multitap); 20 USHORT AUI_entry_EditChar (T_AUI_ENTRY_DATA *entry_data, USHORT alphachar, BOOL multitap);
21 USHORT AUI_entry_EditDigit (T_AUI_ENTRY_DATA *entry_data, UBYTE code); 21 USHORT AUI_entry_EditDigit (T_AUI_ENTRY_DATA *entry_data, UBYTE code);
22 USHORT AUI_entry_EventKey (T_AUI_ENTRY_DATA *entry_data, MfwEvt event, MfwKbd *key); 22 USHORT AUI_entry_EventKey (T_AUI_ENTRY_DATA *entry_data, MfwEvt event, MfwKbd *key);
23 USHORT AUI_entry_GetKeyChar(T_AUI_ENTRY_DATA *entry_data, T_ED_CASE_PREF casePref); 23 USHORT AUI_entry_GetKeyChar(T_AUI_ENTRY_DATA *entry_data, T_ED_CASE_PREF casePref);
24 void AUI_entry_StopMultitap(T_AUI_ENTRY_DATA *entry_data); 24 void AUI_entry_StopMultitap(T_AUI_ENTRY_DATA *entry_data);
25 #endif 25 #endif