Subversion Repositories Kolibri OS

Rev

Rev 8953 | Rev 8981 | Go to most recent revision | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8953 Rev 8956
1
//===================================================//
1
//===================================================//
2
//                                                   //
2
//                                                   //
3
//                     SCROLL                        //
3
//                     SCROLL                        //
4
//                                                   //
4
//                                                   //
5
//===================================================//
5
//===================================================//
6
 
6
 
7
void DrawScroll(bool _scroll_used) {
7
void DrawScroll(bool _scroll_used) {
8
	dword i;
8
	dword i;
9
 
9
 
10
	dword sc_x = files.x + files.w;
10
	dword sc_x = files.x + files.w;
11
	dword sc_y = files.y;
11
	dword sc_y = files.y;
12
	dword sc_h = files.h - 16;
12
	dword sc_h = files.h - 16;
13
	dword sc_slider_y;
13
	dword sc_slider_y;
14
	dword sc_center;
14
	dword sc_center;
15
 
15
 
16
	if (files.count<=0)
16
	if (files.count<=0)
17
	{
17
	{
18
		sc_slider_y = sc_y - 1;
18
		sc_slider_y = sc_y - 1;
19
		sc_slider_h = sc_h + 1;
19
		sc_slider_h = sc_h + 1;
20
	} else {
20
	} else {
21
		sc_slider_y = files.first * sc_h / files.count + sc_y - 1;
21
		sc_slider_y = files.first * sc_h / files.count + sc_y - 1;
22
		sc_slider_h = sc_h * files.visible - files.visible / files.count + 2;
22
		sc_slider_h = sc_h * files.visible - files.visible / files.count + 2;
23
		if (sc_slider_h < 20) {
23
		if (sc_slider_h < 20) {
24
			sc_slider_h = 20; //set minimal scroll height
24
			sc_slider_h = 20; //set minimal scroll height
25
		}
25
		}
26
		if (sc_slider_h > sc_h-sc_slider_y+56) || (files.first+files.visible>=files.count) {
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
27
			sc_slider_y= sc_y + sc_h - sc_slider_h; //fix for the very long list
28
		}
28
		}
29
	}
29
	}
30
	//slider
30
	//slider
31
	DrawRectangle(sc_x,sc_slider_y,16,sc_slider_h,sc.work_graph);
31
	DrawRectangle(sc_x,sc_slider_y,16,sc_slider_h,sc.work_graph);
32
	DrawRectangle3D(sc_x+1,sc_slider_y+1,14,sc_slider_h-2, sc.work_light , sc.work_dark);
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++) {
33
	for (i=0; i<13; i++) {
34
		if (!_scroll_used) EDX = col.work_gradient[13-i]; else EDX = col.work_gradient[i];
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);
35
		DrawBar(sc_x + 2 + i, sc_slider_y+2, 1, sc_slider_h-3, EDX);
36
	}
36
	}
37
 
37
 
38
	sc_center = sc_slider_h / 2 + sc_slider_y;
38
	sc_center = sc_slider_h / 2 + sc_slider_y;
39
 
39
 
40
	DrawBar(sc_x+3,   sc_center,   10, 1, sc.work_graph);
40
	DrawBar(sc_x+3,   sc_center,   10, 1, sc.work_graph);
41
	DrawBar(sc_x+4,   sc_center-3, 8,  1, sc.work_graph);
41
	DrawBar(sc_x+4,   sc_center-3, 8,  1, sc.work_graph);
42
	DrawBar(sc_x+4,   sc_center+3, 8,  1, sc.work_graph);
42
	DrawBar(sc_x+4,   sc_center+3, 8,  1, sc.work_graph);
43
 
43
 
44
	DrawBar(sc_x+3+1, sc_center+1, 10, 1, sc.work_light);
44
	DrawBar(sc_x+3+1, sc_center+1, 10, 1, sc.work_light);
45
	DrawBar(sc_x+4+1, sc_center-2, 8,  1, sc.work_light);
45
	DrawBar(sc_x+4+1, sc_center-2, 8,  1, sc.work_light);
