1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
#include "data.h"
static struct EmbedImage {
int width, height, depth;
const unsigned char *data;
int numColors;
const TQRgb *colorTable;
bool alpha;
const char *name;
} embed_image_vec[] = {
{ 16, 16, 32, (const unsigned char*)misc_data, 0, 0, TRUE, "misc" },
{ 130, 300, 32, (const unsigned char*)splash_data, 0, 0, FALSE, "splash" },
{ 32, 32, 32, (const unsigned char*)packageIcon_data, 0, 0, TRUE, "packageIcon" },
{ 0, 0, 0, 0, 0, 0, 0, 0 }
};
const TQImage& qembed_findImage( const TQString& name )
{
static TQDict<TQImage> dict;
TQImage* img = dict.find( name );
if ( !img ) {
for ( int i = 0; embed_image_vec[i].data; i++ ) {
if ( strcmp(embed_image_vec[i].name, name.latin1()) == 0 ) {
img = new TQImage((uchar*)embed_image_vec[i].data,
embed_image_vec[i].width,
embed_image_vec[i].height,
embed_image_vec[i].depth,
(TQRgb*)embed_image_vec[i].colorTable,
embed_image_vec[i].numColors,
TQImage::BigEndian );
if ( embed_image_vec[i].alpha )
img->setAlphaBuffer( TRUE );
dict.insert( name, img );
break;
}
}
if ( !img ) {
static TQImage dummy;
return dummy;
}
}
return *img;
}
|