Subversion Repositories Kolibri OS

Rev

Rev 7640 | Rev 8779 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7640 Rev 7806
Line 51... Line 51...
51
}
51
}
Line 52... Line 52...
52
 
52
 
53
void SelectList_DrawBorder() {
53
void SelectList_DrawBorder() {
54
	DrawRectangle3D(select_list.x-2, select_list.y-2,
54
	DrawRectangle3D(select_list.x-2, select_list.y-2,
55
		select_list.w+3+scroll1.size_x, select_list.h+3, 
55
		select_list.w+3+scroll1.size_x, select_list.h+3, 
56
		system.color.work_dark, system.color.work_light);
56
		sc.work_dark, sc.work_light);
57
	DrawRectangle(select_list.x-1, select_list.y-1, select_list.w+1+scroll1.size_x, select_list.h+1, system.color.work_graph);
57
	DrawRectangle(select_list.x-1, select_list.y-1, select_list.w+1+scroll1.size_x, select_list.h+1, sc.work_graph);
Line 58... Line 58...
58
}
58
}
59
 
59
 
60
void SelectList_DrawScroller()
60
void SelectList_DrawScroller()
61
{
61
{
62
	scroll1.bckg_col = MixColors(system.color.work, 0xBBBbbb, 80);
62
	scroll1.bckg_col = MixColors(sc.work, 0xBBBbbb, 80);
Line 63... Line 63...
63
	scroll1.frnt_col = MixColors(system.color.work,0xFFFfff,120);
63
	scroll1.frnt_col = MixColors(sc.work,0xFFFfff,120);
64
	scroll1.line_col = system.color.work_graph;
64
	scroll1.line_col = sc.work_graph;
65
 
65