Subversion Repositories Kolibri OS

Rev

Rev 9516 | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

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