Subversion Repositories Kolibri OS

Rev

Rev 7491 | Rev 7637 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
4042 leency 1
 
5695 leency 2
	dword i;
5532 leency 3
4
 
5703 leency 5
	word sc_y = files.y;
6
	word sc_h = files.h - 16;
7
	word sc_slider_y;
5532 leency 8
9
 
4042 leency 10
	{
11
		sc_slider_y = sc_y;
5532 leency 12
		sc_slider_h = sc_h - 1;
13
	}
4042 leency 14
	else
15
	{
16
		sc_slider_y = files.first * sc_h / files.count + sc_y;
5532 leency 17
		sc_slider_h = sc_h * files.visible - files.visible / files.count;
18
		if (sc_slider_h < 20) sc_slider_h = 20; //minimal scroll width
19
		if (sc_slider_h > sc_h-sc_slider_y+56) || (files.first+files.visible>=files.count) sc_slider_y= sc_y + sc_h - sc_slider_h - 1; //для большого списка
6566 leency 20
	}
4042 leency 21
	//slider
5532 leency 22
	DrawRectangle(sc_x,sc_slider_y,16,sc_slider_h,col.graph);
7634 leency 23
	DrawRectangle3D(sc_x+1,sc_slider_y+1,14,sc_slider_h-2, system.color.work_light , system.color.work_dark);
7462 leency 24
	if (!scroll_used) for (i=0; i<13; i++) DrawBar(sc_x + 2 + i, sc_slider_y+2, 1, sc_slider_h-3, col.work_gradient[13-i]);
7634 leency 25
	if (scroll_used)  for (i=0; i<13; i++) DrawBar(sc_x + 2 + i, sc_slider_y+2, 1, sc_slider_h-3, col.work_gradient[i]);
26
	//area before slider
5532 leency 27
	if (sc_slider_y > sc_y + 1)
28
	{
29
		DrawBar(sc_x+1, sc_y,   15, 1, col.slider_bg_left);
7634 leency 30
		DrawBar(sc_x+1, sc_y+1,  1, sc_slider_y-sc_y-1, col.slider_bg_left);
31
		DrawBar(sc_x+2, sc_y+1, 14, sc_slider_y-sc_y-1, col.slider_bg_big);
32
	}
5532 leency 33
	//area after slider
34
	if (sc_h-sc_slider_h+sc_y-2>sc_slider_y)
5703 leency 35
	{
5532 leency 36
		DrawBar(sc_x+1, sc_slider_y + sc_slider_h+1, 15, 1, col.slider_bg_left);
7634 leency 37
		DrawBar(sc_x+1, sc_slider_y + sc_slider_h+2,  1, sc_h-sc_slider_h-sc_slider_y+sc_y-2, col.slider_bg_left);
38
		DrawBar(sc_x+2, sc_slider_y + sc_slider_h+2, 14, sc_h-sc_slider_h-sc_slider_y+sc_y-2, col.slider_bg_big);
39
	}
5532 leency 40
}
4042 leency 41
42
 
6678 leency 43
{
4042 leency 44
	DrawRectangle(x,y,width,height,col.graph);
7634 leency 45
	DrawRectangle3D(x+1,y+1,width-2,height-2, system.color.work_light, system.color.work_dark);
46
	PutPixel(x+width-1, y+1, system.color.work_dark);
7462 leency 47
	DrawFilledBar(x+2, y+2, width-3, height-3);
6050 leency 48
	if (id) DefineHiddenButton(x+1,y+1,width-2,height-2,id);
7462 leency 49
	WriteText(-strlen(text)*6+width/2+x+1,height/2+y-3,0x80,system.color.work_text,text);
50
}
4042 leency 51
52
 
53
{
54
	int i, fill_h;
55
	if (h < 12) {
7634 leency 56
		for (i=0; i
57
	} else {
58
		DrawBar(x, y, w, h, col.work_gradient[12]);
59
	}
60
}
4225 punk_joker 61
62
 
6678 leency 63
void DrawEolitePopup(dword b1_text, b2_text)
6008 leency 64
{
4225 punk_joker 65
	int but_x;
6678 leency 66
	int popin_x = files.w - popin_w / 2 + files.x ;
6278 leency 67
	DrawPopup(popin_x, 160, popin_w, 95, 1, system.color.work, col.graph);
7634 leency 68
	but_x = DrawStandartCaptButton(popin_x+23, 215, POPUP_BTN1, b1_text);
7278 leency 69
	DrawStandartCaptButton(popin_x+23 + but_x, 215, POPUP_BTN2, b2_text);
70
}
7462 leency 71
72
 
73
	dword col_pxl = MixColors(col.graph, col.work, 60);
7634 leency 74
	DrawBar(x+1,y,2,4,col.graph);
75
	DrawBar(x,y+1,4,2,col.graph);
76
	PutPixel(x,y,col_pxl);
7462 leency 77
	PutPixel(x+3,y,col_pxl);
78
	PutPixel(x,y+3,col_pxl);
79
	PutPixel(x+3,y+3,col_pxl);
80
}
7491 leency 81
82
 
83
{
84
	dword tx = -strlen(text)*6+w/2+x;
85
	dword ty = h/2-3+y;
86
	DefineButton(x,y,w,h,id,color_b);
87
	WriteText(tx,ty,0x80,color_t,text);
88
}
4042 leency 89
>