1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- #ifndef __UI_BLOCK_H__
- #define __UI_BLOCK_H__
- #define SIGNAL_ICON_X 0
- #define SIGNAL_ICON_WX (7+10)
- #define NET_ICON_X (SIGNAL_ICON_X+SIGNAL_ICON_WX+2)
- #define NET_ICON_WX (16)
- #define GPS_ICON_X (NET_ICON_X+NET_ICON_WX+2)
- #define GPS_ICON_WX (17)
- #define SMS_ICON_X (GPS_ICON_X+GPS_ICON_WX+2)
- #define SMS_ICON_WX (10)
- #define TIME_ICON_X (SMS_ICON_X+SMS_ICON_WX+2)
- #define TIME_ICON_WX (5*8)
- #define EAR_ICON_X (TIME_ICON_X+TIME_ICON_WX+2)
- #define EAR_ICON_WX (14)
- #define LOCK_ICON_X (EAR_ICON_X+EAR_ICON_WX+2)
- #define LOCK_ICON_WX 8
- #define BAT_ICON_X (LOCK_ICON_X+LOCK_ICON_WX+2)
- #define BAT_ICON_WX (21)
- #define MIN_PWR_LEVEL 320 //低于此电压后不工作
- #define WARN_PWR_LEVEL 330 //提示请充电电压
- extern unsigned char netshowvalue;
- void uiShowStatusBar(char flash,unsigned int exeInterval);
- void uiShowMainInterface(char status,unsigned int);
- void uiShowMenuMain(char update);
- void MenuMainResponse(void);
- void uiShowGUSel(char StatusUpdate,unsigned int exeInterval,char type);
- void GroupSelResponse();
- void UserSelResponse();
- void uiShowMenuSysSetup(char flash);
- void sysTemSetResponse(void);
- void uiShowMenuLocationSel(char flash);
- void loationSetResponse(void);
- void uiShowInformation(char update);
- void uiShowInformationResponse(void);
- void uiShowLcdSel(char StatusUpdate);
- void uiShowLcdSelResponse(void);
- void uiShowNetSel(char StatusUpdate);
- void uiShowNetSelResponse(void);
- void uiShowSimSel(char StatusUpdate);
- void uiShowSimSelResponse(void);
- void uiShowPwrSel(char StatusUpdate);
- void uiShowPwrSelResponse(void);
- void uiShowServerPassSel(char StatusUpdate);
- void uiShowServerSelPassResponse(void);
- void uiShowServerSel(char StatusUpdate);
- void uiShowServerSelResponse(void);
- void uiShowVersionSel(char StatusUpdate);
- void uiShowVersionSelResponse(void);
- void uiShowVoiceSel(char StatusUpdate);
- void uiShowVoiceSelResponse(void);
- void pwrModeAckHandler(int seg1);
- unsigned short getSmsXAddr(void);
- void pwrModeSetCmd(unsigned char pwrMode);
- #endif
|