comparison src/ui/mfw/mfw_mnu.h @ 188:92abb46dc1ba

src/ui/mfw/*.[ch]: rm trailing white space
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 19 Jan 2021 06:10:27 +0000
parents 67bfe9f274f6
children
comparison
equal deleted inserted replaced
187:a33dd8a5dcc9 188:92abb46dc1ba
18 18
19 June 05, 2006 REF:OMAPS00060424 x0045876 19 June 05, 2006 REF:OMAPS00060424 x0045876
20 Description: Header Toggling 20 Description: Header Toggling
21 Solution: Implemented the toggling of header when displaying the length text in SELECT ITEM and SET UP MENU 21 Solution: Implemented the toggling of header when displaying the length text in SELECT ITEM and SET UP MENU
22 22
23 May 18, 2006 REF: DRT OMAPS00076438 xdeepadh 23 May 18, 2006 REF: DRT OMAPS00076438 xdeepadh
24 Description: Scrolling not implemented in Imageviewer 24 Description: Scrolling not implemented in Imageviewer
25 Solution: The support for scrolling has been provided. 25 Solution: The support for scrolling has been provided.
26 26
27 Shashi Shekar B.S., a0876501, 16 Mar, 2006, OMAPS00061462 27 Shashi Shekar B.S., a0876501, 16 Mar, 2006, OMAPS00061462
28 Icon support for SetupMenu & Select item. 28 Icon support for SetupMenu & Select item.
29 29
30 * 30 *
31 * ************************************************ 31 * ************************************************
32 * User: xreddymn Date: Dec-16-2004 32 * User: xreddymn Date: Dec-16-2004
33 * Updated in $/GSM/Condat/MS/SRC/MFW 33 * Updated in $/GSM/Condat/MS/SRC/MFW
34 * Added double line display for MFW list menu items 34 * Added double line display for MFW list menu items
70 #define MNU_LIST 0x0030 /* list items on page */ 70 #define MNU_LIST 0x0030 /* list items on page */
71 #define MNU_LIST_ICONS 0x0040 /* list items on page with icon for each */ 71 #define MNU_LIST_ICONS 0x0040 /* list items on page with icon for each */
72 #define MNU_PAGE_ICONS 0x0050 /* page with multiple 2-state icons */ 72 #define MNU_PAGE_ICONS 0x0050 /* page with multiple 2-state icons */
73 #define MNU_LIST_2_LINE 0x0060 /* list with each item occupying two lines. xreddymn Dec-16-2004 */ 73 #define MNU_LIST_2_LINE 0x0060 /* list with each item occupying two lines. xreddymn Dec-16-2004 */
74 #define MNU_LIST_COLOUR 0x00F0 /* list items on page - each item is a different colour */ 74 #define MNU_LIST_COLOUR 0x00F0 /* list items on page - each item is a different colour */
75 //May 18, 2006 REF: DRT OMAPS00076438 xdeepadh 75 //May 18, 2006 REF: DRT OMAPS00076438 xdeepadh
76 #define MNU_DISPLAY 0x00F0 /* display mode mask */ 76 #define MNU_DISPLAY 0x00F0 /* display mode mask */
77 77
78 /* ITEM SELECTION */ 78 /* ITEM SELECTION */
79 #define MNU_FRAMED 0x0100 /* selection by frame */ 79 #define MNU_FRAMED 0x0100 /* selection by frame */
80 #define MNU_CUR_ARROW 0x0200 /* selection by arrow */ 80 #define MNU_CUR_ARROW 0x0200 /* selection by arrow */
165 U8 nItems; /* number of menu items */ 165 U8 nItems; /* number of menu items */
166 U32 mnuColour; //GW index as to what the colour is going to be 166 U32 mnuColour; //GW index as to what the colour is going to be
167 int hdrId; //GW Added 167 int hdrId; //GW Added
168 MfwIcnAttr *bgdBitmap; //GW Added for background for menus 168 MfwIcnAttr *bgdBitmap; //GW Added for background for menus
169 int unused; //GW Added and removed definition 169 int unused; //GW Added and removed definition
170 170
171 /* 05-June-2006, x0045876 (OMAPS00060424 - Header Toggle) */ 171 /* 05-June-2006, x0045876 (OMAPS00060424 - Header Toggle) */
172 BOOL header_toggle; 172 BOOL header_toggle;
173 173
174 // Shashi Shekar B.S., a0876501, Feb 4, 2006, DR: OMAPS00061462 174 // Shashi Shekar B.S., a0876501, Feb 4, 2006, DR: OMAPS00061462
175 #ifdef FF_MMI_SAT_ICON 175 #ifdef FF_MMI_SAT_ICON
176 MfwIcnAttr *icon; /* Icon to be displayed in the header.*/ 176 MfwIcnAttr *icon; /* Icon to be displayed in the header.*/
177 #endif 177 #endif
178 } MfwMnuAttr; 178 } MfwMnuAttr;
188 MfwHnd useStrID; /* GW 0=Text is passed as ID's , 1=txt is strings */ 188 MfwHnd useStrID; /* GW 0=Text is passed as ID's , 1=txt is strings */
189 MfwHnd useDefLang; /* GW 0=Set text display to ascii, 1=txt is in language default*/ 189 MfwHnd useDefLang; /* GW 0=Set text display to ascii, 1=txt is in language default*/
190 U8 level; /* current level */ 190 U8 level; /* current level */
191 U8 lShift[MAX_LVL]; /* shift scrolling */ 191 U8 lShift[MAX_LVL]; /* shift scrolling */
192 U8 lCursor [MAX_LVL]; /* level cursor position */ 192 U8 lCursor [MAX_LVL]; /* level cursor position */
193 U8 scrollMode; 193 U8 scrollMode;
194 int nLines; /* Number of lines that ftn on screen */ 194 int nLines; /* Number of lines that ftn on screen */
195 int lineHeight; /* Height per line */ 195 int lineHeight; /* Height per line */
196 UBYTE textDCS; /* specify the data type of text (ASCII, Unicode etc) */ 196 UBYTE textDCS; /* specify the data type of text (ASCII, Unicode etc) */
197 } MfwMnu; 197 } MfwMnu;
198 198