FreeCalypso > hg > tcs211-c139
comparison g23m/condat/ms/src/mfw/mfw_mmi.h @ 0:509db1a7b7b8
initial import: leo2moko-r1
author | Space Falcon <falcon@ivan.Harhan.ORG> |
---|---|
date | Mon, 01 Jun 2015 03:24:05 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:509db1a7b7b8 |
---|---|
1 /* | |
2 +--------------------------------------------------------------------+ | |
3 | PROJECT: MMI-Framework (8417) $Workfile:: mfw_mmi.h $| | |
4 | $Author:: Es $ CONDAT GmbH $Revision:: 3 $| | |
5 | CREATED: 21.09.98 $Modtime:: 2.02.99 17:02 $| | |
6 | STATE : code | | |
7 +--------------------------------------------------------------------+ | |
8 | |
9 MODULE : MFW_MMI | |
10 | |
11 PURPOSE : MMI MFW application | |
12 | |
13 EXPORT : | |
14 | |
15 TO DO : | |
16 | |
17 $History:: mfw_mmi.h $ | |
18 * | |
19 * ***************** Version 3 ***************** | |
20 * User: Es Date: 17.02.99 Time: 20:00 | |
21 * Updated in $/GSM/DEV/MS/SRC/MFW | |
22 * | |
23 * ***************** Version 2 ***************** | |
24 * User: Es Date: 8.02.99 Time: 19:07 | |
25 * Updated in $/GSM/DEV/MS/SRC/MFW | |
26 * | |
27 * ***************** Version 1 ***************** | |
28 * User: Es Date: 8.12.98 Time: 16:59 | |
29 * Created in $/GSM/DEV/MS/SRC/MFW | |
30 */ | |
31 | |
32 #ifndef _DEF_MFW_MMI_H_ | |
33 #define _DEF_MFW_MMI_H_ | |
34 | |
35 | |
36 /* PROTOTYPES */ | |
37 void mmi_main (void); | |
38 void mmiInit (void); | |
39 void mmiExit (void); | |
40 | |
41 | |
42 /************************************************************************ | |
43 | |
44 The following definitions are procedures in the BMI that are accessed by the MFW. | |
45 | |
46 This header file should be included by any MFW procedure that calls a BMI function | |
47 | |
48 and by the BMI procedures that define the functions to ensure that the definitions | |
49 | |
50 match | |
51 | |
52 ************************************************************************/ | |
53 | |
54 /**********************/ | |
55 /* From MMIResources */ | |
56 /**********************/ | |
57 | |
58 //Function to get string associated with an ID | |
59 char *MmiRsrcGetText( int Id ); | |
60 | |
61 //Functions to select/restore colour | |
62 void resources_setColour(unsigned int colIndex); | |
63 void resources_setSKColour(unsigned int colIndex); | |
64 void resources_setHLColour(unsigned int colIndex); | |
65 void resources_setTitleColour(unsigned int colIndex); | |
66 | |
67 void resources_restoreColour( void ); | |
68 void resources_restoreMnuColour(void); | |
69 | |
70 void resources_setColourMnuItem( int txtId); | |
71 | |
72 //Function to get the height allocated for the menu title | |
73 int res_getTitleHeight( void ); | |
74 | |
75 | |
76 #endif | |
77 |