Subversion Repositories Kolibri OS

Rev

Rev 5435 | Rev 5674 | 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. inline fastcall void Scroll() { //Ïðîêðóòêà
  6.         dword on_y, i;
  7.         if (files.count<=0)
  8.         {
  9.                 on_y = 57;
  10.                 scroll_size = onTop(22,58);
  11.         }
  12.         else
  13.         {
  14.                 on_y = files.first * onTop(22,57) / files.count +57;
  15.                 scroll_size=onTop(22,57) * files.visible - files.visible / files.count;
  16.                 if (scroll_size<20) scroll_size = 20; //óñòàíàâëèâàåì ìèíèìàëüíûé ðàçìåð ñêðîëëà
  17.                 if (scroll_size>onTop(22,57)-on_y+56) || (files.first+files.visible>=files.count) on_y=onTop(23+scroll_size,0); //äëÿ áîëüøîãî ñïèñêà
  18.         }
  19.         DrawFlatButton(Form.cwidth - 18,on_y,16,scroll_size,0,-1,"");//ïîëçóíîê
  20.         if (!scroll_used) for (i=0; i<13; i++) DrawBar(Form.cwidth - 16 + i, on_y+2, 1, scroll_size-3, col_palette[13-i]);
  21.         if (scroll_used)  for (i=0; i<13; i++) DrawBar(Form.cwidth - 16 + i, on_y+2, 1, scroll_size-3, col_palette[i]);
  22.         //ïîëå äî ïîëçóíêà
  23.         if (on_y>58) DrawBar(Form.cwidth - 17,57,15,1, 0xC7C9C9);
  24.         DrawBar(Form.cwidth - 17,58,1, on_y-58,0xC7C9C9);
  25.         DrawBar(Form.cwidth - 16,58,14,on_y-58,0xCED0D0);
  26.         //ïîëå ïîñëå ïîëçóíêà
  27.         if (onTop(22,57)-scroll_size+55>on_y) DrawBar(Form.cwidth - 17,on_y+scroll_size+1,15,1,0xC7C9C9);
  28.         DrawBar(Form.cwidth - 17,on_y+scroll_size+2,1,onTop(22,57)-scroll_size-on_y+55,0xC7C9C9);
  29.         DrawBar(Form.cwidth - 16,on_y+scroll_size+2,14,onTop(22,57)-scroll_size-on_y+55,0xCED0D0);
  30. }
  31.  
  32. void DrawFlatButton(dword x,y,width,height,id,color,text)
  33. {
  34.         int fill_h;
  35.         DrawRectangle(x,y,width,height,sc.work_graph);
  36.         DrawRectangle3D(x+1,y+1,width-2,height-2,0xFEFEFE,col_padding);
  37.         PutPixel(x+width-1, y+1, col_padding);
  38.         if (color!=-1) DrawFilledBar(x+2, y+2, width-3, height-3);
  39.         IF (id<>0)      DefineButton(x+1,y+1,width-2,height-2,id+BT_HIDE,0xEFEBEF);
  40.         WriteText(-strlen(text)*6+width/2+x+1,height/2-3+y,0x80,sc.work_text,text);
  41. }
  42.  
  43. void DrawFilledBar(dword x, y, w, h)
  44. {
  45.         int i, fill_h;
  46.         if (h <= 14) fill_h = h; else fill_h = 14;
  47.         for (i=0; i<fill_h; i++) DrawBar(x, y+i, w, 1, col_palette[14-i]);     
  48.         DrawBar(x, y+i, w, h-fill_h, col_palette[14-i]);               
  49. }
  50.  
  51. void ShowMessage(dword message, pause_duration)
  52. {
  53.         int form_x=files.w-220/2+files.x;
  54.         int form_y=160;
  55.         DrawPopup(form_x,form_y,220,80,1,sc.work,sc.work_graph);
  56.         WriteText(-strlen(message)*3+110+form_x,80/2-4+form_y,0x80,sc.work_text,message);
  57.         pause(pause_duration);
  58.         if (pause_duration) List_ReDraw();
  59. }