Subversion Repositories Kolibri OS

Rev

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

  1.  
  2. dword col_palette[14] = {0xD2D3D3,0xD4D4D4,0xD6D5D6,0xD8D7D8,0xDAD8D9,0xDCDADB,
  3. 0xDFDCDD,0xE1DDDE,0xE2DEE0,0xE4DFE1,0xE3DFE1,0xE3DFE1,0xE3DFE1,0xE3DFE1,0xE3DFE1};
  4.  
  5. void Scroll() {
  6.         dword i;
  7.  
  8.         word sc_x = files.x + files.w;
  9.         word sc_y = files.y;
  10.         word sc_h = files.h - 16;
  11.         word sc_slider_y;
  12.  
  13.         if (files.count<=0)
  14.         {
  15.                 sc_slider_y = sc_y;
  16.                 sc_slider_h = sc_h - 1;
  17.         }
  18.         else
  19.         {
  20.                 sc_slider_y = files.first * sc_h / files.count + sc_y;
  21.                 sc_slider_h = sc_h * files.visible - files.visible / files.count;
  22.                 if (sc_slider_h < 20) sc_slider_h = 20; //minimal scroll width
  23.                 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; //äëÿ áîëüøîãî ñïèñêà
  24.         }
  25.         //slider
  26.         DrawRectangle(sc_x,sc_slider_y,16,sc_slider_h,system.color.work_graph);
  27.         DrawRectangle3D(sc_x+1,sc_slider_y+1,14,sc_slider_h-2,0xFEFEFE,col_padding);
  28.         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]);
  29.         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]);
  30.         //area before slider
  31.         if (sc_slider_y > sc_y + 1)
  32.         {
  33.                 DrawBar(sc_x+1, sc_y,   15, 1, 0xC7C9C9);
  34.                 DrawBar(sc_x+1, sc_y+1,  1, sc_slider_y-sc_y-1, 0xC7C9C9);
  35.                 DrawBar(sc_x+2, sc_y+1, 14, sc_slider_y-sc_y-1, 0xCED0D0);
  36.         }
  37.         //area after slider
  38.         if (sc_h-sc_slider_h+sc_y-2>sc_slider_y)
  39.         {
  40.                 DrawBar(sc_x+1, sc_slider_y + sc_slider_h+1, 15, 1, 0xC7C9C9);
  41.                 DrawBar(sc_x+1, sc_slider_y + sc_slider_h+2,  1, sc_h-sc_slider_h-sc_slider_y+sc_y-2, 0xC7C9C9);
  42.                 DrawBar(sc_x+2, sc_slider_y + sc_slider_h+2, 14, sc_h-sc_slider_h-sc_slider_y+sc_y-2, 0xCED0D0);
  43.         }
  44. }
  45.  
  46. void DrawFlatButton(dword x,y,width,height,id,text)
  47. {
  48.         DrawRectangle(x,y,width,height,system.color.work_graph);
  49.         DrawRectangle3D(x+1,y+1,width-2,height-2,0xFEFEFE,col_padding);
  50.         PutPixel(x+width-1, y+1, col_padding);
  51.         DrawFilledBar(x+2, y+2, width-3, height-3);
  52.         if (id) DefineButton(x+1,y+1,width-2,height-2,id+BT_HIDE,0xEFEBEF);
  53.         if (height<18) {
  54.                 WriteText(-strlen(text)*6+width/2+x+1,height/2+y-3,0x80,MixColors(system.color.work_text,0xFFFfff,210),text);
  55.         }
  56.         else {
  57.                 DrawRectangle3D(x-1,y-1,width+2,height+2,system.color.work,MixColors(system.color.work,system.color.work_graph,200));
  58.                 WriteText(-strlen(text)*8+width/2+x+1,height/2+y-6,0x90,MixColors(system.color.work_text,0xFFFfff,210),text);
  59.         }
  60. }
  61.  
  62. void DrawFilledBar(dword x, y, w, h)
  63. {
  64.         int i, fill_h;
  65.         if (h <= 14) fill_h = h; else fill_h = 14;
  66.         for (i=0; i<fill_h; i++) DrawBar(x, y+i, w, 1, col_palette[14-i]);     
  67.         DrawBar(x, y+i, w, h-fill_h, col_palette[14-i]);
  68. }
  69.  
  70. void DrawEolitePopup(dword b1_text, b2_text)
  71. {
  72.         int form_w=250, button_padding=30;
  73.         int b1_len = strlen(b1_text) * 8 + button_padding;
  74.         int b2_len = strlen(b2_text) * 8 + button_padding;
  75.         int dform_x = files.w - form_w / 2 + files.x ;
  76.         int button_margin = form_w - b1_len - b2_len / 3;
  77.         int b1_x = dform_x + button_margin;
  78.         int b2_x = dform_x + button_margin + b1_len + button_margin;
  79.         DrawPopup(dform_x, 160, form_w, 90, 1, system.color.work, system.color.work_graph);
  80.         DrawFlatButton(b1_x, 210, b1_len, 24, 301, b1_text);
  81.         DrawFlatButton(b2_x, 210, b2_len, 24, 302, b2_text);
  82. }