Lemei.res
3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/* Needed header files of the compile option in XML files, if you need others need to add here */
#include "mmi_features.h"
#include "custresdef.h"
#if defined(__MMI_OP02_LEMEI__)
/* Need this line to tell parser that XML start, must after all #include. */
<?xml version="1.0" encoding="UTF-8"?>
/* APP tag, include your app name defined in MMIDataType.h */
<APP id="APP_LEMEI">
/* When you use any ID of other module, you need to add
that header file here, so that Resgen can find the ID */
<!--Include Area-->
<INCLUDE file="MainMenuDef.h"/>
<INCLUDE file="GlobalResDef.h"/>
<!-----------------------------------------------------String Resource Area----------------------------------------------------->
/* String ID of you Application, we will get string from ref_list.txt for all languages */
<STRING id="STR_ID_LEMEI_MENUITEM"/>
<STRING id="STR_ID_LOCAL_AUDIO"/>
<STRING id="STR_ID_LOCAL_PICTURE"/>
<STRING id="STR_ID_LOCAL_VIDEO"/>
<STRING id="STR_ID_FILE_TOO_LARGE"/>
<STRING id="STR_ID_LEMEI_SUBJECT"/>
<!-----------------------------------------------------Image Resource Area------------------------------------------------------>
/* Image Id and path of you Application , you can use compile option in Path, but need out of "" */
<IMAGE id = "IMG_ID_LEMEI_CAMERA_UP">CUST_IMG_PATH"\\\\MainLCD\\\\Lemei\\\\LM_TakePho_UP.png"</IMAGE>;
<IMAGE id = "IMG_ID_LEMEI_CAMERA_DOWN">CUST_IMG_PATH"\\\\MainLCD\\\\Lemei\\\\LM_TakePho_DN.png"</IMAGE>;
<IMAGE id = "IMG_ID_LEMEI_VIDEO_RECORDER_UP">CUST_IMG_PATH"\\\\MainLCD\\\\Lemei\\\\LM_Video_UP.png"</IMAGE>;
<IMAGE id = "IMG_ID_LEMEI_VIDEO_RECORDER_DOWN">CUST_IMG_PATH"\\\\MainLCD\\\\Lemei\\\\LM_Video_DN.png"</IMAGE>;
<IMAGE id = "IMG_ID_LEMEI_AUDIO_RECORDER_UP">CUST_IMG_PATH"\\\\MainLCD\\\\Lemei\\\\LM_REC_UP.png"</IMAGE>;
<IMAGE id = "IMG_ID_LEMEI_AUDIO_RECORDER_DOWN">CUST_IMG_PATH"\\\\MainLCD\\\\Lemei\\\\LM_REC_DN.png"</IMAGE>;
<IMAGE id = "IMG_ID_LEMEI_BG">CUST_IMG_PATH"\\\\MainLCD\\\\Lemei\\\\LM_BG.png"</IMAGE>;
/* For the detail of scope="XML" please check user manual */
<!------------------------------------------------------Menu Resource Area------------------------------------------------------>
/* Only MENUITEM need compile option, MENUITEM_ID does not need */
<!--Menu Tree Area-->
<MENU id="MENUID_LEMEI_OPTIONS_MENU" type="OPTION" str="STR_ID_LEMEI_MENUITEM" >
/* Could write MENUITEM in menu directly */
<MENUITEM id="MENU_ID_LEMEI_OPTIONS_LOCAL_PICTURE" str="STR_ID_LOCAL_PICTURE"/>
<MENUITEM id="MENU_ID_LEMEI_OPTIONS_LOCAL_VIDEO" str="STR_ID_LOCAL_VIDEO"/>
<MENUITEM id="MENU_ID_LEMEI_OPTIONS_LOCAL_AUDIO" str="STR_ID_LOCAL_AUDIO"/>
</MENU>
<!------------------------------------------------------Other Resource---------------------------------------------------------->
<SCREEN id="SCR_ID_LEMEI_MAIN"/>
<SCREEN id="SCR_ID_LEMEI_OPTIONS"/>
<SCREEN id="GRP_ID_LEMEI"/>
</APP>
#endif /*__MMI_OP02_LEMEI__*/