Subversion Repositories Kolibri OS

Rev

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

Rev 5634 Rev 5674
Line 60... Line 60...
60
void Tip(int y, dword caption, id, arrow)
60
void Tip(int y, dword caption, id, arrow)
61
{
61
{
62
	int i;
62
	int i;
63
	DrawBar(17,y,160,1,0xEFEDEE);
63
	DrawBar(17,y,160,1,0xEFEDEE);
64
	DrawFilledBar(17, y+1, 160, 16);
64
	DrawFilledBar(17, y+1, 160, 16);
65
	WriteText(25,y+5,0x80,sc.work_text,caption);
65
	WriteText(25,y+5,0x80,system.color.work_text,caption);
66
	if (id) DefineButton(159,y+1,16,16,id+BT_HIDE+BT_NOFRAME,0); //arrow button
66
	if (id) DefineButton(159,y+1,16,16,id+BT_HIDE+BT_NOFRAME,0); //arrow button
67
	WriteText(165,y+5,0x80,sc.work_text,arrow); //arrow
67
	WriteText(165,y+5,0x80,system.color.work_text,arrow); //arrow
68
	DrawBar(17,y+17,160,1,sc.work_graph);
68
	DrawBar(17,y+17,160,1,system.color.work_graph);
69
}
69
}
Line 70... Line 70...
70
 
70
 
71
 
71