Subversion Repositories Kolibri OS

Rev

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

Rev Author Line No. Line
4042 leency 1
 
8951 leency 2
//                                                   //
3
//                     SCROLL                        //
4
//                                                   //
5
//===================================================//
6
7
 
8947 leency 8
	dword i;
5532 leency 9
10
 
7637 leency 11
	dword sc_y = files.y;
12
	dword sc_h = files.h - 16;
13
	dword sc_slider_y;
14
	dword sc_center;
15
5532 leency 16
 
4042 leency 17
	{
18
		sc_slider_y = sc_y - 1;
8764 leency 19
		sc_slider_h = sc_h + 1;
20
	} else {
8949 leency 21
		sc_slider_y = files.first * sc_h / files.count + sc_y - 1;
8764 leency 22
		sc_slider_h = sc_h * files.visible - files.visible / files.count + 2;
23
		if (sc_slider_h < 20) {
8949 leency 24
			sc_slider_h = 20; //set minimal scroll height
25
		}
26
		if (sc_slider_h > sc_h-sc_slider_y+56) || (files.first+files.visible>=files.count) {
27
			sc_slider_y= sc_y + sc_h - sc_slider_h; //fix for the very long list
28
		}
29
	}
4042 leency 30
	//slider
5532 leency 31
	DrawRectangle(sc_x,sc_slider_y,16,sc_slider_h,sc.work_graph);
7806 leency 32
	DrawRectangle3D(sc_x+1,sc_slider_y+1,14,sc_slider_h-2, sc.work_light , sc.work_dark);
33
	for (i=0; i<13; i++) {
8947 leency 34
		if (!_scroll_used) EDX = col.work_gradient[13-i]; else EDX = col.work_gradient[i];
35
		DrawBar(sc_x + 2 + i, sc_slider_y+2, 1, sc_slider_h-3, EDX);
36
	}
37
7637 leency 38
 
39
40
 
8951 leency 41
	DrawBar(sc_x+4,   sc_center-3, 8,  1, sc.work_graph);
7806 leency 42
	DrawBar(sc_x+4,   sc_center+3, 8,  1, sc.work_graph);
8951 leency 43
7637 leency 44
 
7806 leency 45
	DrawBar(sc_x+4+1, sc_center-2, 8,  1, sc.work_light);
8951 leency 46
	DrawBar(sc_x+4+1, sc_center+4, 8,  1, sc.work_light);
7806 leency 47
7637 leency 48
 
5532 leency 49
	if (sc_slider_y > sc_y + 1)
50
	{
51
		DrawBar(sc_x+1, sc_y,   15, 1, col.slider_bg_left);
7634 leency 52
		DrawBar(sc_x+1, sc_y+1,  1, sc_slider_y-sc_y-1, col.slider_bg_left);
53
		DrawBar(sc_x+2, sc_y+1, 14, sc_slider_y-sc_y-1, col.slider_bg_big);
54
	}
5532 leency 55
	//area after slider
56
	if (sc_h-sc_slider_h+sc_y-2>sc_slider_y)
5703 leency 57
	{
5532 leency 58
		DrawBar(sc_x+1, sc_slider_y + sc_slider_h+1, 15, 1, col.slider_bg_left);
7634 leency 59
		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);
60
		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);
61
	}
5532 leency 62
}
4042 leency 63
64
 
8951 leency 65
//                                                   //
66
//                  FLAT BUTTONS                     //
67
//                                                   //
68
//===================================================//
69
70
 
6678 leency 71
{
4042 leency 72
	DrawRectangle(x,y,width,height,sc.work_graph);
7806 leency 73
	DrawRectangle3D(x+1,y+1,width-2,height-2, sc.work_light, sc.work_dark);
74
	PutPixel(x+width-1, y+1, sc.work_dark);
75
	DrawFilledBar(x+2, y+2, width-3, height-3);
6050 leency 76
	if (id) DefineHiddenButton(x+1,y+1,width-2,height-2,id);
7462 leency 77
	WriteText(-strlen(text)*6+width/2+x+1,height/2+y-3,0x80,sc.work_text,text);
7806 leency 78
}
4042 leency 79
80
 
