Subversion Repositories Kolibri OS

Rev

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