2013-03-11 19:16:24 +01:00
|
|
|
|
|
2015-08-07 17:12:03 +02:00
|
|
|
|
void Scroll() {
|
2015-03-19 14:49:26 +01:00
|
|
|
|
dword i;
|
|
|
|
|
|
2019-04-23 00:44:33 +02:00
|
|
|
|
dword sc_x = files.x + files.w;
|
|
|
|
|
dword sc_y = files.y;
|
|
|
|
|
dword sc_h = files.h - 16;
|
|
|
|
|
dword sc_slider_y;
|
|
|
|
|
dword sc_center;
|
2015-03-19 14:49:26 +01:00
|
|
|
|
|
2013-03-31 22:25:54 +02:00
|
|
|
|
if (files.count<=0)
|
2013-03-20 23:35:57 +01:00
|
|
|
|
{
|
2021-06-05 21:30:53 +02:00
|
|
|
|
sc_slider_y = sc_y - 1;
|
|
|
|
|
sc_slider_h = sc_h + 1;
|
2013-03-20 23:35:57 +01:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2021-06-05 21:30:53 +02:00
|
|
|
|
sc_slider_y = files.first * sc_h / files.count + sc_y - 1;
|
|
|
|
|
sc_slider_h = sc_h * files.visible - files.visible / files.count + 2;
|
|
|
|
|
if (sc_slider_h < 20) sc_slider_h = 20; //minimal scroll height
|
|
|
|
|
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; //<2F><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
2015-03-19 14:49:26 +01:00
|
|
|
|
}
|
|
|
|
|
//slider
|
2020-04-18 01:52:24 +02:00
|
|
|
|
DrawRectangle(sc_x,sc_slider_y,16,sc_slider_h,sc.work_graph);
|
|
|
|
|
DrawRectangle3D(sc_x+1,sc_slider_y+1,14,sc_slider_h-2, sc.work_light , sc.work_dark);
|
2019-04-17 14:11:31 +02:00
|
|
|
|
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]);
|
|
|
|
|
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]);
|
2019-04-23 00:44:33 +02:00
|
|
|
|
|
|
|
|
|
sc_center = sc_slider_h / 2 + sc_slider_y;
|
|
|
|
|
|
2020-04-18 01:52:24 +02:00
|
|
|
|
DrawBar(sc_x+4, sc_center-3, 8, 1, sc.work_graph);
|
|
|
|
|
DrawBar(sc_x+4+1, sc_center-2, 8, 1, sc.work_light);
|
2019-04-23 00:44:33 +02:00
|
|
|
|
|
2020-04-18 01:52:24 +02:00
|
|
|
|
DrawBar(sc_x+3, sc_center, 10, 1, sc.work_graph);
|
|
|
|
|
DrawBar(sc_x+3+1, sc_center+1, 10, 1, sc.work_light);
|
2019-04-23 00:44:33 +02:00
|
|
|
|
|
2020-04-18 01:52:24 +02:00
|
|
|
|
DrawBar(sc_x+4, sc_center+3, 8, 1, sc.work_graph);
|
|
|
|
|
DrawBar(sc_x+4+1, sc_center+4, 8, 1, sc.work_light);
|
2019-04-23 00:44:33 +02:00
|
|
|
|
|
2015-03-19 14:49:26 +01:00
|
|
|
|
//area before slider
|
|
|
|
|
if (sc_slider_y > sc_y + 1)
|
|
|
|
|
{
|
2019-04-17 14:11:31 +02:00
|
|
|
|
DrawBar(sc_x+1, sc_y, 15, 1, col.slider_bg_left);
|
|
|
|
|
DrawBar(sc_x+1, sc_y+1, 1, sc_slider_y-sc_y-1, col.slider_bg_left);
|
|
|
|
|
DrawBar(sc_x+2, sc_y+1, 14, sc_slider_y-sc_y-1, col.slider_bg_big);
|
2015-03-19 14:49:26 +01:00
|
|
|
|
}
|
|
|
|
|
//area after slider
|
2015-08-10 00:26:14 +02:00
|
|
|
|
if (sc_h-sc_slider_h+sc_y-2>sc_slider_y)
|
2015-03-19 14:49:26 +01:00
|
|
|
|
{
|
2019-04-17 14:11:31 +02:00
|
|
|
|
DrawBar(sc_x+1, sc_slider_y + sc_slider_h+1, 15, 1, col.slider_bg_left);
|
|
|
|
|
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);
|
|
|
|
|
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);
|
2013-03-20 23:35:57 +01:00
|
|
|
|
}
|
2013-03-11 19:16:24 +01:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-05 11:13:29 +01:00
|
|
|
|
void DrawFlatButtonSmall(dword x,y,width,height,id,text)
|
2013-03-11 19:16:24 +01:00
|
|
|
|
{
|
2020-04-18 01:52:24 +02:00
|
|
|
|
DrawRectangle(x,y,width,height,sc.work_graph);
|
|
|
|
|
DrawRectangle3D(x+1,y+1,width-2,height-2, sc.work_light, sc.work_dark);
|
|
|
|
|
PutPixel(x+width-1, y+1, sc.work_dark);
|
2016-01-10 21:02:47 +01:00
|
|
|
|
DrawFilledBar(x+2, y+2, width-3, height-3);
|
2018-10-14 12:47:23 +02:00
|
|
|
|
if (id) DefineHiddenButton(x+1,y+1,width-2,height-2,id);
|
2020-04-18 01:52:24 +02:00
|
|
|
|
WriteText(-strlen(text)*6+width/2+x+1,height/2+y-3,0x80,sc.work_text,text);
|
2016-11-05 11:13:29 +01:00
|
|
|
|
}
|
|
|
|
|
|
2013-03-11 19:16:24 +01:00
|
|
|
|
void DrawFilledBar(dword x, y, w, h)
|
2020-04-17 19:04:54 +02:00
|
|
|
|
{ int i; for (i=0; i<h; i++) DrawBar(x, y+h-i-1, w, 1, col.work_gradient[i]); }
|
2013-11-14 01:22:55 +01:00
|
|
|
|
|
2016-11-05 11:13:29 +01:00
|
|
|
|
int popin_w=260;
|
2015-12-26 12:03:17 +01:00
|
|
|
|
void DrawEolitePopup(dword b1_text, b2_text)
|
2013-11-14 01:22:55 +01:00
|
|
|
|
{
|
2016-11-05 11:13:29 +01:00
|
|
|
|
int but_x;
|
2016-02-21 22:57:22 +01:00
|
|
|
|
int popin_x = files.w - popin_w / 2 + files.x ;
|
2020-04-18 01:52:24 +02:00
|
|
|
|
DrawPopup(popin_x, 160, popin_w, 95, 1, sc.work, sc.work_graph);
|
2021-06-05 21:30:53 +02:00
|
|
|
|
DrawCaptButton(popin_x+23+000, 215, 100, 26, POPUP_BTN1, sc.button, sc.button_text, b1_text);
|
|
|
|
|
DrawCaptButton(popin_x+23+114, 215, 100, 26, POPUP_BTN2, sc.button, sc.button_text, b2_text);
|
2018-10-14 12:47:23 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DrawDot(dword x,y) {
|
2020-04-18 01:52:24 +02:00
|
|
|
|
dword col_pxl = MixColors(sc.work_graph, sc.work, 60);
|
|
|
|
|
DrawBar(x+1,y,2,4,sc.work_graph);
|
|
|
|
|
DrawBar(x,y+1,4,2,sc.work_graph);
|
2018-10-14 12:47:23 +02:00
|
|
|
|
PutPixel(x,y,col_pxl);
|
|
|
|
|
PutPixel(x+3,y,col_pxl);
|
|
|
|
|
PutPixel(x,y+3,col_pxl);
|
|
|
|
|
PutPixel(x+3,y+3,col_pxl);
|
2018-10-20 13:00:31 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-05-01 10:56:46 +02:00
|
|
|
|
void DrawCaptButtonSmallText(dword x,y,w,h,id,color_b, color_t,text)
|
2018-10-20 13:00:31 +02:00
|
|
|
|
{
|
|
|
|
|
dword tx = -strlen(text)*6+w/2+x;
|
|
|
|
|
dword ty = h/2-3+y;
|
|
|
|
|
DefineButton(x,y,w,h,id,color_b);
|
|
|
|
|
WriteText(tx,ty,0x80,color_t,text);
|
2013-03-11 19:16:24 +01:00
|
|
|
|
}
|