comparison src/ui/bmi/mmiSoftKeys.h @ 125:87d2aa0ddde5

mmiSoftKeys.h: bogotab fixes
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 10 Nov 2020 06:25:29 +0000
parents c0052fe355d3
children 62480f597962
comparison
equal deleted inserted replaced
124:073242ccbb63 125:87d2aa0ddde5
1 /******************************************************************************* 1 /*******************************************************************************
2 2
3 CONDAT (UK) 3 CONDAT (UK)
4 4
5 ******************************************************************************** 5 ********************************************************************************
6 6
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: Softkeys 14 $Module: Softkeys
15 $File: MmiSoftKeys.h 15 $File: MmiSoftKeys.h
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
27 $History: MmiSoftkeys.h 27 $History: MmiSoftkeys.h
28 28
29 xrashmic 5 Oct, 2005 MMI-SPR-29356, MMI-SPR-29357 29 xrashmic 5 Oct, 2005 MMI-SPR-29356, MMI-SPR-29357
30 To display '?' to indicate to the user that help is available for a STK menu 30 To display '?' to indicate to the user that help is available for a STK menu
31 31
32 25/10/00 Original Condat(UK) BMI version. 32 25/10/00 Original Condat(UK) BMI version.
33 33
34 34
35 $End 35 $End
36 36
37 *******************************************************************************/ 37 *******************************************************************************/
63 } SoftKeysSetup; 63 } SoftKeysSetup;
64 64
65 #ifdef FF_MMI_FILEMANAGER 65 #ifdef FF_MMI_FILEMANAGER
66 typedef enum 66 typedef enum
67 { 67 {
68 MENU_KEY_UP_DOWN_CENTER = 0, 68 MENU_KEY_UP_DOWN_CENTER = 0,
69 MENU_KEY_UP_DOWN_PLAY , 69 MENU_KEY_UP_DOWN_PLAY ,
70 MENU_KEY_UP_DOWN_STOP, 70 MENU_KEY_UP_DOWN_STOP,
71 MENU_KEY_ALL, 71 MENU_KEY_ALL,
72 MENU_KEY_WAIT 72 MENU_KEY_WAIT
73 }T_MENU_KEY; 73 }T_MENU_KEY;
74 #endif 74 #endif
75 75
76 //Softkey format definitions 76 //Softkey format definitions
77 #define SK_TALLBGD 0x0001 /* blank 2 lines of text over width of display */ 77 #define SK_TALLBGD 0x0001 /* blank 2 lines of text over width of display */
78 78
79 #define SK_ROUNDBOX 0x0010 /* draw rounded rectangle round text*/ 79 #define SK_ROUNDBOX 0x0010 /* draw rounded rectangle round text*/
80 #define SK_FILLBOX 0x0020 /* draw filled rectangle round text*/ 80 #define SK_FILLBOX 0x0020 /* draw filled rectangle round text*/
81 81
82 #define SK_DEFAULTCOL 0x0100 /* use default colour (i.e. do not change current colours) */ 82 #define SK_DEFAULTCOL 0x0100 /* use default colour (i.e. do not change current colours) */
83 83
84 SoftKeysResult softKeysAttributes( U8 font, UBYTE displayAttibutes); 84 SoftKeysResult softKeysAttributes( U8 font, UBYTE displayAttibutes);
85 /* 85 /*
86 * Change the <font> and <displayAttibutes> for _all_ softkeys. 86 * Change the <font> and <displayAttibutes> for _all_ softkeys.
87 * All consecutive calls of softKeysUpdate() will reflect the change. 87 * All consecutive calls of softKeysUpdate() will reflect the change.
161 void displayHelpSymbol(void); //xrashmic 5 Oct, 2005 MMI-SPR-29356, MMI-SPR-29357 161 void displayHelpSymbol(void); //xrashmic 5 Oct, 2005 MMI-SPR-29356, MMI-SPR-29357
162 162
163 void displayCameraIcon(void); 163 void displayCameraIcon(void);
164 164
165 #endif 165 #endif
166