Subversion Repositories Kolibri OS

Rev

Rev 7970 | Go to most recent revision | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7970 Rev 7995
1
struct s_image
1
struct s_image
2
{
2
{
3
	dword *image;
3
	dword *image;
4
	char path[4096];
4
	char path[4096];
5
};
5
};
6
 
6
 
7
s_image pics[100]; //pics = mem_Alloc( 100*sizeof(s_image) );
7
s_image pics[100]; //pics = mem_Alloc( 100*sizeof(s_image) );
8
 
8
 
9
struct ImageCache {
9
struct ImageCache {
10
	int pics_count;
10
	int pics_count;
11
	void Free();
11
	void Free();
12
	int GetImage();
12
	int GetImage();
13
	void Images();
13
	void Images();
14
};
14
};
15
 
15
 
16
void ImageCache::Free()
16
void ImageCache::Free()
17
{
17
{
18
	for ( ; pics_count>0; pics_count--)
18
	for ( ; pics_count>0; pics_count--)
19
	{
19
	{
20
		if (pics[pics_count].image) img_destroy stdcall (pics[pics_count].image);
20
		if (pics[pics_count].image) img_destroy stdcall (pics[pics_count].image);
21
		pics[pics_count].path = NULL;
21
		pics[pics_count].path = NULL;
22
	}
22
	}
23
}
23
}
24
 
24
 
25
int ImageCache::GetImage(dword i_path)
25
int ImageCache::GetImage(dword i_path)
26
{
26
{
27
	int i;
27
	int i;
-
 
28
	return 0;
28
	for (i=0; i<=pics_count; i++) if (!strcmp(#pics[i].path, i_path)) return i; //image exists
29
	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
	// Load image and add it to Cache
30
	pics_count++;
31
	pics_count++;
31
	pics[pics_count].image = load_image(i_path);
32
	//pics[pics_count].image = load_EEERRRR_image(i_path);
32
	strcpy(#pics[pics_count].path, i_path);
33
	//strcpy(#pics[pics_count].path, i_path);
33
	return pics_count;
34
	return pics_count;
34
}
35
}
35
 
36
 
36
 
37
 
37
void ImageCache::Images(dword left1, top1, width1)
38
void ImageCache::Images(dword left1, top1, width1)
38
{
39
{
39
	dword image;
40
	dword image;
40
    dword imgw=0, imgh=0, img_lines_first=0, cur_pic=0;
41
    dword imgw=0, imgh=0, img_lines_first=0, cur_pic=0;
41
	
42
	
42
	//GetAbsoluteURL(#img_path);
43
	//GetAbsoluteURL(#img_path);
43
	//cur_pic = GetImage(#img_path);
44
	//cur_pic = GetImage(#img_path);
44
 
45
 
45
	if (!pics[cur_pic].image) 
46
	if (!pics[cur_pic].image) 
46
	{
47
	{
47
		//cur_pic = GetImage("/sys/network/noimg.png");
48
		//cur_pic = GetImage("/sys/network/noimg.png");
48
		return;
49
		return;
49
	}
50
	}
50
	
51
	
51
	imgw = DSWORD[pics[cur_pic].image+4];
52
	imgw = DSWORD[pics[cur_pic].image+4];
52
	imgh = DSWORD[pics[cur_pic].image+8];
53
	imgh = DSWORD[pics[cur_pic].image+8];
53
	if (imgw > width1) imgw = width1;
54
	if (imgw > width1) imgw = width1;
54
	
55
	
55
	/*
56
	/*
56
	draw_y += imgh + 5; TEMPORARY TURN OFF!!!
57
	draw_y += imgh + 5; TEMPORARY TURN OFF!!!
57
	
58
	
58
	if (top1+imghWB1.list.y+WB1.list.h-10) return; //if all image is out of visible area
59
	if (top1+imghWB1.list.y+WB1.list.h-10) return; //if all image is out of visible area
59
	if (top1
60
	if (top1
60
	{
61
	{
61
		img_lines_first=WB1.list.y-top1;
62
		img_lines_first=WB1.list.y-top1;
62
		imgh=imgh-img_lines_first;
63
		imgh=imgh-img_lines_first;
63
		top1=WB1.list.y;
64
		top1=WB1.list.y;
64
	}
65
	}
65
	if (top1>WB1.list.y+WB1.list.h-imgh-5) //if image partly visible (at the bottom)
66
	if (top1>WB1.list.y+WB1.list.h-imgh-5) //if image partly visible (at the bottom)
66
	{
67
	{
67
		imgh=WB1.list.y+WB1.list.h-top1-5;
68
		imgh=WB1.list.y+WB1.list.h-top1-5;
68
	}	
69
	}	
69
	if (imgh<=0) return;
70
	if (imgh<=0) return;
70
	
71
	
71
	img_draw stdcall (pics[cur_pic].image, left1-5, top1, imgw, imgh,0,img_lines_first);
72
	img_draw stdcall (pics[cur_pic].image, left1-5, top1, imgw, imgh,0,img_lines_first);
72
	DrawBar(left1+imgw - 5, top1, WB1.list.w-imgw, imgh, page_bg);
73
	DrawBar(left1+imgw - 5, top1, WB1.list.w-imgw, imgh, page_bg);
73
	DrawBar(WB1.list.x, top1+imgh, WB1.list.w, -imgh % WB1.list.item_h + WB1.list.item_h, page_bg);
74
	DrawBar(WB1.list.x, top1+imgh, WB1.list.w, -imgh % WB1.list.item_h + WB1.list.item_h, page_bg);
74
	if (link)
75
	if (link)
75
	{
76
	{
76
		UnsafeDefineButton(left1 - 5, top1, imgw, imgh-1, links.count + 400 + BT_HIDE, 0xB5BFC9);
77
		UnsafeDefineButton(left1 - 5, top1, imgw, imgh-1, links.count + 400 + BT_HIDE, 0xB5BFC9);
77
		links.AddText(0, imgw, imgh-1, NOLINE, 1);
78
		links.AddText(0, imgw, imgh-1, NOLINE, 1);
78
		WB1.DrawPage();
79
		WB1.DrawPage();
79
	} 
80
	} 
80
	*/
81
	*/
81
}
82
}
82
 
83
 
83
ImageCache ImgCache;
84
ImageCache ImgCache;