Subversion Repositories Kolibri OS

Rev

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

  1.  
  2. void DrawScroll(bool _scroll_used) {
  3.         dword i;
  4.  
  5.         dword sc_x = files.x + files.w;
  6.         dword sc_y = files.y;
  7.         dword sc_h = files.h - 16;
  8.         dword sc_slider_y;
  9.         dword sc_center;
  10.  
  11.         if (files.count<=0)
  12.         {
  13.                 sc_slider_y = sc_y - 1;
  14.                 sc_slider_h = sc_h + 1;
  15.         } else {
  16.                 sc_slider_y = files.first * sc_h / files.count + sc_y - 1;
  17.                 sc_slider_h = sc_h * files.visible - files.visible / files.count + 2;
  18.                 if (sc_slider_h < 20) {
  19.                         sc_slider_h = 20; //set minimal scroll height
  20.                 }
  21.                 if (sc_slider_h > sc_h-sc_slider_y+56) || (files.first+files.visible>=files.count) {
  22.                         sc_slider_y= sc_y + sc_h - sc_slider_h; //fix for the very long list
  23.                 }
  24.         }
  25.         //slider
  26.         DrawRectangle(sc_x,sc_slider_y,16,sc_slider_h,sc.work_graph);
  27.         DrawRectangle3D(sc_x+1,sc_slider_y+1,14,sc_slider_h-2, sc.work_light , sc.work_dark);
  28.         for (i=0; i<13; i++) {
  29.                 if (!_scroll_used) EDX = col.work_gradient[13-i]; else EDX = col.work_gradient[i];
  30.                 DrawBar(sc_x + 2 + i, sc_slider_y+2, 1, sc_slider_h-3, EDX);
  31.         }
  32.  
  33.         sc_center = sc_slider_h / 2 + sc_slider_y;
  34.  
  35.         DrawBar(sc_x+4,   sc_center-3, 8,  1, sc.work_graph);
  36.         DrawBar(sc_x+4+1, sc_center-2, 8,  1, sc.work_light);
  37.  
  38.         DrawBar(sc_x+3,   sc_center,   10, 1, sc.work_graph);
  39.         DrawBar(sc_x+3+1, sc_center+1, 10, 1, sc.work_light);
  40.  
  41.         DrawBar(sc_x+4,   sc_center+3, 8,  1, sc.work_graph);
  42.         DrawBar(sc_x+4+1, sc_center+4, 8,  1, sc.work_light);
  43.  
  44.         //area before slider
  45.         if (sc_slider_y > sc_y + 1)
  46.         {
  47.                 DrawBar(sc_x+1, sc_y,   15, 1, col.slider_bg_left);
  48.                 DrawBar(sc_x+1, sc_y+1,  1, sc_slider_y-sc_y-1, col.slider_bg_left);
  49.                 DrawBar(sc_x+2, sc_y+1, 14, sc_slider_y-sc_y-1, col.slider_bg_big);
  50.         }
  51.         //area after slider
  52.         if (sc_h-sc_slider_h+sc_y-2>sc_slider_y)
  53.         {
  54.                 DrawBar(sc_x+1, sc_slider_y + sc_slider_h+1, 15, 1, col.slider_bg_left);
  55.                 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);
  56.                 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);
  57.         }
  58. }
  59.  
  60. void DrawFlatButtonSmall(dword x,y,width,height,id,text)
  61. {
  62.         DrawRectangle(x,y,width,height,sc.work_graph);
  63.         DrawRectangle3D(x+1,y+1,width-2,height-2, sc.work_light, sc.work_dark);
  64.         PutPixel(x+width-1, y+1, sc.work_dark);
  65.         DrawFilledBar(x+2, y+2, width-3, height-3);
  66.         if (id) DefineHiddenButton(x+1,y+1,width-2,height-2,id);
  67.         WriteText(-strlen(text)*6+width/2+x+1,height/2+y-3,0x80,sc.work_text,text);
  68. }
  69.  
  70. void DrawFuncButton(dword x,y,width,id,number,text)
  71. {
  72.         #define FW 12
  73.         #define FH 16
  74.         int numw = calc(number/10)*6+FW;
  75.         if (skin_is_dark()) {
  76.                 DrawFlatButtonSmall(x,y,width,FH,id,text);
  77.                 return;
  78.         }
  79.         DrawRectangle(x,y,width,FH,sc.work_graph);
  80.         DrawRectangle3D(x+1,y+1,width-2,FH-2, 0x97D194, 0x00A100);
  81.         PutPixel(x+width-1, y+1, sc.work_dark);
  82.         DrawBar(x+2, y+2, numw, FH-2, 0x6060FF);
  83.         WriteText(x+6,FH/2+y-2,0x80,0x444444,itoa(number));
  84.         $sub ebx, 1 <<16 + 1
  85.         $add ecx, 0xFFFfff-0x444444
  86.         $int 64
  87.         DrawBar(x+2+numw, y+2, width-3-numw, FH-3, 0x00AA00);
  88.         DefineHiddenButton(x+1,y+1,width-2,FH-2,id);
  89.         WriteText(-strlen(text)*6+width/2+x+8,FH/2+y-2,0x80,0x444444,text);
  90.         $sub ebx, 1 <<16 + 1
  91.         $add ecx, 0xFFFfff-0x444444
  92.         $int 64
  93. }
  94.  
  95. void DrawFilledBar(dword x, y, w, h)
  96. { int i; for (i=0; i<h; i++) DrawBar(x, y+h-i-1, w, 1, col.work_gradient[i]); }
  97.  
  98. void DrawEolitePopup(dword b1_text, b2_text)
  99. {
  100.         #define POPIN_W 260
  101.         int popin_x = files.w - POPIN_W / 2 + files.x ;
  102.         DrawPopup(popin_x, 160, POPIN_W, 95, 1, sc.work, sc.work_graph);
  103.         DrawCaptButton(popin_x+23+000, 215, 100, 26, POPUP_BTN1, sc.button, sc.button_text, b1_text);
  104.         DrawCaptButton(popin_x+23+114, 215, 100, 26, POPUP_BTN2, sc.button, sc.button_text, b2_text);
  105. }
  106.  
  107. void DrawDot(dword x,y) {
  108.         dword col_pxl = MixColors(sc.work_graph, sc.work, 60);
  109.         DrawBar(x+1,y,2,4,sc.work_graph);
  110.         DrawBar(x,y+1,4,2,sc.work_graph);
  111.         PutPixel(x,y,col_pxl);
  112.         PutPixel(x+3,y,col_pxl);
  113.         PutPixel(x,y+3,col_pxl);
  114.         PutPixel(x+3,y+3,col_pxl);
  115. }
  116.