1
2set_from_init_file('ICONS', 1);
3
4
5# insert here name of icon images for buttons
6# Icons are used, if ICONS and resp. value are set
7%ACTIVE_ICONS =
8    (
9     'Top',         'a_top.png',
10     'Contents',    'a_tableofcon.png',
11     'Overview',    'a_tableofcon.png',
12     'Index',       'a_index.png',
13     'This',        '',
14     'Back',        'a_left.png',
15     'FastBack',    'a_leftdouble.png',
16     'Prev',        'a_left.png',
17     'Up',          'a_up.png',
18     'Next',        'a_right.png',
19     'NodeUp',      'a_up.png',
20     'NodeNext',    'a_right.png',
21     'NodePrev',    'a_left.png',
22     'NodeForward', 'a_right.png',
23     'NodeBack',    'a_left.png',
24     'Forward',     'a_right.png',
25     'FastForward', 'a_rightdouble.png',
26     'About' ,      'a_help.png',
27     'First',       '',
28     'Last',        '',
29     ' ',           ''
30    );
31
32# insert here name of icon images for these, if button is inactive
33%PASSIVE_ICONS =
34    (
35     'Top',         'a_top_na.png',
36     'Contents',    'a_tableofcon_na.png',
37     'Overview',    'a_tableofcon_na.png',
38     'Index',       'a_index_na.png',
39     'This',        '',
40     'Back',        'a_left_na.png',
41     'FastBack',    'a_leftdouble_na.png',
42     'Prev',        'a_left_na.png',
43     'Up',          'a_up_na.png',
44     'Next',        'a_right_na.png',
45     'NodeUp',      'a_up_na.png',
46     'NodeNext',    'a_right_na.png',
47     'NodePrev',    'a_left_na.png',
48     'NodeForward', 'a_right_na.png',
49     'NodeBack',    'a_left_na.png',
50     'Forward',     'a_right_na.png',
51     'FastForward', 'a_rightdouble_na.png',
52     'About' ,      'a_help_na.png',
53     'First',       '',
54     'Last',        '',
55    );
56
57set_from_init_file('ACTIVE_ICONS', \%ACTIVE_ICONS);
58set_from_init_file('PASSIVE_ICONS', \%PASSIVE_ICONS);
59
601;
61