Subversion Repositories Kolibri OS

Rev

Rev 3363 | Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. //Leency 2008-2013
  2.  
  3.  
  4. dword onLeft(dword right,left) {EAX=Form.width-right-left;}
  5. dword onTop(dword down,up) {EAX=Form.height-GetSkinHeight()-down-up;}
  6.  
  7.  
  8. void ShowMessage(dword message)
  9. {
  10.         DrawFlatButton(Form.width/2-13,160,200,80,0,0xFFB6B5, message);
  11.         pause(150);
  12.         List_ReDraw();
  13. }
  14.  
  15.  
  16. dword ConvertSize(dword bytes)
  17. {
  18.         unsigned char size_prefix[8], size_nm[4];
  19.         if (bytes>=1073741824) strcpy(#size_nm, " Gb");
  20.         else if (bytes>=1048576) strcpy(#size_nm, " Mb");
  21.         else if (bytes>=1024) strcpy(#size_nm, " Kb");
  22.         else strcpy(#size_nm, " b ");
  23.         while (bytes>1023) bytes/=1024;
  24.         strcpy(#size_prefix, itoa(bytes));
  25.         strcat(#size_prefix, #size_nm);
  26.         return #size_prefix;
  27. }
  28.  
  29.  
  30. dword col_palette[14] = {0xD2D3D3,0xD4D4D4,0xD6D5D6,0xD8D7D8,0xDAD8D9,0xDCDADB,
  31. 0xDFDCDD,0xE1DDDE,0xE2DEE0,0xE4DFE1,0xE3DFE1,0xE3DFE1,0xE3DFE1,0xE3DFE1,0xE3DFE1};
  32.  
  33. inline fastcall void TVScroll() { //Ïðîêðóòêà
  34.         dword on_y, i;
  35.         if (count<=0)
  36.         {
  37.                 on_y = 57;
  38.                 scroll_size = onTop(22,58);
  39.         }
  40.         else
  41.         {
  42.                 on_y = za_kadrom * onTop(22,57) / count +57;
  43.                 scroll_size=onTop(22,57) * f_visible - f_visible / count;
  44.                 if (scroll_size<20) scroll_size = 20; //óñòàíàâëèâàåì ìèíèìàëüíûé ðàçìåð ñêðîëëà
  45.                 if (scroll_size>onTop(22,57)-on_y+56) || (za_kadrom+f_visible>=count) on_y=onTop(23+scroll_size,0); //äëÿ áîëüøîãî ñïèñêà
  46.         }
  47.         DrawFlatButton(onLeft(27,0),on_y,16,scroll_size,0,-1,"");//ïîëçóíîê
  48.         if (!scroll_used) for (i=0; i<13; i++) DrawBar(onLeft(25-i,0), on_y+2, 1, scroll_size-3, col_palette[13-i]);
  49.         if (scroll_used)  for (i=0; i<13; i++) DrawBar(onLeft(25-i,0), on_y+2, 1, scroll_size-3, col_palette[i]);
  50.         //ïîëå äî ïîëçóíêà
  51.         if (on_y>58) DrawBar(onLeft(26,0),57,15,1,      0xC7C9C9);
  52.         DrawBar(onLeft(26,0),58,1, on_y-58,0xC7C9C9);
  53.         DrawBar(onLeft(25,0),58,14,on_y-58,0xCED0D0);
  54.         //ïîëå ïîñëå ïîëçóíêà
  55.         if (onTop(22,57)-scroll_size+55>on_y) DrawBar(onLeft(26,0),on_y+scroll_size+1,15,1,0xC7C9C9);
  56.         DrawBar(onLeft(26,0),on_y+scroll_size+2,1,onTop(22,57)-scroll_size-on_y+55,0xC7C9C9);
  57.         DrawBar(onLeft(25,0),on_y+scroll_size+2,14,onTop(22,57)-scroll_size-on_y+55,0xCED0D0);
  58. }
  59.  
  60. void DrawFlatButton(dword x,y,width,height,id,color,text)
  61. {
  62.         int fill_h;
  63.         DrawRectangle(x,y,width,height,col_border);
  64.         DrawRectangle3D(x+1,y+1,width-2,height-2,0xFEFEFE,col_padding);
  65.         PutPixel(x+width-1, y+1, col_work);
  66.         if (color!=-1) DrawFilledBar(x+2, y+2, width-3, height-3);
  67.         IF (id<>0)      DefineButton(x+1,y+1,width-2,height-2,id+BT_HIDE,0xEFEBEF);
  68.         WriteText(-strlen(text)*6+width/2+x+1,height/2-3+y,0x80,0,text);
  69. }
  70.  
  71. void DrawFilledBar(dword x, y, w, h)
  72. {
  73.         int i, fill_h;
  74.         if (h <= 14) fill_h = h; else fill_h = 14;
  75.         for (i=0; i<fill_h; i++) DrawBar(x, y+i, w, 1, col_palette[14-i]);     
  76.         DrawBar(x, y+i, w, h-fill_h, col_palette[14-i]);               
  77. }