2016-02-24 17:49:57 +01:00
|
|
|
|
2021-06-21 11:16:45 +02:00
|
|
|
//===================================================//
|
|
|
|
// //
|
|
|
|
// PATH //
|
|
|
|
// //
|
|
|
|
//===================================================//
|
|
|
|
|
|
|
|
char work_area_pointer[1024];
|
2021-06-27 11:28:59 +02:00
|
|
|
PathShow_data PathShow = {0, 17,250, 6, 250, 0, 0, 0x000000, 0xFFFFCC, NULL, #work_area_pointer, 0};
|
2016-02-24 17:49:57 +01:00
|
|
|
void DrawPathBar()
|
|
|
|
{
|
2021-06-15 01:33:54 +02:00
|
|
|
if (efm) {
|
2021-06-21 11:16:45 +02:00
|
|
|
DrawPathBarKfm();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (show_breadcrumb.checked) {
|
|
|
|
DrawBreadCrumbs();
|
2021-06-15 01:33:54 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-06-27 11:28:59 +02:00
|
|
|
PathShow.text_pointer = location[0];
|
2021-06-21 11:16:45 +02:00
|
|
|
PathShow.start_x = 250;
|
|
|
|
PathShow.start_y = 17;
|
2016-02-25 15:07:16 +01:00
|
|
|
PathShow.area_size_x = Form.cwidth-300;
|
2019-04-17 14:11:31 +02:00
|
|
|
DrawBar(PathShow.start_x-3, PathShow.start_y-6, PathShow.area_size_x+3, 19, col.odd_line);
|
2020-04-18 01:52:24 +02:00
|
|
|
DrawRectangle(PathShow.start_x-4,PathShow.start_y-7,PathShow.area_size_x+4,20,sc.work_graph);
|
2018-10-01 18:41:14 +02:00
|
|
|
DefineHiddenButton(PathShow.start_x-4+1,PathShow.start_y-7+1,PathShow.area_size_x+4-2,20-2,PATH_BTN);
|
2020-04-18 01:52:24 +02:00
|
|
|
DrawBar(PathShow.start_x-4, PathShow.start_y+14, PathShow.area_size_x+5+18, 1, sc.work_light);
|
2018-10-14 12:47:23 +02:00
|
|
|
|
|
|
|
DrawFlatButtonSmall(PathShow.start_x+PathShow.area_size_x,PathShow.start_y-7,18,20, 61, "\26");
|
|
|
|
|
2019-04-17 14:11:31 +02:00
|
|
|
PathShow.font_color = col.list_gb_text;
|
2016-02-24 17:49:57 +01:00
|
|
|
PathShow_prepare stdcall(#PathShow);
|
|
|
|
PathShow_draw stdcall(#PathShow);
|
|
|
|
}
|
|
|
|
|
2021-06-21 11:16:45 +02:00
|
|
|
void DrawPathBarKfm()
|
|
|
|
{
|
|
|
|
dword bgc;
|
|
|
|
int i=0;
|
|
|
|
if (!Form.cwidth) return;
|
|
|
|
|
|
|
|
if (skin_is_dark()) {
|
|
|
|
bgc = col.odd_line;
|
|
|
|
PathShow.font_color = col.list_gb_text;
|
|
|
|
} else {
|
|
|
|
bgc = 0xFFFFCC;
|
|
|
|
PathShow.font_color = 0x222222;
|
|
|
|
}
|
|
|
|
PathShow.start_y = Form.cheight - status_bar_h+2;
|
|
|
|
|
2021-06-27 11:28:59 +02:00
|
|
|
PathShow.start_x = 4;
|
|
|
|
PathShow.area_size_x = Form.cwidth/2-8;
|
|
|
|
do {
|
|
|
|
DrawBar(PathShow.start_x-2,PathShow.start_y-3,PathShow.area_size_x+5,14,bgc);
|
|
|
|
DrawRectangle(PathShow.start_x-3,PathShow.start_y-4,PathShow.area_size_x+6,15,sc.work_graph);
|
|
|
|
PathShow.text_pointer = location[i];
|
|
|
|
PathShow_prepare stdcall(#PathShow);
|
|
|
|
PathShow_draw stdcall(#PathShow);
|
|
|
|
|
2021-06-21 11:16:45 +02:00
|
|
|
PathShow.start_x = Form.cwidth/2 + 2;
|
2021-06-27 11:28:59 +02:00
|
|
|
PathShow.area_size_x = Form.cwidth - PathShow.start_x - 5;
|
|
|
|
i++;
|
|
|
|
} while (i<2);
|
2021-06-21 11:16:45 +02:00
|
|
|
|
|
|
|
DrawBar(0,PathShow.start_y-2,1,15,sc.work);
|
|
|
|
DrawBar(Form.cwidth-1,PathShow.start_y-2,1,15,sc.work);
|
|
|
|
DrawBar(1,PathShow.start_y+12,Form.cwidth-2,1,sc.work_light);
|
|
|
|
}
|
|
|
|
|
|
|
|
//===================================================//
|
|
|
|
// //
|
|
|
|
// BREADCRUMBS //
|
|
|
|
// //
|
|
|
|
//===================================================//
|
|
|
|
|
2016-02-24 17:49:57 +01:00
|
|
|
void DrawBreadCrumbs()
|
2020-05-23 13:26:58 +02:00
|
|
|
collection_int breadCrumb=0;
|
2016-02-24 17:49:57 +01:00
|
|
|
char PathShow_path[4096];
|
2018-04-16 00:44:36 +02:00
|
|
|
block btn;
|
2016-02-24 17:49:57 +01:00
|
|
|
int i;
|
2021-06-17 11:29:39 +02:00
|
|
|
unsigned text_line;
|
2016-02-24 17:49:57 +01:00
|
|
|
{
|
2021-06-27 11:28:59 +02:00
|
|
|
strcat(#PathShow_path, path);
|
2016-02-24 17:49:57 +01:00
|
|
|
for (i=0; i<50; i++) DeleteButton(i+BREADCRUMB_ID);
|
|
|
|
breadCrumb.drop();
|
2021-06-21 11:16:45 +02:00
|
|
|
for (i=0; (PathShow_path[i]) && (i<sizeof(PathShow_path)-1); i++)
|
2016-02-24 17:49:57 +01:00
|
|
|
{
|
|
|
|
if (PathShow_path[i]=='/') {
|
|
|
|
PathShow_path[i] = NULL;
|
|
|
|
breadCrumb.add(i+1);
|
|
|
|
}
|
|
|
|
}
|
2016-12-04 17:50:34 +01:00
|
|
|
breadCrumb.add(i+1);
|
2016-11-22 15:07:23 +01:00
|
|
|
btn.set_size(246,10,NULL,20);
|
2021-06-17 11:29:39 +02:00
|
|
|
//area_w = Form.cwidth - btn.x - 20;
|
2016-02-24 17:49:57 +01:00
|
|
|
for (i=0; i<breadCrumb.count-1; i++)
|
|
|
|
{
|
|
|
|
text_line = breadCrumb.get(i) + #PathShow_path;
|
|
|
|
btn.w = strlen(text_line)*8+10;
|
|
|
|
DrawBreadcrumbButton(btn.x, btn.y, btn.w, btn.h, i+BREADCRUMB_ID, text_line);
|
|
|
|
btn.x += btn.w;
|
|
|
|
}
|
2016-02-25 15:07:16 +01:00
|
|
|
//DrawFavButton(btn.x);
|
|
|
|
//btn.x+=20;
|
|
|
|
btn.x++;
|
2020-04-18 01:52:24 +02:00
|
|
|
DrawBar(btn.x,btn.y-1,Form.cwidth-btn.x-25,btn.h+3,sc.work);
|
2016-02-24 17:49:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void ClickOnBreadCrumb(unsigned clickid)
|
|
|
|
{
|
2021-06-27 11:28:59 +02:00
|
|
|
int i, slashpos = path;
|
2016-02-24 17:49:57 +01:00
|
|
|
for (i=0; i!=clickid+2; i++) {
|
|
|
|
slashpos=strchr(slashpos,'/')+1;
|
|
|
|
}
|
2016-12-04 17:50:34 +01:00
|
|
|
ESBYTE[slashpos-1] = NULL;
|
2021-06-27 11:28:59 +02:00
|
|
|
Open_Dir(path,WITH_REDRAW);
|
2016-02-24 17:49:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void DrawBreadcrumbButton(dword x,y,w,h,id,text)
|
|
|
|
{
|
|
|
|
int i;
|
2020-04-18 01:52:24 +02:00
|
|
|
DrawRectangle(x,y,w,h,sc.work_graph);
|
2019-04-17 14:11:31 +02:00
|
|
|
for (i=0; (i<h-1) & (i<20); i++) DrawBar(x+1, y+i+1, w-1, 1, col.work_gradient[20-i]);
|
2020-04-18 01:52:24 +02:00
|
|
|
DrawRectangle3D(x+1,y+1,w-2,h-2,sc.work_light, sc.work_dark);
|
2018-10-01 18:41:14 +02:00
|
|
|
DefineHiddenButton(x+1,y+1,w-2,h-2,id);
|
2020-04-18 01:52:24 +02:00
|
|
|
WriteText(-strlen(text)*8+w/2+x,h/2+y-7,0x90,sc.work_text,text);
|
|
|
|
DrawBar(x, y+h+1, w+1, 1, sc.work_light);
|
2016-02-24 17:49:57 +01:00
|
|
|
}
|