| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- #ifndef __UI_BLOCK_H__
- #define __UI_BLOCK_H__
- #define SIGNAL_ICON_X 6
- #define SIGNAL_ICON_WX (9+20)
- #define NET_ICON_X (SIGNAL_ICON_X+SIGNAL_ICON_WX+2)
- #define NET_ICON_WX (32)
- #define GPS_ICON_X (NET_ICON_X+NET_ICON_WX+2)//(NET_ICON_X+NET_ICON_WX+1)
- #define GPS_ICON_WX (24)
- #define SMS_ICON_X (GPS_ICON_X+GPS_ICON_WX)//(GPS_ICON_X+GPS_ICON_WX+2)
- #define SMS_ICON_WX 0//(8)
- #define TIME_ICON_X (SMS_ICON_X+SMS_ICON_WX+1)
- #define TIME_ICON_WX (5*16)
- #define EAR_ICON_X (TIME_ICON_X+TIME_ICON_WX+1)
- #define EAR_ICON_WX (11)
- #define LOCK_ICON_X (EAR_ICON_X+EAR_ICON_WX+2)
- #define LOCK_ICON_WX 8
- #define BAT_ICON_WX (38)
- #define BAT_ICON_X (GLCD_WIDTH-BAT_ICON_WX-1)
- #define WARN_TTS_INTERVAL 30000 //定时提示充电间隔
- #define MIN_PWR_LEVEL 320 //低于此电压后不工作
- #define WARN_PWR_LEVEL 340 //提示请充电电压
- extern unsigned char netshowvalue;
- extern unsigned char ctecCurrentSet;
- extern const char ZZD_PWRMODE[3];
- void pwrModeSetCmd(unsigned char pwrMode);
- 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 pwrModeAckHandler(unsigned char seg1, unsigned char seg2);
- void uiShowShutDown(char update);
- void uiShowShutDownResponse(void);
- unsigned short getSmsXAddr(void);
- void showLoading(void);
- bool isUiSwitchReady(void);
- #ifdef USE_LEFT_MOVING
- void movingShowNames(unsigned int dlyInterval,unsigned char reset,unsigned char now,unsigned char voice);
- void mainScreenShowMoving(unsigned short y, unsigned char reset,char *gname,char *uname,char *voicePri);
- void leftMoveStr(char *name, unsigned short len);
- void getRealShow(char *des, char *src,int maxsize);
- #endif
- #endif
|