comparison src/ui3/bmi/mmiSettings.h @ 421:6a4d9f47793e

src/ui3/bmi: file renames to make the case consistent
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 21 Jan 2018 03:28:53 +0000
parents src/ui3/bmi/MmiSettings.h@e8ddbb0837ed
children
comparison
equal deleted inserted replaced
420:e8ddbb0837ed 421:6a4d9f47793e
1 #ifndef _DEF_MMI_SETTINGS_H_
2 #define _DEF_MMI_SETTINGS_H_
3
4 /*******************************************************************************
5
6 CONDAT (UK)
7
8 ********************************************************************************
9
10 This software product is the property of Condat (UK) Ltd and may not be
11 disclosed to any third party without the express permission of the owner.
12
13 ********************************************************************************
14
15 $Project name: Basic MMI
16 $Project code: BMI (6349)
17 $Module: Settings
18 $File: MmiSettings.h
19
20 Jul 28, 2004 REF: CRR 20899 xkundadu
21 Description: No identification for user whether 'Any-key-Answer' is On/Off
22 Solution: Added the function settingsFocusCurSelAnyKeyAns
23 prototype.
24
25 $Revision: 1.0
26
27 $Author: Condat(UK)
28 $Date: 25/10/00
29
30 ********************************************************************************
31
32 Description:
33
34
35 ********************************************************************************
36 Oct 30, 2006 ER:OMAPS00091029 x0039928(sumanth)
37 Bootup time measurement
38
39 May 04, 2005 REF: CRR 30285 x0021334
40 Description: SMS Status Request in idle and dedicated mode (using Menu) setting does not work
41 Solution: status of sms status request is read and focus is set accrodingly.
42
43 March 2, 2005 REF: CRR 11536 x0018858
44 Description: Reply path not supported while sending a reply.
45 Solution: Added menu option for the reply path.
46
47 Jul 22,2004 CRR:20896 xrashmic - SASKEN
48 Description: The current time format is not highlighted
49 Fix: Instead of providing the submenu directly we call a function
50 where we set the menu and also higlight the previously selected menu item
51
52 Jul 29, 2004 REF = CRR 20898 xkundadu
53 Description: No identification for user whether 'Auto-Answer' is On/Off
54 Solution: Added the function settingsFocusCurSelAutoAns prototype.
55
56 Issue Number : SPR#12822 on 31/03/04 by v vadiraj
57
58 *******************************************************************************
59
60 Required Include Files
61
62 *******************************************************************************/
63
64
65 /* PROTOTYPES */
66
67
68 // Jul 29, 2004 REF = CRR 20898 xkundadu
69 // Added the function settingsFocusCurSelAutoAns() prototype.
70 void settingsFocusCurSelAutoAns(void);
71 // Jul 28, 2004 REF: CRR 20899 xkundadu
72 // Added the function settingsFocusCurSelAnyKeyAns() prototype.
73 void settingsFocusCurSelAnyKeyAns(void);
74
75 T_MFW settingsRecReportControl(UBYTE ReportStatus);
76 int settingsGetStatus(int flagBit);
77
78 int settingsSilentModeOff (void);
79 int settingsSilentModeOn (void);
80 int settingsKeyPadLockOn (void);
81 int settingsKeyPadLockOff (void);
82 int settingsAutoRedialOn (MfwMnu* m, MfwMnuItem* i);
83 int settingsAutoRedialOff (MfwMnu* m, MfwMnuItem* i);
84 int settingsAutoAnswerOn (MfwMnu* m, MfwMnuItem* i);
85 int settingsAutoAnswerOff (MfwMnu* m, MfwMnuItem* i);
86 int settingsAnyKeyAnswerOn (MfwMnu* m, MfwMnuItem* i);
87 int settingsAnyKeyAnswerOff (MfwMnu* m, MfwMnuItem* i);
88 int factoryReset (MfwMnu* m, MfwMnuItem* i);
89 int settingsVoiceMail (MfwMnu* m, MfwMnuItem* i);
90 int settingsScNumber (MfwMnu* m, MfwMnuItem* i);
91 int SmsValidityPeriod (MfwMnu* m, MfwMnuItem* i);
92 int SmsStatusReportRequest(MfwMnu* m, MfwMnuItem* i); /* Marcus: Issue 1170: 30/09/2002 */
93 //March 2, 2005 REF: CRR 11536 x0018858
94 int SmsReplyPathRequest(MfwMnu* m, MfwMnuItem* i); /*Added function declaration for
95 setting reply path*/
96 void settingsInit (void);
97 void settingsExit (void);
98 /* GW Added as external to initialise FFS data when FFS file does not exist*/
99 void setUserSettings2Default (void);
100 void settingsShowStateAnykeyAnswer (void);
101 void settingsShowStateAutoAnswer (void);
102 void settingsShowStateAutoRedial(void);
103 void settingsShowStateCBDisable(void);
104 void settingsSetStatus( unsigned int statusId, int setOrClear ); /*x0039928 - Lint warning fix */
105 // change by Sasken (VVADIRAJ) on March 31th 2004
106 // Issue Number : MMI-SPR-12822
107 void settingsFocusNwIconCurSel(void);
108
109 //Jul 22,2004 CRR:20896 xrashmic - SASKEN
110 void settingsFocusTimeFormatCurSel(void);
111
112 // May 04, 2005 REF: CRR 30285 x0021334
113 void settingsSmsStatusReportCurSel(void);
114 int menuBootTimeMsmt(MfwMnu* m, MfwMnuItem* i); /*OMAPS00091029 x0039928(sumanth)*/
115 #ifdef NEPTUNE_BOARD
116 #ifdef MMI_POWER_MANAGEMENT_TEST
117
118 /* Used to select the power Management */
119 void mmi_PowerManagement(void);
120
121 /* Used to select the power management Duration */
122 int mmi_PMDuration(MfwMnu* m, MfwMnuItem* i);
123 #endif
124 #endif
125 #define SET_SETTING (1)
126 #define CLEAR_SETTING (0)
127
128 #endif
129