1 #ifndef __INSURANCE_H
2 #define __INSURANCE_H
3 
4 #include <string_theory/string>
5 
6 
7 #define INS_FONT_COLOR			2
8 #define INS_FONT_COLOR_RED		FONT_MCOLOR_RED
9 #define INS_FONT_BIG			FONT14ARIAL
10 #define INS_FONT_MED			FONT12ARIAL
11 #define INS_FONT_SMALL			FONT10ARIAL
12 
13 #define INS_FONT_BTN_COLOR		FONT_MCOLOR_WHITE
14 #define INS_FONT_BTN_SHADOW_COLOR	2
15 
16 #define INS_FONT_SHADOW			FONT_MCOLOR_WHITE
17 
18 #define INSURANCE_BULLET_TEXT_OFFSET_X	21
19 
20 #define INS_INFO_LEFT_ARROW_BUTTON_X	(LAPTOP_SCREEN_UL_X     +  71)
21 #define INS_INFO_RIGHT_ARROW_BUTTON_X	(LAPTOP_SCREEN_UL_X     + 409)
22 #define INS_INFO_ARROW_BUTTON_Y		(LAPTOP_SCREEN_WEB_UL_Y + 354)
23 
24 
25 void EnterInsurance(void);
26 void ExitInsurance();
27 void RenderInsurance(void);
28 
29 void InitInsuranceDefaults(void);
30 void DisplayInsuranceDefaults(void);
31 void RemoveInsuranceDefaults(void);
32 void DisplaySmallRedLineWithShadow( UINT16 usStartX, UINT16 usStartY, UINT16 EndX, UINT16 EndY);
33 ST::string GetInsuranceText(UINT8 ubNumber);
34 
35 #endif
36