forked from KolibriOS/kolibrios
dc2423748e
git-svn-id: svn://kolibrios.org@8320 a494cfbc-eb01-0410-851d-a64ba20cac60
143 lines
2.9 KiB
C
143 lines
2.9 KiB
C
|
|
struct _img
|
|
{
|
|
collection url;
|
|
collection_int xywh;
|
|
int getid;
|
|
|
|
void clear();
|
|
dword add_pos();
|
|
bool set_size();
|
|
|
|
dword current_url();
|
|
bool next_url();
|
|
|
|
void draw_all();
|
|
bool draw();
|
|
};
|
|
|
|
void _img::clear()
|
|
{
|
|
url.drop();
|
|
xywh.drop();
|
|
getid = 0;
|
|
}
|
|
|
|
dword _img::add_pos(dword _path, _x, _y)
|
|
{
|
|
char full_path[URL_SIZE];
|
|
strncpy(#full_path, _path, URL_SIZE);
|
|
get_absolute_url(#full_path, history.current());
|
|
|
|
url.add(#full_path);
|
|
xywh.add(_x);
|
|
xywh.add(_y);
|
|
xywh.add(NULL);
|
|
xywh.add(NULL);
|
|
return full_path;
|
|
}
|
|
|
|
bool _img::set_size(dword _buf, _size)
|
|
{
|
|
char vvv[1000];
|
|
int w, h;
|
|
img_decode stdcall (_buf, _size, 0);
|
|
if (EAX) {
|
|
EDI = EAX;
|
|
w = ESDWORD[EDI+4];
|
|
h = ESDWORD[EDI+8];
|
|
xywh.set(getid*4+2, ESDWORD[EDI+4]);
|
|
xywh.set(getid*4+3, ESDWORD[EDI+8]);
|
|
sprintf(#vvv, "%s w:%i h:%i", current_url(), w, h);
|
|
debugln(#vvv);
|
|
}
|
|
}
|
|
|
|
dword _img::current_url()
|
|
{
|
|
return url.get(getid);
|
|
}
|
|
|
|
bool _img::next_url()
|
|
{
|
|
if (getid < url.count-1) {
|
|
getid++;
|
|
return 1;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
void _img::draw_all(int _x, _y, _start, _height)
|
|
{
|
|
int i, img_y;
|
|
|
|
for (i=0; i<url.count; i++)
|
|
{
|
|
img_y = xywh.get(i*4 + 1);
|
|
|
|
if (img_y > _start) && (img_y < _start + _height)
|
|
&& (cache.has(url.get(i))) draw(_x, _y, _start, i);
|
|
}
|
|
}
|
|
|
|
bool _img::draw(int _x, _y, _start, i)
|
|
{
|
|
libimg_image im;
|
|
img_decode stdcall (cache.current_buf, cache.current_size, 0);
|
|
if (EAX) {
|
|
im.image = EAX;
|
|
im.draw(xywh.get(i*4) + _x, xywh.get(i*4+1) - _start + _y, im.w, im.h, 0, 0);
|
|
}
|
|
}
|
|
|
|
/*
|
|
|
|
void ImageCache::Images(dword left1, top1, width1)
|
|
{
|
|
dword image;
|
|
dword imgw=0, imgh=0, img_lines_first=0, cur_pic=0;
|
|
|
|
//getting abs url from (#img_path);
|
|
//cur_pic = GetImage(#img_path);
|
|
|
|
if (!pics[cur_pic].image)
|
|
{
|
|
//cur_pic = GetImage("/sys/network/noimg.png");
|
|
return;
|
|
}
|
|
|
|
imgw = DSWORD[pics[cur_pic].image+4];
|
|
imgh = DSWORD[pics[cur_pic].image+8];
|
|
if (imgw > width1) imgw = width1;
|
|
|
|
draw_y += imgh + 5; TEMPORARY TURN OFF!!!
|
|
|
|
if (top1+imgh<WB1.list.y) || (top1>WB1.list.y+WB1.list.h-10) return; //if all image is out of visible area
|
|
if (top1<WB1.list.y) //if image partly visible (at the top)
|
|
{
|
|
img_lines_first=WB1.list.y-top1;
|
|
imgh=imgh-img_lines_first;
|
|
top1=WB1.list.y;
|
|
}
|
|
if (top1>WB1.list.y+WB1.list.h-imgh-5) //if image partly visible (at the bottom)
|
|
{
|
|
imgh=WB1.list.y+WB1.list.h-top1-5;
|
|
}
|
|
if (imgh<=0) return;
|
|
|
|
img_draw stdcall (pics[cur_pic].image, left1-5, top1, imgw, imgh,0,img_lines_first);
|
|
DrawBar(left1+imgw - 5, top1, WB1.list.w-imgw, imgh, page_bg);
|
|
DrawBar(WB1.list.x, top1+imgh, WB1.list.w, -imgh % WB1.list.item_h + WB1.list.item_h, page_bg);
|
|
if (link)
|
|
{
|
|
UnsafeDefineButton(left1 - 5, top1, imgw, imgh-1, links.count + 400 + BT_HIDE, 0xB5BFC9);
|
|
links.AddText(0, imgw, imgh-1, NOLINE, 1);
|
|
WB1.DrawPage();
|
|
}
|
|
}
|
|
|
|
ImageCache ImgCache;
|
|
|
|
*/
|
|
|