FreeCalypso > hg > fc-tourmaline
comparison src/ui/bmi/mmiMenu.c @ 156:9e0e3dc6ed94
mmiMenu.c: misc formatting fixes
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 16 Nov 2020 20:04:06 +0000 |
parents | c0052fe355d3 |
children |
comparison
equal
deleted
inserted
replaced
155:1de0238e3223 | 156:9e0e3dc6ed94 |
---|---|
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: Menus | 14 $Module: Menus |
15 $File: MmiMenu.c | 15 $File: MmiMenu.c |
16 $Revision: 1.0 | 16 $Revision: 1.0 |
17 | 17 |
18 $Author: Condat(UK) | 18 $Author: Condat(UK) |
19 $Date: 25/10/00 | 19 $Date: 25/10/00 |
20 | 20 |
21 ******************************************************************************** | 21 ******************************************************************************** |
22 | 22 |
23 Description: | 23 Description: |
24 | 24 |
135 /* next define used for code that might be removed | 135 /* next define used for code that might be removed |
136 */ | 136 */ |
137 #define KEEP 0 | 137 #define KEEP 0 |
138 | 138 |
139 | 139 |
140 | |
141 | |
142 /******************************************************************************* | 140 /******************************************************************************* |
143 | 141 |
144 Global Data Elements | 142 Global Data Elements |
145 | 143 |
146 *******************************************************************************/ | 144 *******************************************************************************/ |
147 | 145 |
148 /* Menus display area | 146 /* Menus display area |
149 */ | 147 */ |
150 | |
151 | 148 |
152 | 149 |
153 /******************************************************************************* | 150 /******************************************************************************* |
154 | 151 |
155 Module Global Data Elements | 152 Module Global Data Elements |
201 | 198 |
202 return MfwResOk; | 199 return MfwResOk; |
203 } | 200 } |
204 | 201 |
205 | 202 |
206 | |
207 | |
208 /******************************************************************************* | 203 /******************************************************************************* |
209 | 204 |
210 Public Routines | 205 Public Routines |
211 | 206 |
212 *******************************************************************************/ | 207 *******************************************************************************/ |
253 { | 248 { |
254 return MNU_ITEM_HIDE; | 249 return MNU_ITEM_HIDE; |
255 } | 250 } |
256 | 251 |
257 | 252 |
258 | |
259 | |
260 | |
261 | |
262 | |
263 /******************************************************************************* | 253 /******************************************************************************* |
264 | 254 |
265 $Function: menuIsFocussed | 255 $Function: menuIsFocussed |
266 | 256 |
267 $Description: Returns 1 if the menu window has the focus, else returns 0. | 257 $Description: Returns 1 if the menu window has the focus, else returns 0. |
274 | 264 |
275 int menuIsFocussed( void ) | 265 int menuIsFocussed( void ) |
276 { | 266 { |
277 return winIsFocussed( win ); | 267 return winIsFocussed( win ); |
278 } | 268 } |
279 | |
280 | |
281 | |
282 | |
283 | |
284 | |
285 | |
286 | 269 |
287 | 270 |
288 /******************************************************************************* | 271 /******************************************************************************* |
289 | 272 |
290 $Function: menuEnableSimMenu | 273 $Function: menuEnableSimMenu |
311 */ | 294 */ |
312 SimWindow = simWindow; | 295 SimWindow = simWindow; |
313 } | 296 } |
314 | 297 |
315 | 298 |
316 | |
317 | |
318 | |
319 | |
320 /******************************************************************************* | 299 /******************************************************************************* |
321 | 300 |
322 $Function: menuDisableSimMenu | 301 $Function: menuDisableSimMenu |
323 | 302 |
324 $Description: Hides the SIM toolkit menu item | 303 $Description: Hides the SIM toolkit menu item |
337 /******************************************************************************* | 316 /******************************************************************************* |
338 | 317 |
339 End Of File | 318 End Of File |
340 | 319 |
341 *******************************************************************************/ | 320 *******************************************************************************/ |
342 |