46
	DrawBar(sc_x+4+1, sc_center+4, 8,  1, sc.work_light);
46
	DrawBar(sc_x+4+1, sc_center+4, 8,  1, sc.work_light);
47
 
47
 
48
	//area before slider
48
	//area before slider
49
	if (sc_slider_y > sc_y + 1) 
49
	if (sc_slider_y > sc_y + 1) 
50
	{
50
	{
51
		DrawBar(sc_x+1, sc_y,   15, 1, col.slider_bg_left);
51
		DrawBar(sc_x+1, sc_y,   15, 1, col.slider_bg_left);
52
		DrawBar(sc_x+1, sc_y+1,  1, sc_slider_y-sc_y-1, col.slider_bg_left);
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);
53
		DrawBar(sc_x+2, sc_y+1, 14, sc_slider_y-sc_y-1, col.slider_bg_big);
54
	}
54
	}
55
	//area after slider
55
	//area after slider
56
	if (sc_h-sc_slider_h+sc_y-2>sc_slider_y)
56
	if (sc_h-sc_slider_h+sc_y-2>sc_slider_y)
57
	{
57
	{
58
		DrawBar(sc_x+1, sc_slider_y + sc_slider_h+1, 15, 1, col.slider_bg_left);
58
		DrawBar(sc_x+1, sc_slider_y + sc_slider_h+1, 15, 1, col.slider_bg_left);
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);
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);
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
	}
61
	}
62
}
62
}
63
 
63
 
64
//===================================================//
64
//===================================================//
65
//                                                   //
65
//                                                   //
66
//                  FLAT BUTTONS                     //
66
//                  FLAT BUTTONS                     //
67
//                                                   //
67
//                                                   //
68
//===================================================//
68
//===================================================//
69
 
69
 
70
void DrawFlatButtonSmall(dword x,y,width,height,id,text)
70
void DrawFlatButtonSmall(dword x,y,width,height,id,text)
71
{
71
{
72
	DrawRectangle(x,y,width,height,sc.work_graph);
72
	DrawRectangle(x,y,width,height,sc.work_graph);
73
	DrawRectangle3D(x+1,y+1,width-2,height-2, sc.work_light, sc.work_dark);
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);
74
	PutPixel(x+width-1, y+1, sc.work_dark);
75
	DrawFilledBar(x+2, y+2, width-3, height-3);
75
	DrawFilledBar(x+2, y+2, width-3, height-3);
76
	if (id) DefineHiddenButton(x+1,y+1,width-2,height-2,id);
76
	if (id) DefineHiddenButton(x+1,y+1,width-2,height-2,id);
77
	WriteText(-strlen(text)*6+width/2+x+1,height/2+y-3,0x80,sc.work_text,text);
77
	WriteText(-strlen(text)*6+width/2+x+1,height/2+y-3,0x80,sc.work_text,text);
78
}
78
}
79
 
79
 
