dword col_work_gradient[14]; void Scroll() { dword i; word sc_x = files.x + files.w; word sc_y = files.y; word sc_h = files.h - 16; word sc_slider_y; if (files.count<=0) { sc_slider_y = sc_y; sc_slider_h = sc_h - 1; } else { 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 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 - 1; //для большого списка } //slider DrawRectangle(sc_x,sc_slider_y,16,sc_slider_h,col_graph); DrawRectangle3D(sc_x+1,sc_slider_y+1,14,sc_slider_h-2, system.color.work_light , system.color.work_dark); 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]); //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 if (sc_h-sc_slider_h+sc_y-2>sc_slider_y) { DrawBar(sc_x+1, sc_slider_y + sc_slider_h+1, 15, 1, 0xC7C9C9); 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); } } void DrawFlatButtonSmall(dword x,y,width,height,id,text) { DrawRectangle(x,y,width,height,col_graph); DrawRectangle3D(x+1,y+1,width-2,height-2, system.color.work_light , system.color.work_dark); PutPixel(x+width-1, y+1, system.color.work_dark); DrawFilledBar(x+2, y+2, width-3, height-3); if (id) DefineHiddenButton(x+1,y+1,width-2,height-2,id); WriteText(-strlen(text)*6+width/2+x+1,height/2+y-3,0x80,system.color.work_text,text); } 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