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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
/***************************************************************************
* $Id$
**
* Copyright (C) 1992-2000 Trolltech AS. All rights reserved.
**
* This file is part of an example program for Qt. This example
* program may be used, distributed and modified without limitation.
**
****************************************************************************/
import org.trinitydesktop.qt.*;
import java.util.ArrayList;
class ImageIconProvider extends TQFileIconProvider
{
ArrayList fmts;
TQPixmap imagepm;
/* XPM */
static String image_xpm[] = {
"17 15 9 1",
" c #7F7F7F",
". c #FFFFFF",
"X c #00B6FF",
"o c #BFBFBF",
"O c #FF6C00",
"+ c #000000",
"@ c #0000FF",
"# c #6CFF00",
"$ c #FFB691",
" ..XX",
" ........o .XXX",
" .OOOOOOOo. XXX+",
" .O@@@@@@+++XXX++",
" .O@@@@@@O.XXX+++",
" .O@@@@@@OXXX+++.",
" .O######XXX++...",
" .O#####XXX++....",
" .O##$#$XX+o+....",
" .O#$$$$$+.o+....",
" .O##$$##O.o+....",
" .OOOOOOOO.o+....",
" ..........o+....",
" ooooooooooo+....",
"+++++++++++++...."
};
ImageIconProvider( )
{
this(null, null);
}
ImageIconProvider( TQWidget parent, String name )
{
super( parent, name );
imagepm = new TQPixmap(image_xpm);
fmts = TQImage.inputFormats();
}
public TQPixmap pixmap( TQFileInfo fi )
{
String ext = fi.extension().toUpperCase();
if ( fmts.indexOf(ext) != -1 ) {
return imagepm;
} else {
return super.pixmap(fi);
}
}
}
|