80
void DrawFilledBar(dword x, y, w, h)
80
void DrawFilledBar(dword x, y, w, h)
81
{ int i; for (i=0; i
81
{ int i; for (i=0; i
82
 
82
 
83
void DrawFuncButton(dword x,y,width,id,number,text)
83
void DrawFuncButton(dword x,y,width,id,number,text)
84
{
84
{
85
	#define FW 12
85
	#define FW 12
86
	#define FH 16
86
	#define FH 16
87
	int numw = calc(number/10)*6+FW;
87
	int numw = calc(number/10)*6+FW;
88
	if (skin_is_dark()) {
88
	if (skin_is_dark()) {
89
		DrawFlatButtonSmall(x,y,width,FH,id,text);
89
		DrawFlatButtonSmall(x,y,width,FH,id,text);
90
		return;
90
		return;
91
	}
91
	}
92
	DrawRectangle(x,y,width,FH,sc.work_graph);
92
	DrawRectangle(x,y,width,FH,sc.work_graph);
93
	DrawRectangle3D(x+1,y+1,width-2,FH-2, 0x97D194, 0x00A100);
93
	DrawRectangle3D(x+1,y+1,width-2,FH-2, 0x97D194, 0x00A100);
94
	PutPixel(x+width-1, y+1, sc.work_dark);
94
	PutPixel(x+width-1, y+1, sc.work_dark);
95
	DrawBar(x+2, y+2, numw, FH-2, 0x6060FF);
95
	DrawBar(x+2, y+2, numw, FH-2, 0x6060FF);
96
	WriteText(x+6,FH/2+y-2,0x80,0x444444,itoa(number));
96
	WriteText(x+6,FH/2+y-2,0x80,0x444444,itoa(number));
97
	$sub ebx, 1 <<16 + 1
97
	$sub ebx, 1 <<16 + 1
98
	$add ecx, 0xFFFfff-0x444444
98
	$add ecx, 0xFFFfff-0x444444
99
	$int 64
99
	$int 64
100
	DrawBar(x+2+numw, y+2, width-3-numw, FH-3, 0x00AA00);
100
	DrawBar(x+2+numw, y+2, width-3-numw, FH-3, 0x00AA00);
101
	DefineHiddenButton(x+1,y+1,width-2,FH-2,id);
101
	DefineHiddenButton(x+1,y+1,width-2,FH-2,id);
102
	WriteText(-strlen(text)*6+width/2+x+8,FH/2+y-2,0x80,0x444444,text);
102
	WriteText(-strlen(text)*6+width/2+x+8,FH/2+y-2,0x80,0x444444,text);
103
	$sub ebx, 1 <<16 + 1
103
	$sub ebx, 1 <<16 + 1
104
	$add ecx, 0xFFFfff-0x444444
104
	$add ecx, 0xFFFfff-0x444444
105
	$int 64
105
	$int 64
106
}
106
}
107
 
107
 
108
//===================================================//
108
//===================================================//
109
//                                                   //
109
//                                                   //
110
//                     LEFT PANEL                    //
110
//                     LEFT PANEL                    //
111
//                                                   //
111
//                                                   //
112
//===================================================//
112
//===================================================//
113
 
113
 
114
void Tip(int y, dword caption, id, arrow)
114
void Tip(int y, dword caption, id, arrow)
115
{
115
{
116
	DrawBar(17,y,160,1,col.list_bg);
116
	DrawBar(17,y,160,1,col.list_bg);
117
	DrawBar(17,y+1,1,16,sc.work_light);
117
	DrawBar(17,y+1,1,16,sc.work_light);
118
	DrawFilledBar(18, y+1, 160-1, 16);
118
	DrawFilledBar(18, y+1, 160-1, 16);
119
	DrawBar(17,y+17,160,1,sc.work_graph);
119
	DrawBar(17,y+17,160,1,sc.work_graph);
120
	WriteText(25,y+5,0x80,col.list_gb_text,caption);
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
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
122
	WriteText(165,y+5,0x80,col.list_gb_text,arrow); //arrow
123
}
123
}
124
 
124
 
125
void ActionsDraw(int actions_y)
125
void ActionsDraw(int actions_y)
126
{
126
{
127
	int i;
127
	int i;
128
	Tip(actions_y-18, T_ACTIONS, 77, "");
128
	Tip(actions_y-18, T_ACTIONS, 77, "");
129
	for (i=0; actions[i*3]!=0; i++, actions_y+=DEV_H)
129
	for (i=0; actions[i*3]!=0; i++, actions_y+=DEV_H)
130
	{
130
	{
131
		DrawBar(17,actions_y,160,DEV_H,0xFFFFFF); //áåëîå
131
		DrawBar(17,actions_y,160,DEV_H,0xFFFFFF); //áåëîå
132
		DefineButton(17,actions_y,159,DEV_H,actions[i*3]+BT_HIDE,0xE4DFE1);
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]);
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]);
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);
135
		_PutImage(23,actions_y+2, 14,13, i*14*13*3+#factions);
136
	}
136
	}
137
}
137
}
138
 
138
 
