Mercurial > mplayer.hg
annotate Gui/mplayer/gtk/about.c @ 19959:8ae8ee951284
Improve swscale-example to test conversions between all the possible
pixel formats
author | lucabe |
---|---|
date | Sun, 24 Sep 2006 09:55:18 +0000 |
parents | 4a8dbeb06bad |
children | 8e6182a75006 |
rev | line source |
---|---|
2901 | 1 |
17144 | 2 #include "../app.h" |
3 #include "../../config.h" | |
4 #include "../../help_mp.h" | |
2901 | 5 |
6625 | 6 #include "mplayer/pixmaps/about.xpm" |
2901 | 7 #include "../widgets.h" |
8 #include "about.h" | |
8299 | 9 #include "common.h" |
2901 | 10 |
8299 | 11 GtkWidget * About = NULL; |
6146 | 12 |
13 void ShowAboutBox( void ) | |
14 { | |
8299 | 15 if ( About ) gtkActive( About ); |
16 else About=create_About(); | |
17 gtk_widget_show( About ); | |
6146 | 18 } |
2901 | 19 |
8719
dc27303ae528
correct widget destroy event handler (thank for D J Hawkey Jr <hawkeyd@visi.com>)
pontscho
parents:
8299
diff
changeset
|
20 void abWidgetDestroy( GtkWidget * widget,GtkWidget ** widget_pointer ) |
dc27303ae528
correct widget destroy event handler (thank for D J Hawkey Jr <hawkeyd@visi.com>)
pontscho
parents:
8299
diff
changeset
|
21 { WidgetDestroy( NULL,&About ); } |
dc27303ae528
correct widget destroy event handler (thank for D J Hawkey Jr <hawkeyd@visi.com>)
pontscho
parents:
8299
diff
changeset
|
22 |
2901 | 23 GtkWidget * create_About( void ) |
24 { | |
8299 | 25 GtkWidget * vbox; |
2901 | 26 GtkWidget * pixmap1; |
27 GtkWidget * scrolledwindow1; | |
28 GtkWidget * AboutText; | |
29 GtkWidget * Ok; | |
30 | |
16246 | 31 #ifdef HAVE_GTK2_GUI |
32 GtkTextBuffer * AboutTextBuffer; | |
33 GtkTextIter iter; | |
34 #endif //HAVE_GTK2_GUI | |
35 | |
2901 | 36 GtkStyle * pixmapstyle; |
3616 | 37 GdkPixmap * pixmapwid; |
2901 | 38 GdkBitmap * mask; |
39 | |
40 GtkAccelGroup * accel_group; | |
41 | |
6146 | 42 accel_group=gtk_accel_group_new(); |
2901 | 43 |
44 About=gtk_window_new( GTK_WINDOW_TOPLEVEL ); | |
45 gtk_widget_set_name( About,MSGTR_About ); | |
46 gtk_object_set_data( GTK_OBJECT( About ),MSGTR_About,About ); | |
47 gtk_widget_set_usize( About,340,415 ); | |
48 gtk_window_set_title( GTK_WINDOW( About ),MSGTR_About ); | |
49 gtk_window_set_position( GTK_WINDOW( About ),GTK_WIN_POS_CENTER ); | |
50 gtk_window_set_policy( GTK_WINDOW( About ),TRUE,FALSE,FALSE ); | |
8299 | 51 gtk_window_set_wmclass( GTK_WINDOW( About ),"About","MPlayer" ); |
6651 | 52 |
53 gtk_widget_realize( About ); | |
54 gtkAddIcon( About ); | |
8299 | 55 |
56 vbox=AddVBox( AddDialogFrame( About ),0 ); | |
2901 | 57 |
58 pixmapstyle=gtk_widget_get_style( About ); | |
3616 | 59 pixmapwid=gdk_pixmap_colormap_create_from_xpm_d( About->window,gdk_colormap_get_system(),&mask,&pixmapstyle->bg[GTK_STATE_NORMAL],about_xpm ); |
2901 | 60 pixmap1=gtk_pixmap_new( pixmapwid,mask ); |
61 | |
62 gtk_widget_set_name( pixmap1,"pixmap1" ); | |
63 gtk_widget_show( pixmap1 ); | |
8299 | 64 gtk_box_pack_start( GTK_BOX( vbox ),pixmap1,FALSE,FALSE,0 ); |
2901 | 65 gtk_widget_set_usize( pixmap1,-2,174 ); |
66 | |
8299 | 67 AddHSeparator( vbox ); |
2901 | 68 |
69 scrolledwindow1=gtk_scrolled_window_new( NULL,NULL ); | |
70 gtk_widget_set_name( scrolledwindow1,"scrolledwindow1" ); | |
71 gtk_widget_show( scrolledwindow1 ); | |
8299 | 72 gtk_box_pack_start( GTK_BOX( vbox ),scrolledwindow1,TRUE,TRUE,0 ); |
2901 | 73 gtk_scrolled_window_set_policy( GTK_SCROLLED_WINDOW( scrolledwindow1 ),GTK_POLICY_AUTOMATIC,GTK_POLICY_AUTOMATIC ); |
74 | |
16246 | 75 #ifdef HAVE_GTK2_GUI |
76 AboutText = gtk_text_view_new(); | |
17086
c8bad98f63b5
About text should _not_ be editable, it just looks stupid.
reimar
parents:
16246
diff
changeset
|
77 gtk_text_view_set_editable(GTK_TEXT_VIEW(AboutText), FALSE); |
c8bad98f63b5
About text should _not_ be editable, it just looks stupid.
reimar
parents:
16246
diff
changeset
|
78 gtk_text_view_set_cursor_visible(GTK_TEXT_VIEW(AboutText), FALSE); |
16246 | 79 AboutTextBuffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (AboutText)); |
80 gtk_text_buffer_get_iter_at_offset (AboutTextBuffer, &iter, 0); | |
81 #else | |
2901 | 82 AboutText=gtk_text_new( NULL,NULL ); |
17086
c8bad98f63b5
About text should _not_ be editable, it just looks stupid.
reimar
parents:
16246
diff
changeset
|
83 gtk_text_set_editable(GTK_TEXT(AboutText), FALSE); |
16246 | 84 #endif |
2901 | 85 gtk_widget_set_name( AboutText,"AboutText" ); |
86 gtk_widget_show( AboutText ); | |
87 gtk_container_add( GTK_CONTAINER( scrolledwindow1 ),AboutText ); | |
16246 | 88 #ifdef HAVE_GTK2_GUI |
89 gtk_text_buffer_insert (AboutTextBuffer, &iter, | |
90 #else | |
2901 | 91 gtk_text_insert( GTK_TEXT( AboutText ),NULL,NULL,NULL, |
16246 | 92 #endif |
9189 | 93 "\n" |
94 MSGTR_ABOUT_UHU | |
95 " (http://www.uhulinux.hu/)\n" | |
96 "\n" | |
17135
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
97 MSGTR_ABOUT_Contributors |
9189 | 98 "\n" |
17135
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
99 " * Ackermann, Andreas\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
100 " * adland\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
101 " * Anholt, Eric\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
102 " * Ashberg, Folke\n" |
17157
770013678d44
Convert this file to UTF-8 as it contains funky caracters from all around the world.
gpoirier
parents:
17144
diff
changeset
|
103 " * Balatoni, Dénes\n" |
17135
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
104 " * Barat, Zsolt\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
105 " * Barbato, Luca\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
106 " * Baryshkov, Dmitry\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
107 " * Baudet, Bertrand\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
108 " * Bedel, Alban\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
109 " * Behrisch, Michael\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
110 " * Belev, Luchezar\n" |
17157
770013678d44
Convert this file to UTF-8 as it contains funky caracters from all around the world.
gpoirier
parents:
17144
diff
changeset
|
111 " * Bérczi, Gábor\n" |
17135
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
112 " * Berecz, Szabolcs\n" |
17157
770013678d44
Convert this file to UTF-8 as it contains funky caracters from all around the world.
gpoirier
parents:
17144
diff
changeset
|
113 " * Beregszászi, Alex\n" |
17135
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
114 " * Bitterberg, Tilmann\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
115 " * Biurrun, Diego\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
116 " * Blomenkamp, Marcsu\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
117 " * Buehler, Andrew\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
118 " * Bulgroz, Eviv\n" |
17157
770013678d44
Convert this file to UTF-8 as it contains funky caracters from all around the world.
gpoirier
parents:
17144
diff
changeset
|
119 " * Bünemann, Felix\n" |
17135
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
120 " * Bunkus, Moritz\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
121 " * Christiansen, Dan Villiom Podlaski\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
122 " * Clagg, Jeff\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
123 " * Compn\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
124 " * Comstedt, Marcus\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
125 " * Cook, Kees\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
126 " * Davies, Stephen\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
127 " * Di Vita, Piero\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
128 " * Diedrich, Tobias\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
129 " * Dietrich, Florian\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
130 " * Dobbelaere, Jeroen\n" |
17157
770013678d44
Convert this file to UTF-8 as it contains funky caracters from all around the world.
gpoirier
parents:
17144
diff
changeset
|
131 " * Döffinger, Reimar\n" |
17135
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
132 " * Dolbeau, Romain\n" |
17157
770013678d44
Convert this file to UTF-8 as it contains funky caracters from all around the world.
gpoirier
parents:
17144
diff
changeset
|
133 " * Dönmez, Ismail\n" |
17135
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
134 " * Edele, Robert\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
135 " * Egger, Christoph\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
136 " * Elsinghorst, Paul Wilhelm\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
137 " * Ernesti, Bernd\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
138 " * Falco, Salvatore\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
139 " * Feigl, Johannes\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
140 " * Felker, D Richard III\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
141 " * Ferguson, Tim\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
142 " * Finlayson, Ross\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
143 " * Forghieri, Daniele\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
144 " * Foth, Kilian A.\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
145 " * Franz, Fabian\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
146 " * Gansser, Martin\n" |
17157
770013678d44
Convert this file to UTF-8 as it contains funky caracters from all around the world.
gpoirier
parents:
17144
diff
changeset
|
147 " * Gereöffy, Árpád\n" |
17135
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
148 " * Giani, Matteo\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
149 " * Goethel, Sven\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
150 " * Gomez Garcia, German\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
151 " * Gottwald, Alexander\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
152 " * Graffam, Michael\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
153 " * Gritsenko, Andriy N.\n" |
17157
770013678d44
Convert this file to UTF-8 as it contains funky caracters from all around the world.
gpoirier
parents:
17144
diff
changeset
|
154 " * Guyomarch, Rémi\n" |
770013678d44
Convert this file to UTF-8 as it contains funky caracters from all around the world.
gpoirier
parents:
17144
diff
changeset
|
155 " * Hammelmann, Jürgen\n" |
17135
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
156 " * Hertel, Christopher R.\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
157 " * Hess, Andreas\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
158 " * Hickey, Corey\n" |
17157
770013678d44
Convert this file to UTF-8 as it contains funky caracters from all around the world.
gpoirier
parents:
17144
diff
changeset
|
159 " * Hidvégi, Zoltán\n" |
17135
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
160 " * Hoffmann, Jens\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
161 " * Holm, David\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
162 " * Horst, Bohdan\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
163 " * Hug, Hampa\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
164 " * Hurka, Tomas\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
165 " * Isani, Sidik\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
166 " * Issaris, Panagiotis\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
167 " * Jacobs, Aurelien\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
168 " * Jelveh, Reza\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
169 " * Jermann, Jonas\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
170 " * Johansson, Anders\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
171 " * Kain, Nicholas\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
172 " * Kalinski, Filip\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
173 " * Kalvachev, Ivan\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
174 " * Kaniewski, Wojtek\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
175 " * Kaplan, Kim Minh\n" |
17157
770013678d44
Convert this file to UTF-8 as it contains funky caracters from all around the world.
gpoirier
parents:
17144
diff
changeset
|
176 " * Kärkkäinen, Samuli\n" |
770013678d44
Convert this file to UTF-8 as it contains funky caracters from all around the world.
gpoirier
parents:
17144
diff
changeset
|
177 " * Keil, Jürgen\n" |
17135
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
178 " * Kesterson, Robert\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
179 " * Kinali, Attila\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
180 " * Kovriga, Gregory\n" |
17157
770013678d44
Convert this file to UTF-8 as it contains funky caracters from all around the world.
gpoirier
parents:
17144
diff
changeset
|
181 " * Kühling, David\n" |
17135
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
182 " * Kuivinen, Fredrik\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
183 " * Kurshev, Nick\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
184 " * Kuschak, Brian\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
185 " * Kushnir, Vladimir\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
186 " * Lambley, Dave\n" |
17157
770013678d44
Convert this file to UTF-8 as it contains funky caracters from all around the world.
gpoirier
parents:
17144
diff
changeset
|
187 " * László, Gyula\n" |
17135
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
188 " * Le Gaillart, Nicolas\n" |
17157
770013678d44
Convert this file to UTF-8 as it contains funky caracters from all around the world.
gpoirier
parents:
17144
diff
changeset
|
189 " * Lénárt, Gábor\n" |
17135
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
190 " * Leroy, Colin\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
191 " * Liljeblad, Oskar\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
192 " * Lin, Sam\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
193 " * Lombard, Pierre\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
194 " * Madick, Puk\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
195 " * Makovicka, Jindrich\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
196 " * Marek, Rudolf\n" |
17157
770013678d44
Convert this file to UTF-8 as it contains funky caracters from all around the world.
gpoirier
parents:
17144
diff
changeset
|
197 " * Megyer, László\n" |
17135
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
198 " * Melanson, Mike\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
199 " * von Merkatz, Arwed\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
200 " * Merritt, Loren\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
201 " * Mierzejewski, Dominik\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
202 " * Milushev, Mihail\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
203 " * Mistry, Nehal\n" |
17157
770013678d44
Convert this file to UTF-8 as it contains funky caracters from all around the world.
gpoirier
parents:
17144
diff
changeset
|
204 " * Mohari, András\n" |
17135
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
205 " * Mueller, Steven\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
206 " * Neundorf, Alexander\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
207 " * Niedermayer, Michael\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
208 " * Noring, Fredrik\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
209 " * Ohm, Christian\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
210 " * Parrish, Joey\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
211 " * Pietrzak, Dariusz\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
212 " * Plourde, Nicolas\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
213 " * Poettering, Lennart\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
214 " * Poirier, Guillaume\n" |
17157
770013678d44
Convert this file to UTF-8 as it contains funky caracters from all around the world.
gpoirier
parents:
17144
diff
changeset
|
215 " * Ponekker, Zoltán\n" |
17135
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
216 " * van Poorten, Ivo\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
217 " * Ran, Lu\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
218 " * Reder, Uwe\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
219 " * rgselk\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
220 " * Rune Petersen\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
221 " * Saari, Ville\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
222 " * Sabbi, Nico\n" |
17157
770013678d44
Convert this file to UTF-8 as it contains funky caracters from all around the world.
gpoirier
parents:
17144
diff
changeset
|
223 " * Sandell, Björn\n" |
17135
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
224 " * Sauerbeck, Tilman\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
225 " * Scherthan, Frank\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
226 " * Schneider, Florian\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
227 " * Schoenbrunner, Oliver\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
228 " * Shimon, Oded\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
229 " * Simon, Peter\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
230 " * Snel, Rik\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
231 " * Sommer, Sascha\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
232 " * Strasser, Alexander\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
233 " * Strzelecki, Kamil\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
234 " * Svoboda, Jiri\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
235 " * Swain, Robert\n" |
17157
770013678d44
Convert this file to UTF-8 as it contains funky caracters from all around the world.
gpoirier
parents:
17144
diff
changeset
|
236 " * Syrjälä, Ville\n" |
17135
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
237 " * Szecsi, Gabor\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
238 " * Tackaberry, Jason\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
239 " * Tam, Howell\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
240 " * Tlalka, Adam\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
241 " * Tiesi, Gianluigi\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
242 " * Togni, Roberto\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
243 " * Tropea, Salvador Eduardo\n" |
17157
770013678d44
Convert this file to UTF-8 as it contains funky caracters from all around the world.
gpoirier
parents:
17144
diff
changeset
|
244 " * Vajna, Miklós\n" |
17135
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
245 " * Verdejo Pinochet, Reynaldo H.\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
246 " * Wigren, Per\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
247 " * Witt, Derek J\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
248 " * Young, Alan\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
249 " * Zaprzala, Artur\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
250 " * Zealey, Mark\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
251 " * Ziv-Av, Matan\n" |
17157
770013678d44
Convert this file to UTF-8 as it contains funky caracters from all around the world.
gpoirier
parents:
17144
diff
changeset
|
252 " * Zoltán, Márk Vicián\n" |
17135
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
253 "\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
254 MSGTR_ABOUT_Codecs_libs_contributions |
9189 | 255 "\n" |
17135
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
256 " * Bellard, Fabrice\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
257 " * Chappelier, Vivien and Vincent, Damien\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
258 " * Hipp, Michael\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
259 " * Holtzman, Aaron\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
260 " * Janovetz, Jake\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
261 " * Kabelac, Zdenek\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
262 " * Kuznetsov, Eugene\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
263 " * Lespinasse, Michel\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
264 " * Podlipec, Mark\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
265 "\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
266 MSGTR_ABOUT_Translations |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
267 "\n" |
17287
4a8dbeb06bad
fix the translator names list so that it conforms to lastname, firstname
rathann
parents:
17157
diff
changeset
|
268 " * Biernat, Marcin\n" |
17135
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
269 " * Fargas, Marc\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
270 " * Heryan, Jiri\n" |
17287
4a8dbeb06bad
fix the translator names list so that it conforms to lastname, firstname
rathann
parents:
17157
diff
changeset
|
271 " * Jarycki, Marek\n" |
4a8dbeb06bad
fix the translator names list so that it conforms to lastname, firstname
rathann
parents:
17157
diff
changeset
|
272 " * Kaplita, Leszek\n" |
17157
770013678d44
Convert this file to UTF-8 as it contains funky caracters from all around the world.
gpoirier
parents:
17144
diff
changeset
|
273 " * Krämer, Sebastian\n" |
770013678d44
Convert this file to UTF-8 as it contains funky caracters from all around the world.
gpoirier
parents:
17144
diff
changeset
|
274 " * López, Juan Martin\n" |
17287
4a8dbeb06bad
fix the translator names list so that it conforms to lastname, firstname
rathann
parents:
17157
diff
changeset
|
275 " * Michniewski, Piotr\n" |
4a8dbeb06bad
fix the translator names list so that it conforms to lastname, firstname
rathann
parents:
17157
diff
changeset
|
276 " * Misiorny, Jakub\n" |
17157
770013678d44
Convert this file to UTF-8 as it contains funky caracters from all around the world.
gpoirier
parents:
17144
diff
changeset
|
277 " * Mizda, Gábor\n" |
17287
4a8dbeb06bad
fix the translator names list so that it conforms to lastname, firstname
rathann
parents:
17157
diff
changeset
|
278 " * Paszta, Maciej\n" |
4a8dbeb06bad
fix the translator names list so that it conforms to lastname, firstname
rathann
parents:
17157
diff
changeset
|
279 " * Proszek, Łukasz\n" |
4a8dbeb06bad
fix the translator names list so that it conforms to lastname, firstname
rathann
parents:
17157
diff
changeset
|
280 " * Schiller, Wacław\n" |
17135
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
281 " * Zubimendi, Andoni\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
282 "\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
283 MSGTR_ABOUT_Skins |
9189 | 284 "\n" |
17135
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
285 " * Azrael\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
286 " * Bekesi, Viktor\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
287 " * Burt.S.\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
288 " * Carpenter, Andrew\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
289 " * Foucault, Charles\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
290 " * Gyimesi, Attila\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
291 " * Hertroys, Alban\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
292 " * Juan Pablo\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
293 " * Kiss, Balint\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
294 " * Kuehne, Andre\n" |
17157
770013678d44
Convert this file to UTF-8 as it contains funky caracters from all around the world.
gpoirier
parents:
17144
diff
changeset
|
295 " * Kuhlmann, Rüdiger\n" |
17135
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
296 " * Naumov, Dan\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
297 " * Northam, Ryan\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
298 " * Oyarzun Arroyo\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
299 " * Park, DongCheon\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
300 " * Pehrson, Jurgen\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
301 " * Pizurica, Nikola\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
302 " * Ptak, Oliwier\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
303 " * Riccio, Pasquale\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
304 " * Schultz, Jesper\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
305 " * Szumiela, Marcin\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
306 " * Tisi, Massimo\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
307 " * Tyr, Jiri jun.\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
308 " * Vasilev, Ognian\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
309 " * Veres, Imre\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
310 " * Vesko, Radic\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
311 " * Vigvary, Balasz\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
312 " * Weber, Andrew\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
313 " * Whitmore, Gary Jr.\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
314 " * Wilamowski, Franciszek\n" |
d2bafb1e217c
Every contribution deserves to be listed on the "about" window of the gui.
gpoirier
parents:
17086
diff
changeset
|
315 " * Zeising, Michael\n" |
9189 | 316 "\n",-1 ); |
2901 | 317 |
8299 | 318 AddHSeparator( vbox ); |
319 Ok=AddButton( MSGTR_Ok,AddHButtonBox( vbox ) ); | |
2901 | 320 |
8719
dc27303ae528
correct widget destroy event handler (thank for D J Hawkey Jr <hawkeyd@visi.com>)
pontscho
parents:
8299
diff
changeset
|
321 gtk_signal_connect( GTK_OBJECT( About ),"destroy",GTK_SIGNAL_FUNC( WidgetDestroy ),&About ); |
dc27303ae528
correct widget destroy event handler (thank for D J Hawkey Jr <hawkeyd@visi.com>)
pontscho
parents:
8299
diff
changeset
|
322 gtk_signal_connect_object( GTK_OBJECT( Ok ),"clicked",GTK_SIGNAL_FUNC( abWidgetDestroy ),NULL ); |
2901 | 323 |
8299 | 324 gtk_widget_add_accelerator( Ok,"clicked",accel_group,GDK_Escape,0,GTK_ACCEL_VISIBLE ); |
325 gtk_widget_add_accelerator( Ok,"clicked",accel_group,GDK_Return,0,GTK_ACCEL_VISIBLE ); | |
2901 | 326 gtk_window_add_accel_group( GTK_WINDOW( About ),accel_group ); |
327 | |
328 return About; | |
329 } |