2013-03-11 19:16:24 +01:00
|
|
|
|
|
|
|
|
|
dword col_palette[14] = {0xD2D3D3,0xD4D4D4,0xD6D5D6,0xD8D7D8,0xDAD8D9,0xDCDADB,
|
|
|
|
|
0xDFDCDD,0xE1DDDE,0xE2DEE0,0xE4DFE1,0xE3DFE1,0xE3DFE1,0xE3DFE1,0xE3DFE1,0xE3DFE1};
|
|
|
|
|
|
2015-08-07 17:12:03 +02:00
|
|
|
|
void Scroll() {
|
2015-03-19 14:49:26 +01:00
|
|
|
|
dword i;
|
|
|
|
|
|
2015-08-10 00:26:14 +02:00
|
|
|
|
word sc_x = files.x + files.w;
|
|
|
|
|
word sc_y = files.y;
|
|
|
|
|
word sc_h = files.h - 16;
|
2015-03-19 14:49:26 +01:00
|
|
|
|
word sc_slider_y;
|
|
|
|
|
|
2013-03-31 22:25:54 +02:00
|
|
|
|
if (files.count<=0)
|
2013-03-20 23:35:57 +01:00
|
|
|
|
{
|
2015-03-19 14:49:26 +01:00
|
|
|
|
sc_slider_y = sc_y;
|
|
|
|
|
sc_slider_h = sc_h - 1;
|
2013-03-20 23:35:57 +01:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2015-03-19 14:49:26 +01:00
|
|
|
|
sc_slider_y = files.first * sc_h / files.count + sc_y;
|
|
|
|
|
sc_slider_h = sc_h * files.visible - files.visible / files.count;
|
|
|
|
|
if (sc_slider_h < 20) sc_slider_h = 20; //minimal scroll width
|
2015-08-18 17:02:42 +02:00
|
|
|
|
if (sc_slider_h > sc_h-sc_slider_y+56) || (files.first+files.visible>=files.count) sc_slider_y= Form.cheight - 19 - 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
|
2016-01-10 21:02:47 +01:00
|
|
|
|
DrawRectangle(sc_x,sc_slider_y,16,sc_slider_h,system.color.work_graph);
|
|
|
|
|
DrawRectangle3D(sc_x+1,sc_slider_y+1,14,sc_slider_h-2,0xFEFEFE,col_padding);
|
2015-03-19 14:49:26 +01: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_palette[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_palette[i]);
|
|
|
|
|
//area before slider
|
|
|
|
|
if (sc_slider_y > sc_y + 1)
|
|
|
|
|
{
|
|
|
|
|
DrawBar(sc_x+1, sc_y, 15, 1, 0xC7C9C9);
|
|
|
|
|
DrawBar(sc_x+1, sc_y+1, 1, sc_slider_y-sc_y-1, 0xC7C9C9);
|
|
|
|
|
DrawBar(sc_x+2, sc_y+1, 14, sc_slider_y-sc_y-1, 0xCED0D0);
|
|
|
|
|
}
|
|
|
|
|
//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
|
|
|
|
{
|
|
|
|
|
DrawBar(sc_x+1, sc_slider_y + sc_slider_h+1, 15, 1, 0xC7C9C9);
|
2015-08-10 00:26:14 +02:00
|
|
|
|
DrawBar(sc_x+1, sc_slider_y + sc_slider_h+2, 1, sc_h-sc_slider_h-sc_slider_y+sc_y-2, 0xC7C9C9);
|
|
|
|
|
DrawBar(sc_x+2, sc_slider_y + sc_slider_h+2, 14, sc_h-sc_slider_h-sc_slider_y+sc_y-2, 0xCED0D0);
|
2013-03-20 23:35:57 +01:00
|
|
|
|
}
|
2013-03-11 19:16:24 +01:00
|
|
|
|
}
|
|
|
|
|
|
2016-01-10 21:02:47 +01:00
|
|
|
|
void DrawFlatButton(dword x,y,width,height,id,text)
|
2013-03-11 19:16:24 +01:00
|
|
|
|
{
|
2015-08-04 16:36:07 +02:00
|
|
|
|
DrawRectangle(x,y,width,height,system.color.work_graph);
|
2013-03-11 19:16:24 +01:00
|
|
|
|
DrawRectangle3D(x+1,y+1,width-2,height-2,0xFEFEFE,col_padding);
|
2013-10-23 19:55:07 +02:00
|
|
|
|
PutPixel(x+width-1, y+1, col_padding);
|
2016-01-10 21:02:47 +01:00
|
|
|
|
DrawFilledBar(x+2, y+2, width-3, height-3);
|
|
|
|
|
if (id) DefineButton(x+1,y+1,width-2,height-2,id+BT_HIDE,0xEFEBEF);
|
2016-02-09 02:43:58 +01:00
|
|
|
|
if (height<18) {
|
|
|
|
|
WriteText(-strlen(text)*6+width/2+x+1,height/2+y-3,0x80,MixColors(system.color.work_text,0xFFFfff,210),text);
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
DrawRectangle3D(x-1,y-1,width+2,height+2,system.color.work,MixColors(system.color.work,system.color.work_graph,200));
|
|
|
|
|
WriteText(-strlen(text)*8+width/2+x+1,height/2+y-6,0x90,MixColors(system.color.work_text,0xFFFfff,210),text);
|
|
|
|
|
}
|
2013-03-11 19:16:24 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DrawFilledBar(dword x, y, w, h)
|
|
|
|
|
{
|
|
|
|
|
int i, fill_h;
|
|
|
|
|
if (h <= 14) fill_h = h; else fill_h = 14;
|
|
|
|
|
for (i=0; i<fill_h; i++) DrawBar(x, y+i, w, 1, col_palette[14-i]);
|
2016-01-07 14:10:39 +01:00
|
|
|
|
DrawBar(x, y+i, w, h-fill_h, col_palette[14-i]);
|
2013-11-14 01:22:55 +01:00
|
|
|
|
}
|
|
|
|
|
|
2015-12-26 12:03:17 +01:00
|
|
|
|
void DrawEolitePopup(dword b1_text, b2_text)
|
2013-11-14 01:22:55 +01:00
|
|
|
|
{
|
2015-12-26 12:03:17 +01:00
|
|
|
|
int form_w=250, button_padding=30;
|
|
|
|
|
int b1_len = strlen(b1_text) * 8 + button_padding;
|
|
|
|
|
int b2_len = strlen(b2_text) * 8 + button_padding;
|
|
|
|
|
int dform_x = files.w - form_w / 2 + files.x ;
|
|
|
|
|
int button_margin = form_w - b1_len - b2_len / 3;
|
|
|
|
|
int b1_x = dform_x + button_margin;
|
|
|
|
|
int b2_x = dform_x + button_margin + b1_len + button_margin;
|
|
|
|
|
DrawPopup(dform_x, 160, form_w, 90, 1, system.color.work, system.color.work_graph);
|
2016-01-10 21:02:47 +01:00
|
|
|
|
DrawFlatButton(b1_x, 210, b1_len, 24, 301, b1_text);
|
|
|
|
|
DrawFlatButton(b2_x, 210, b2_len, 24, 302, b2_text);
|
2013-03-11 19:16:24 +01:00
|
|
|
|
}
|