139
void DrawLeftPanelBg(int actions_y)
139
void DrawLeftPanelBg(int actions_y)
140
{
140
{
141
	int start_y = actions_y+159;
141
	int start_y = actions_y+159;
142
	int area_h;
142
	int area_h;
143
	DrawBar(2,41,190,15,waves_pal[0]);    //above devices block
143
	DrawBar(2,41,190,15,waves_pal[0]);    //above devices block
144
	DrawBar(17,actions_y+75,160,15,EDX);  //below 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
145
	DrawBar(2,56,15,actions_y+103,EDX);   //on the left
146
	DrawBar(177,56,15,actions_y+103,EDX); //on the right
146
	DrawBar(177,56,15,actions_y+103,EDX); //on the right
147
	area_h = Form.cheight-start_y-2 - status_bar_h;
147
	area_h = Form.cheight-start_y-2 - status_bar_h;
148
	if (area_h < 268){
148
	if (area_h < 268){
149
		PutPaletteImage(#blue_hl, 190, area_h, 2, start_y, 8, #waves_pal);
149
		PutPaletteImage(#blue_hl, 190, area_h, 2, start_y, 8, #waves_pal);
150
	} else {
150
	} else {
151
		DrawBar(2,start_y,190, area_h-268, waves_pal[0]);
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);
152
		PutPaletteImage(#blue_hl, 190, 268, 2, Form.cheight-270-status_bar_h, 8, #waves_pal);
153
	}
153
	}
154
	PutShadow(17,actions_y+75,160,1,1,3);
154
	PutShadow(17,actions_y+75,160,1,1,3);
155
	PutShadow(18,actions_y+75+1,158,1,1,1);
155
	PutShadow(18,actions_y+75+1,158,1,1,1);
156
	PutShadow(17,start_y,160,1,1,3);
156
	PutShadow(17,start_y,160,1,1,3);
157
	PutShadow(18,start_y+1,158,1,1,1);
157
	PutShadow(18,start_y+1,158,1,1,1);
158
}
158
}
159
 
159
 
160
//===================================================//
160
//===================================================//
161
//                                                   //
161
//                                                   //
162
//                     PATHBAR                       //
162
//                     PATHBAR                       //
163
//                                                   //
163
//                                                   //
164
//===================================================//
164
//===================================================//
165
 
165
 
166
char work_area_pointer[1024];
166
char work_area_pointer[1024];
167
PathShow_data PathShow = {0, 17,250, 6, 250, 0, 0, 0x000000, 0xFFFFCC, NULL, #work_area_pointer, 0};
167
PathShow_data PathShow = {0, 17,250, 6, 250, 0, 0, 0x000000, 0xFFFFCC, NULL, #work_area_pointer, 0};
168
void DrawPathBar()
168
void DrawPathBar()
169
{
169
{
170
	if (efm) {
170
	if (efm) {
171
		DrawPathBarKfm();
171
		DrawPathBarKfm();
172
	} else {
172
	} else {
173
		DrawPathEolite();
173
		DrawPathEolite();
174
	}
174
	}
175
}
175
}
176
 
176
 
177
void DrawPathEolite()
177
void DrawPathEolite()
178
{
178
{
179
	PathShow.text_pointer = location[0];
179
	PathShow.text_pointer = location[0];
180
	PathShow.start_x = 250;
180
	PathShow.area_size_x = Form.cwidth-300;
181
	PathShow.start_y = 17;
-
 
182
	PathShow.area_size_x = Form.cwidth-300;
-
 
183
	DrawBar(PathShow.start_x-3, PathShow.start_y-6, PathShow.area_size_x+3, 19, col.odd_line);
181
	DrawBar(PathShow.start_x-3, PathShow.start_y-6, PathShow.area_size_x+3, 19, col.odd_line);
184
	DrawRectangle(PathShow.start_x-4,PathShow.start_y-7,PathShow.area_size_x+4,20,sc.work_graph);
182
	DrawRectangle(PathShow.start_x-4,PathShow.start_y-7,PathShow.area_size_x+4,20,sc.work_graph);
185
	DefineHiddenButton(PathShow.start_x-4+1,PathShow.start_y-7+1,PathShow.area_size_x+4-2,20-2,BTN_PATH);
183
	DefineHiddenButton(PathShow.start_x-4+1,PathShow.start_y-7+1,PathShow.area_size_x+4-2,20-2,BTN_PATH);
186
	DrawBar(PathShow.start_x-4, PathShow.start_y+14, PathShow.area_size_x+5+18, 1, sc.work_light);
184
	DrawBar(PathShow.start_x-4, PathShow.start_y+14, PathShow.area_size_x+5+18, 1, sc.work_light);
187
 
185
 
188
	DrawFlatButtonSmall(PathShow.start_x+PathShow.area_size_x,PathShow.start_y-7,18,20, BTN_BREADCRUMB, "\x19");
186
	DrawFlatButtonSmall(PathShow.start_x+PathShow.area_size_x,PathShow.start_y-7,18,20, BTN_BREADCRUMB, "\x19");
189
 
187
 
190
	PathShow.font_color = col.list_gb_text;
188
	PathShow.font_color = col.list_gb_text;
191
	PathShow_prepare stdcall(#PathShow);
189
	PathShow_prepare stdcall(#PathShow);
192
	PathShow_draw stdcall(#PathShow);
190
	PathShow_draw stdcall(#PathShow);
193
}
191
}
194
 
192
 
195
void DrawPathBarKfm()
193
void DrawPathBarKfm()
196
{
194
{
197
	dword back_color, text_color;
195
	dword back_color, text_color;
198
	int draw_x, draw_w;
196
	int draw_x, draw_w;
199
	int i=0;
197
	int i=0;
200
	if (!Form.cwidth) return;
198
	if (!Form.cwidth) return;
201
 
199
 
202
	if (skin_is_dark()) {
200
	if (skin_is_dark()) {
203
		back_color = col.odd_line;
201
		back_color = col.odd_line;
204
		text_color = col.list_gb_text;
202
		text_color = col.list_gb_text;
205
	} else {
203
	} else {
206
		back_color = 0xFFFFCC; 
204
		back_color = 0xFFFFCC; 
207
		text_color = 0x222222;
205
		text_color = 0x222222;
208
	}
206
	}
209
	draw_x = 3 + DDW;
207
	draw_x = 3 + DDW;
210
	draw_w = Form.cwidth/2 - draw_x - 17;
208
	draw_w = Form.cwidth/2 - draw_x - 17;
211
	do {
209
	do {
212
		DrawBar(draw_x, SELECTY-1, draw_w-KFM2_DEVH+1, 1, sc.work_graph);
210
		DrawBar(draw_x, SELECTY-1, draw_w-KFM2_DEVH+1, 1, sc.work_graph);
213
		DrawBar(draw_x, SELECTY,   draw_w-KFM2_DEVH+1, KFM2_DEVH, back_color);
211
		DrawBar(draw_x, SELECTY,   draw_w-KFM2_DEVH+1, KFM2_DEVH, back_color);
214
		DefineHiddenButton(draw_x, SELECTY, draw_w-KFM2_DEVH, KFM2_DEVH-1, BTN_PATH+i);
212
		DefineHiddenButton(draw_x, SELECTY, draw_w-KFM2_DEVH, KFM2_DEVH-1, BTN_PATH+i);
215
		DrawBar(draw_x, SELECTY+KFM2_DEVH, draw_w-KFM2_DEVH+1, 1, sc.work_graph);
213
		DrawBar(draw_x, SELECTY+KFM2_DEVH, draw_w-KFM2_DEVH+1, 1, sc.work_graph);
216
		kfont.WriteIntoWindow(draw_x + 3, math.max(KFM2_DEVH-kfont.height/2+SELECTY,0), 
214
		kfont.WriteIntoWindow(draw_x + 3, math.max(KFM2_DEVH-kfont.height/2+SELECTY,0), 
217
			back_color, text_color, kfont.size.pt, location[i]+strrchr(location[i], '/'));
215
			back_color, text_color, kfont.size.pt, location[i]+strrchr(location[i], '/'));
218
		DrawFlatButtonSmall(draw_x+draw_w-KFM2_DEVH+1, SELECTY-1, KFM2_DEVH-1, KFM2_DEVH+1, BTN_BREADCRUMB+i, "\x19");
216
		DrawFlatButtonSmall(draw_x+draw_w-KFM2_DEVH+1, SELECTY-1, KFM2_DEVH-1, KFM2_DEVH+1, BTN_BREADCRUMB+i, "\x19");
219
		draw_x = Form.cwidth/2 + DDW + 1;
217
		draw_x = Form.cwidth/2 + DDW + 1;
220
		draw_w = Form.cwidth - draw_x - 2;
218
		draw_w = Form.cwidth - draw_x - 2;
221
		i++;
219
		i++;
222
	} while (i<2);
220
	} while (i<2);
223
}
221
}
224
 
222
 
225
//===================================================//
223
//===================================================//
226
//                                                   //
224
//                                                   //
227
//                   BREADCRUMBS                     //
225
//                   BREADCRUMBS                     //
228
//                                                   //
226
//                                                   //
229
//===================================================//
227
//===================================================//
230
 
228
 
231
void DrawBreadCrumbs()
229
void DrawBreadCrumbs()
232
 collection_int breadCrumb=0;
230
 collection_int breadCrumb=0;
233
 char PathShow_path[4096];
231
 char PathShow_path[4096];
234
 block btn;
232
 int btnx;
235
 int i;
233
 int i;
236
 unsigned text_line;
234
 {
237
 {
-
 
238
	strcat(#PathShow_path, path);
235
	breadCrumb.drop();
239
	for (i=0; i<50; i++) DeleteButton(i+BREADCRUMB_ID);
-
 
240
	breadCrumb.drop();
-
 
241
	for (i=0; (PathShow_path[i]) && (i
236
 	strcpy(#PathShow_path, "/");
-
 
237
 	if (ESBYTE[path+1]) {
-
 
238
		strcat(#PathShow_path, path);
-
 
239
 	}
-
 
240
	for (i=0; (PathShow_path[i]) && (i
242
	{
241
	{
243
		if (PathShow_path[i]=='/') {
242
		if (PathShow_path[i]=='/') {
244
			PathShow_path[i] = NULL;
243
			PathShow_path[i] = NULL;
245
			breadCrumb.add(i+1);
244
			breadCrumb.add(i+1);
246
		}
245
		}
247
	}
246
	}
248
	breadCrumb.add(i+1);
247
	breadCrumb.add(i+1);
249
	btn.set_size(246,10,NULL,20);
248
 
-
 
249
	if (!efm) btnx = 250-4;
250
	//area_w = Form.cwidth - btn.x - 20;
250
	else btnx = Form.cwidth/2-2*active_panel + DDW + 2;
251
	for (i=0; i
251
 
-
 
252
	for (i=0; i
252
	{
253
		EDI = breadCrumb.get(i) + #PathShow_path;
253
		text_line = breadCrumb.get(i) + #PathShow_path;                                  ///EDI!
-
 
254
		btn.w = strlen(text_line)*8+10;
254
		DrawFlatButtonSmall(btnx, KFM2_DEVH-1*i+SELECTY+KFM2_DEVH, 
255
		DrawBreadcrumbButton(btn.x, btn.y, btn.w, btn.h, i+BREADCRUMB_ID, text_line);
255
			250, KFM2_DEVH, i+BREADCRUMB_ID, EDI);
256
		btn.y += btn.h;
256
	}
257
	}
-
 
258
	btn.x++;
257
}
259
	DrawBar(btn.x,btn.y-1,Form.cwidth-btn.x-25,btn.h+3,sc.work);
-
 
260
}
-
 
261
 
258
 
262
void ClickOnBreadCrumb(unsigned clickid)
259
void ClickOnBreadCrumb(unsigned clickid)
263
{
260
{
264
	int i, slashpos = path;
261
	int i, slashpos = path;
265
	for (i=0; i!=clickid+2; i++) {
262
	if (!clickid) {
-
 
263
		ESBYTE[path+1] = '\0';
-
 
264
	} else {
-
 
265
		for (i=1; i!=clickid+2; i++) {
266
		slashpos=strchr(slashpos,'/')+1;
266
			slashpos=strchr(slashpos,'/')+1;
267
	}
267
		}
268
	ESBYTE[slashpos-1] = NULL;
268
		ESBYTE[slashpos-1] = '\0';		
269
	Open_Dir(path,WITH_REDRAW);
269
	}
270
}
-
 
271
 
270
	OpenDir(WITH_REDRAW);
272
void DrawBreadcrumbButton(dword x,y,w,h,id,text)
-
 
273
{
-
 
274
	int i;
-
 
275
	DrawRectangle(x,y,w,h,sc.work_graph);
-
 
276
	for (i=0; (i
271
}
277
	DrawRectangle3D(x+1,y+1,w-2,h-2,sc.work_light, sc.work_dark);
-
 
278
	DefineHiddenButton(x+1,y+1,w-2,h-2,id);
-
 
279
	WriteText(-strlen(text)*8+w/2+x,h/2+y-7,0x90,sc.work_text,text);
-
 
280
	DrawBar(x, y+h+1, w+1, 1, sc.work_light);
-
 
281
}
-
 
282
 
272
 
283
//===================================================//
273
//===================================================//
284
//                                                   //
274
//                                                   //
285
//                       MISC                        //
275
//                       MISC                        //
286
//                                                   //
276
//                                                   //
287
//===================================================//
277
//===================================================//
288
 
278
 
289
int DrawEolitePopup(dword b1_text, b2_text)
279
int DrawEolitePopup(dword b1_text, b2_text)
290
{
280
{
291
	int popin_x = files.w - POPIN_W / 2 + files.x ;
281
	int popin_x = files.w - POPIN_W / 2 + files.x ;
292
	DrawPopup(popin_x, 160, POPIN_W, 95, 1, sc.work, sc.work_graph);
282
	DrawPopup(popin_x, 160, POPIN_W, 95, 1, sc.work, sc.work_graph);
293
	DrawCaptButton(popin_x+23+000, 215, 100, 26, POPUP_BTN1, sc.button, sc.button_text, b1_text);
283
	DrawCaptButton(popin_x+23+000, 215, 100, 26, POPUP_BTN1, sc.button, sc.button_text, b1_text);
294
	DrawCaptButton(popin_x+23+114, 215, 100, 26, POPUP_BTN2, sc.button, sc.button_text, b2_text);
284
	DrawCaptButton(popin_x+23+114, 215, 100, 26, POPUP_BTN2, sc.button, sc.button_text, b2_text);
295
	popin_text.left = popin_x+30;
285
	popin_text.left = popin_x+30;
296
	if (popin_string[0] != -1) DrawEditBox(#popin_text);
286
	if (popin_string[0] != -1) DrawEditBox(#popin_text);
297
	return popin_x;
287
	return popin_x;
298
}
288
}
299
 
289
 
300
void DrawDot(dword x,y) {
290
void DrawDot(dword x,y) {
301
	dword col_pxl = MixColors(sc.work_graph, sc.work, 60);
291
	dword col_pxl = MixColors(sc.work_graph, sc.work, 60);
302
	DrawBar(x+1,y,2,4,sc.work_graph);
292
	DrawBar(x+1,y,2,4,sc.work_graph);
303
	DrawBar(x,y+1,4,2,sc.work_graph);
293
	DrawBar(x,y+1,4,2,sc.work_graph);
304
	PutPixel(x,y,col_pxl);
294
	PutPixel(x,y,col_pxl);
305
	PutPixel(x+3,y,col_pxl);
295
	PutPixel(x+3,y,col_pxl);
306
	PutPixel(x,y+3,col_pxl);
296
	PutPixel(x,y+3,col_pxl);
307
	PutPixel(x+3,y+3,col_pxl);
297
	PutPixel(x+3,y+3,col_pxl);
308
}
298
}
309
}
299
}
310
 
300
 
311
//===================================================//
301
//===================================================//
312
//>
302
//>
313
>
303
>