1 /*
2  * This file is part of MPlayer.
3  *
4  * MPlayer is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * MPlayer is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with MPlayer; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18 
19 /* LC_ALL=C */
20 /* echo "extern const guint8 ${PNG%.png}_png[];" */
21 
22 #ifndef MPLAYER_GUI_ICONS_H
23 #define MPLAYER_GUI_ICONS_H
24 
25 #include <glib.h>
26 
27 extern const guint8 about_png[];
28 extern const guint8 aspect_png[];
29 extern const guint8 aspect_16_9_png[];
30 extern const guint8 aspect_2_35_1_png[];
31 extern const guint8 aspect_4_3_png[];
32 extern const guint8 aspect_original_png[];
33 extern const guint8 audio_dolby_png[];
34 extern const guint8 audio_dts_png[];
35 extern const guint8 audio_lpcm_png[];
36 extern const guint8 audio_mpeg_png[];
37 extern const guint8 audio_track_png[];
38 extern const guint8 audio_track_load_png[];
39 extern const guint8 blank_png[];
40 extern const guint8 cd_png[];
41 extern const guint8 cd_play_png[];
42 extern const guint8 chapter_png[];
43 extern const guint8 dir_up_png[];
44 extern const guint8 dvd_png[];
45 extern const guint8 dvd_play_png[];
46 extern const guint8 equalizer_png[];
47 extern const guint8 error_png[];
48 extern const guint8 exit_png[];
49 extern const guint8 file_png[];
50 extern const guint8 image_png[];
51 extern const guint8 information_png[];
52 extern const guint8 minimize_png[];
53 extern const guint8 open_png[];
54 extern const guint8 play_png[];
55 extern const guint8 play_next_png[];
56 extern const guint8 play_pause_png[];
57 extern const guint8 play_previous_png[];
58 extern const guint8 play_stop_png[];
59 extern const guint8 playlist_png[];
60 extern const guint8 preferences_png[];
61 extern const guint8 rotate_png[];
62 extern const guint8 rotate_0_png[];
63 extern const guint8 rotate_180_png[];
64 extern const guint8 rotate_90ccw_png[];
65 extern const guint8 rotate_90cw_png[];
66 extern const guint8 seek_backward_10min_png[];
67 extern const guint8 seek_backward_10sec_png[];
68 extern const guint8 seek_backward_1min_png[];
69 extern const guint8 seek_forward_10min_png[];
70 extern const guint8 seek_forward_10sec_png[];
71 extern const guint8 seek_forward_1min_png[];
72 extern const guint8 size_double_png[];
73 extern const guint8 size_full_png[];
74 extern const guint8 size_half_png[];
75 extern const guint8 size_normal_png[];
76 extern const guint8 skin_png[];
77 extern const guint8 subtitle_drop_png[];
78 extern const guint8 subtitle_load_png[];
79 extern const guint8 subtitle_track_png[];
80 extern const guint8 title_png[];
81 extern const guint8 tv_png[];
82 extern const guint8 url_png[];
83 extern const guint8 vcd_png[];
84 extern const guint8 vcd_play_png[];
85 extern const guint8 video_track_png[];
86 extern const guint8 volume_png[];
87 extern const guint8 volume_decrease_png[];
88 extern const guint8 volume_increase_png[];
89 extern const guint8 volume_mute_png[];
90 extern const guint8 warning_png[];
91 
92 #endif /* MPLAYER_GUI_ICONS_H */
93