8951 leency 81
{ int i; for (i=0; i
82
83
 
8927 leency 84
{
8895 leency 85
	#define FW 12
8927 leency 86
	#define FH 16
8895 leency 87
	int numw = calc(number/10)*6+FW;
8927 leency 88
	if (skin_is_dark()) {
8895 leency 89
		DrawFlatButtonSmall(x,y,width,FH,id,text);
90
		return;
91
	}
92
	DrawRectangle(x,y,width,FH,sc.work_graph);
93
	DrawRectangle3D(x+1,y+1,width-2,FH-2, 0x97D194, 0x00A100);
8927 leency 94
	PutPixel(x+width-1, y+1, sc.work_dark);
8895 leency 95
	DrawBar(x+2, y+2, numw, FH-2, 0x6060FF);
8927 leency 96
	WriteText(x+6,FH/2+y-2,0x80,0x444444,itoa(number));
97
	$sub ebx, 1 <<16 + 1
98
	$add ecx, 0xFFFfff-0x444444
99
	$int 64
100
	DrawBar(x+2+numw, y+2, width-3-numw, FH-3, 0x00AA00);
101
	DefineHiddenButton(x+1,y+1,width-2,FH-2,id);
8895 leency 102
	WriteText(-strlen(text)*6+width/2+x+8,FH/2+y-2,0x80,0x444444,text);
8927 leency 103
	$sub ebx, 1 <<16 + 1
8895 leency 104
	$add ecx, 0xFFFfff-0x444444
105
	$int 64
106
}
107
108
 
8951 leency 109
//                                                   //
110
//                     LEFT PANEL                    //
111
//                                                   //
112
//===================================================//
113
4225 punk_joker 114
 
8951 leency 115
{
116
	DrawBar(17,y,160,1,col.list_bg);
117
	DrawBar(17,y+1,1,16,sc.work_light);
118
	DrawFilledBar(18, y+1, 160-1, 16);
119
	DrawBar(17,y+17,160,1,sc.work_graph);
120
	WriteText(25,y+5,0x80,col.list_gb_text,caption);
121
	if (id) DefineButton(159,y+1,16,16,id+BT_HIDE+BT_NOFRAME,0); //arrow button
122
	WriteText(165,y+5,0x80,col.list_gb_text,arrow); //arrow
123
}
124
125
 
126
{
127
	int i;
128
	Tip(actions_y-18, T_ACTIONS, 77, "");
129
	for (i=0; actions[i*3]!=0; i++, actions_y+=DEV_H)
130
	{
131
		DrawBar(17,actions_y,160,DEV_H,0xFFFFFF); //белое
132
		DefineButton(17,actions_y,159,DEV_H,actions[i*3]+BT_HIDE,0xE4DFE1);
133
		WriteText(45,actions_y+4,0x80,0,actions[i*3+1]);
134
		WriteText(-strlen(actions[i*3+2])*6+170,actions_y+4,0x80,0x999999,actions[i*3+2]);
135
		_PutImage(23,actions_y+2, 14,13, i*14*13*3+#factions);
136
	}
137
}
138
139
 
140
{
141
	int start_y = actions_y+159;
142
	int area_h;
143
	DrawBar(2,41,190,15,waves_pal[0]);    //above devices block
144
	DrawBar(17,actions_y+75,160,15,EDX);  //below devices block
145
	DrawBar(2,56,15,actions_y+103,EDX);   //on the left
146
	DrawBar(177,56,15,actions_y+103,EDX); //on the right
147
	area_h = Form.cheight-start_y-2 - status_bar_h;
148
	if (area_h < 268){
149
		PutPaletteImage(#blue_hl, 190, area_h, 2, start_y, 8, #waves_pal);
150
	} else {
151
		DrawBar(2,start_y,190, area_h-268, waves_pal[0]);
152
		PutPaletteImage(#blue_hl, 190, 268, 2, Form.cheight-270-status_bar_h, 8, #waves_pal);
153
	}
154
	PutShadow(17,actions_y+75,160,1,1,3);
155
	PutShadow(18,actions_y+75+1,158,1,1,1);
156
	PutShadow(17,start_y,160,1,1,3);
157
	PutShadow(18,start_y+1,158,1,1,1);
158
}
159
160
 
161
//                                                   //
162
//                     PATHBAR                       //
163
//                                                   //
164
//===================================================//
165
166
 
167
PathShow_data PathShow = {0, 17,250, 6, 250, 0, 0, 0x000000, 0xFFFFCC, NULL, #work_area_pointer, 0};
168
void DrawPathBar()
169
{
170
	if (efm) {
171
		DrawPathBarKfm();
172
	} else {
8952 leency 173
		DrawPathEolite();
174
	}
8951 leency 175
}
8952 leency 176
8951 leency 177
 
8952 leency 178
{
179
	PathShow.text_pointer = location[0];
8951 leency 180
	PathShow.area_size_x = Form.cwidth-300;
181
	DrawBar(PathShow.start_x-3, PathShow.start_y-6, PathShow.area_size_x+3, 19, col.odd_line);
182
	DrawRectangle(PathShow.start_x-4,PathShow.start_y-7,PathShow.area_size_x+4,20,sc.work_graph);
183
	DefineHiddenButton(PathShow.start_x-4+1,PathShow.start_y-7+1,PathShow.area_size_x+4-2,20-2,BTN_PATH);
8953 leency 184
	DrawBar(PathShow.start_x-4, PathShow.start_y+14, PathShow.area_size_x+5+18, 1, sc.work_light);
8951 leency 185
186
 
8953 leency 187
8951 leency 188
 
189
	PathShow_prepare stdcall(#PathShow);
190
	PathShow_draw stdcall(#PathShow);
191
}
192
193
 
194
{
195
	dword back_color, text_color;
8952 leency 196
	int draw_x, draw_w;
197
	int i=0;
8951 leency 198
	if (!Form.cwidth) return;
199
200
 
201
		back_color = col.odd_line;
8952 leency 202
		text_color = col.list_gb_text;
203
	} else {
8951 leency 204
		back_color = 0xFFFFCC;
8952 leency 205
		text_color = 0x222222;
206
	}
8951 leency 207
	draw_x = 3 + DDW;
8952 leency 208
	draw_w = Form.cwidth/2 - draw_x - 17;
209
	do {