Subversion Repositories Kolibri OS

Rev

Rev 7491 | Rev 7637 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1.  
  2. void Scroll() {
  3.         dword i;
  4.  
  5.         word sc_x = files.x + files.w;
  6.         word sc_y = files.y;
  7.         word sc_h = files.h - 16;
  8.         word sc_slider_y;
  9.  
  10.         if (files.count<=0)
  11.         {
  12.                 sc_slider_y = sc_y;
  13.                 sc_slider_h = sc_h - 1;
  14.         }
  15.         else
  16.         {
  17.                 sc_slider_y = files.first * sc_h / files.count + sc_y;
  18.                 sc_slider_h = sc_h * files.visible - files.visible / files.count;
  19.                 if (sc_slider_h < 20) sc_slider_h = 20; //minimal scroll width
  20.                 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; //äëÿ áîëüøîãî ñïèñêà
  21.         }
  22.         //slider
  23.         DrawRectangle(sc_x,sc_slider_y,16,sc_slider_h,col.graph);
  24.         DrawRectangle3D(sc_x+1,sc_slider_y+1,14,sc_slider_h-2, system.color.work_light , system.color.work_dark);
  25.         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]);
  26.         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]);
  27.         //area before slider
  28.         if (sc_slider_y > sc_y + 1)
  29.         {
  30.                 DrawBar(sc_x+1, sc_y,   15, 1, col.slider_bg_left);
  31.                 DrawBar(sc_x+1, sc_y+1,  1, sc_slider_y-sc_y-1, col.slider_bg_left);
  32.                 DrawBar(sc_x+2, sc_y+1, 14, sc_slider_y-sc_y-1, col.slider_bg_big);
  33.         }
  34.         //area after slider
  35.         if (sc_h-sc_slider_h+sc_y-2>sc_slider_y)
  36.         {
  37.                 DrawBar(sc_x+1, sc_slider_y + sc_slider_h+1, 15, 1, col.slider_bg_left);
  38.                 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);
  39.                 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);
  40.         }
  41. }
  42.  
  43. void DrawFlatButtonSmall(dword x,y,width,height,id,text)
  44. {
  45.         DrawRectangle(x,y,width,height,col.graph);
  46.         DrawRectangle3D(x+1,y+1,width-2,height-2, system.color.work_light, system.color.work_dark);
  47.         PutPixel(x+width-1, y+1, system.color.work_dark);
  48.         DrawFilledBar(x+2, y+2, width-3, height-3);
  49.         if (id) DefineHiddenButton(x+1,y+1,width-2,height-2,id);
  50.         WriteText(-strlen(text)*6+width/2+x+1,height/2+y-3,0x80,system.color.work_text,text);
  51. }
  52.  
  53. void DrawFilledBar(dword x, y, w, h)
  54. {
  55.         int i, fill_h;
  56.         if (h < 12) {
  57.                 for (i=0; i<h; i++) DrawBar(x, y+i, w, 1, col.work_gradient[12-i]);
  58.         } else {
  59.                 DrawBar(x, y, w, h, col.work_gradient[12]);
  60.         }
  61. }
  62.  
  63. int popin_w=260;
  64. void DrawEolitePopup(dword b1_text, b2_text)
  65. {
  66.         int but_x;
  67.         int popin_x = files.w - popin_w / 2 + files.x ;
  68.         DrawPopup(popin_x, 160, popin_w, 95, 1, system.color.work, col.graph);
  69.         but_x = DrawStandartCaptButton(popin_x+23, 215, POPUP_BTN1, b1_text);
  70.         DrawStandartCaptButton(popin_x+23 + but_x, 215, POPUP_BTN2, b2_text);
  71. }
  72.  
  73. void DrawDot(dword x,y) {
  74.         dword col_pxl = MixColors(col.graph, col.work, 60);
  75.         DrawBar(x+1,y,2,4,col.graph);
  76.         DrawBar(x,y+1,4,2,col.graph);
  77.         PutPixel(x,y,col_pxl);
  78.         PutPixel(x+3,y,col_pxl);
  79.         PutPixel(x,y+3,col_pxl);
  80.         PutPixel(x+3,y+3,col_pxl);
  81. }
  82.  
  83. :void DrawCaptButtonSmallText(dword x,y,w,h,id,color_b, color_t,text)
  84. {
  85.         dword tx = -strlen(text)*6+w/2+x;
  86.         dword ty = h/2-3+y;
  87.         DefineButton(x,y,w,h,id,color_b);
  88.         WriteText(tx,ty,0x80,color_t,text);
  89. }