Subversion Repositories Kolibri OS

Rev

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

  1. struct s_image
  2. {
  3.         dword *image;
  4.         char path[4096];
  5. };
  6.  
  7. s_image pics[100]; //pics = mem_Alloc( 100*sizeof(s_image) );
  8.  
  9. struct ImageCache {
  10.         int pics_count;
  11.         void Free();
  12.         int GetImageNumber();
  13.         void Images();
  14. };
  15.  
  16. void ImageCache::Free()
  17. {
  18.         for ( ; pics_count>0; pics_count--)
  19.         {
  20.                 if (pics[pics_count].image) img_destroy stdcall (pics[pics_count].image);
  21.                 pics[pics_count].path = NULL;
  22.         }
  23. }
  24.  
  25. int ImageCache::GetImageNumber(dword i_path)
  26. {
  27.         int i;
  28.         for (i=0; i<pics_count; i++) if (!strcmp(#pics[i].path, i_path)) return i; //image exists
  29.         // Load image and add it to Cache
  30.         pics_count++;
  31.         pics[pics_count].image = load_image(i_path);
  32.         strcpy(#pics[pics_count].path, i_path);
  33.         return pics_count;
  34. }
  35.  
  36.  
  37. void ImageCache::Images(int left1, top1, width1)
  38. {
  39.         dword image;
  40.     char img_path[4096], alt[4096];
  41.     int w=0, h=0, img_lines_first=0, cur_pic=0;
  42.        
  43.         do{
  44.                 if (!strcmp(#parametr,"src="))   //íàäî îáúåäèíèòü ñ GetNewUrl()
  45.                 {
  46.                         //if (downloader_id) strcpy(#img_path, #history_list[history_current-1].Item); else
  47.                         strcpy(#img_path, BrowserHistory.CurrentUrl());
  48.                         if (strcmpn(#img_path, "http:", 5)!=0) || (strcmpn(#options, "http:", 5)!=0)
  49.                         {
  50.                                 //get path: absolute or relative
  51.                                 if (options[0]=='/')
  52.                                         strcpy(#img_path, #options);
  53.                                 else
  54.                                 {
  55.                                         img_path[strrchr(#img_path, '/')] = '\0';
  56.                                         strcat(#img_path, #options);
  57.                                 }
  58.                                 cur_pic = GetImageNumber(#img_path);
  59.                         }
  60.                 }
  61.                 if (!strcmp(#parametr,"alt="))
  62.                 {
  63.                         strcpy(#alt, "[");
  64.                         strcat(#alt, #options);
  65.                         strcat(#alt, "]");
  66.                 }
  67.  
  68.         } while(GetNextParam());
  69.        
  70.         if (!pics[cur_pic].image)
  71.         {
  72.                 if (alt) && (link) strcat(#line, #alt);
  73.                 return;
  74.         }
  75.        
  76.         w = DSWORD[pics[cur_pic].image+4];
  77.         h = DSWORD[pics[cur_pic].image+8];
  78.         if (w > width1) w = width1;
  79.        
  80.         if (stroka==0) DrawBar(WB1.list.x, WB1.list.y, WB1.list.w-15, 5, bg_color); //çàêðàøèâàåì ïåðâóþ ñòðîêó
  81.         stroka += h/10;
  82.         if (top1+h<WB1.list.y) || (top1>WB1.list.y+WB1.list.h-10) return; //åñëè ÂѨ èçîáðàæåíèå óøëî ÂÅÐÕ èëè ÂÍÈÇ
  83.         if (top1<WB1.list.y) //åñëè ÷àñòü èçîáðàæåíèÿ ñâåðõó
  84.         {
  85.                 img_lines_first=WB1.list.y-top1;
  86.                 h=h-img_lines_first;
  87.                 top1=WB1.list.y;
  88.         }
  89.         if (top1>WB1.list.y+WB1.list.h-h-5) //åñëè ÷àñòü èçîáðàæåíèÿ ñíèçó
  90.         {
  91.                 h=WB1.list.y+WB1.list.h-top1-5;
  92.         }      
  93.         if (h<=0) return;
  94.         if (anchor) return;
  95.        
  96.         img_draw stdcall (pics[cur_pic].image, left1-5, top1, w, h,0,img_lines_first);
  97.         DrawBar(left1+w - 5, top1, WB1.list.w-w, h, bg_color);
  98.         IF (link) UnsafeDefineButton(left1 - 5, top1, w, h-1, PageLinks.count + 400 + BT_HIDE, 0xB5BFC9);
  99. }
  100.  
  101. ImageCache ImgCache;