annotate Gui/mplayer/gtk/about.c @ 17086:c8bad98f63b5

About text should _not_ be editable, it just looks stupid.
author reimar
date Sun, 04 Dec 2005 15:56:40 +0000
parents 683d7592d9dc
children d2bafb1e217c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
1
8043
e5dda05f9aab cleanup
pontscho
parents: 7527
diff changeset
2 #include "../../app.h"
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
3 #include "../../../config.h"
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
4 #include "../../../help_mp.h"
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
5
6625
54cfbaaf161b remove unneded config files
pontscho
parents: 6146
diff changeset
6 #include "mplayer/pixmaps/about.xpm"
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
7 #include "../widgets.h"
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
8 #include "about.h"
8299
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8043
diff changeset
9 #include "common.h"
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
10
8299
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8043
diff changeset
11 GtkWidget * About = NULL;
6146
b9651eb9749e fix some gtk bug...
pontscho
parents: 6044
diff changeset
12
b9651eb9749e fix some gtk bug...
pontscho
parents: 6044
diff changeset
13 void ShowAboutBox( void )
b9651eb9749e fix some gtk bug...
pontscho
parents: 6044
diff changeset
14 {
8299
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8043
diff changeset
15 if ( About ) gtkActive( About );
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8043
diff changeset
16 else About=create_About();
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8043
diff changeset
17 gtk_widget_show( About );
6146
b9651eb9749e fix some gtk bug...
pontscho
parents: 6044
diff changeset
18 }
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
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
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
23 GtkWidget * create_About( void )
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
24 {
8299
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8043
diff changeset
25 GtkWidget * vbox;
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
26 GtkWidget * pixmap1;
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
27 GtkWidget * scrolledwindow1;
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
28 GtkWidget * AboutText;
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
29 GtkWidget * Ok;
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
30
16246
683d7592d9dc Support for GTK 2.x.
reimar
parents: 12591
diff changeset
31 #ifdef HAVE_GTK2_GUI
683d7592d9dc Support for GTK 2.x.
reimar
parents: 12591
diff changeset
32 GtkTextBuffer * AboutTextBuffer;
683d7592d9dc Support for GTK 2.x.
reimar
parents: 12591
diff changeset
33 GtkTextIter iter;
683d7592d9dc Support for GTK 2.x.
reimar
parents: 12591
diff changeset
34 #endif //HAVE_GTK2_GUI
683d7592d9dc Support for GTK 2.x.
reimar
parents: 12591
diff changeset
35
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
36 GtkStyle * pixmapstyle;
3616
6a4155dce92c nesze LGB beleirtalak igy ;)
pontscho
parents: 2901
diff changeset
37 GdkPixmap * pixmapwid;
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
38 GdkBitmap * mask;
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
39
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
40 GtkAccelGroup * accel_group;
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
41
6146
b9651eb9749e fix some gtk bug...
pontscho
parents: 6044
diff changeset
42 accel_group=gtk_accel_group_new();
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
43
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
44 About=gtk_window_new( GTK_WINDOW_TOPLEVEL );
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
45 gtk_widget_set_name( About,MSGTR_About );
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
46 gtk_object_set_data( GTK_OBJECT( About ),MSGTR_About,About );
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
47 gtk_widget_set_usize( About,340,415 );
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
48 gtk_window_set_title( GTK_WINDOW( About ),MSGTR_About );
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
49 gtk_window_set_position( GTK_WINDOW( About ),GTK_WIN_POS_CENTER );
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
50 gtk_window_set_policy( GTK_WINDOW( About ),TRUE,FALSE,FALSE );
8299
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8043
diff changeset
51 gtk_window_set_wmclass( GTK_WINDOW( About ),"About","MPlayer" );
6651
8f49c75a2824 - add icon (nice, but very ugly hakk:)
pontscho
parents: 6625
diff changeset
52
8f49c75a2824 - add icon (nice, but very ugly hakk:)
pontscho
parents: 6625
diff changeset
53 gtk_widget_realize( About );
8f49c75a2824 - add icon (nice, but very ugly hakk:)
pontscho
parents: 6625
diff changeset
54 gtkAddIcon( About );
8299
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8043
diff changeset
55
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8043
diff changeset
56 vbox=AddVBox( AddDialogFrame( About ),0 );
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
57
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
58 pixmapstyle=gtk_widget_get_style( About );
3616
6a4155dce92c nesze LGB beleirtalak igy ;)
pontscho
parents: 2901
diff changeset
59 pixmapwid=gdk_pixmap_colormap_create_from_xpm_d( About->window,gdk_colormap_get_system(),&mask,&pixmapstyle->bg[GTK_STATE_NORMAL],about_xpm );
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
60 pixmap1=gtk_pixmap_new( pixmapwid,mask );
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
61
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
62 gtk_widget_set_name( pixmap1,"pixmap1" );
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
63 gtk_widget_show( pixmap1 );
8299
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8043
diff changeset
64 gtk_box_pack_start( GTK_BOX( vbox ),pixmap1,FALSE,FALSE,0 );
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
65 gtk_widget_set_usize( pixmap1,-2,174 );
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
66
8299
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8043
diff changeset
67 AddHSeparator( vbox );
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
68
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
69 scrolledwindow1=gtk_scrolled_window_new( NULL,NULL );
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
70 gtk_widget_set_name( scrolledwindow1,"scrolledwindow1" );
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
71 gtk_widget_show( scrolledwindow1 );
8299
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8043
diff changeset
72 gtk_box_pack_start( GTK_BOX( vbox ),scrolledwindow1,TRUE,TRUE,0 );
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
73 gtk_scrolled_window_set_policy( GTK_SCROLLED_WINDOW( scrolledwindow1 ),GTK_POLICY_AUTOMATIC,GTK_POLICY_AUTOMATIC );
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
74
16246
683d7592d9dc Support for GTK 2.x.
reimar
parents: 12591
diff changeset
75 #ifdef HAVE_GTK2_GUI
683d7592d9dc Support for GTK 2.x.
reimar
parents: 12591
diff changeset
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
683d7592d9dc Support for GTK 2.x.
reimar
parents: 12591
diff changeset
79 AboutTextBuffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (AboutText));
683d7592d9dc Support for GTK 2.x.
reimar
parents: 12591
diff changeset
80 gtk_text_buffer_get_iter_at_offset (AboutTextBuffer, &iter, 0);
683d7592d9dc Support for GTK 2.x.
reimar
parents: 12591
diff changeset
81 #else
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
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
683d7592d9dc Support for GTK 2.x.
reimar
parents: 12591
diff changeset
84 #endif
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
85 gtk_widget_set_name( AboutText,"AboutText" );
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
86 gtk_widget_show( AboutText );
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
87 gtk_container_add( GTK_CONTAINER( scrolledwindow1 ),AboutText );
16246
683d7592d9dc Support for GTK 2.x.
reimar
parents: 12591
diff changeset
88 #ifdef HAVE_GTK2_GUI
683d7592d9dc Support for GTK 2.x.
reimar
parents: 12591
diff changeset
89 gtk_text_buffer_insert (AboutTextBuffer, &iter,
683d7592d9dc Support for GTK 2.x.
reimar
parents: 12591
diff changeset
90 #else
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
91 gtk_text_insert( GTK_TEXT( AboutText ),NULL,NULL,NULL,
16246
683d7592d9dc Support for GTK 2.x.
reimar
parents: 12591
diff changeset
92 #endif
9189
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
93 "\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
94 MSGTR_ABOUT_UHU
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
95 " (http://www.uhulinux.hu/)\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
96 "\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
97 MSGTR_ABOUT_CoreTeam
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
98 "\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
99 " * Arpad Gereoffy (A'rpi/ESP-team)\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
100 " * Zoltan Ponekker (Pontscho/fresh!mindworkz)\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
101 " * Gabor Berczi (Gabucino)\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
102 " * Alex Beregszaszi (al3x)\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
103 " * Gabor Lenart (LGB)\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
104 " * Felix Buenemann (Atmos)\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
105 " * Alban Bedel (Albeu)\n"
9612
a9273ae50f59 what's the opposite of backport? :)
arpi
parents: 9189
diff changeset
106 " * Pierre Lombard (pl)\n"
9189
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
107 " * Michael Niedermayer\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
108 "\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
109 MSGTR_ABOUT_AdditionalCoders
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
110 "\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
111 " * Szabolcs Berecz (Szabi)\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
112 " * Laszlo Megyer (Lez, Laaz)\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
113 " * Gyula Laszlo (Chass, Tegla)\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
114 " * Zoltan Mark Vician (Se7en)\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
115 " * Andreas Ackermann (Acki)\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
116 " * Michael Graffam\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
117 " * Jens Hoffmann\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
118 " * German Gomez Garcia\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
119 " * Dariusz Pietrzak (Eyck)\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
120 " * Marcus Comstedt\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
121 " * Juergen Keil\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
122 " * Vladimir Kushnir\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
123 " * Bertrand Baudet\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
124 " * Derek J Witt\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
125 " * Artur Zaprzala\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
126 " * Adam Tla/lka\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
127 " * Folke Ashberg\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
128 " * Kamil Toman\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
129 " * Ivan Kalvatchev\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
130 " * Sven Goethel\n"
9612
a9273ae50f59 what's the opposite of backport? :)
arpi
parents: 9189
diff changeset
131 " * Joy Winter\n"
9189
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
132 " * Eric Anholt\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
133 " * Jiri Svoboda\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
134 " * Oliver Schoenbrunner\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
135 " * Jeroen Dobbelaere\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
136 " * David Holm\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
137 " * Panagiotis Issaris\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
138 " * Mike Melanson\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
139 " * Tobias Diedrich\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
140 " * Kilian A. Foth\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
141 " * Tim Ferguson\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
142 " * Sam Lin\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
143 " * Johannes Feigl\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
144 " * Kim Minh Kaplan\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
145 " * Brian Kuschak\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
146 " * Stephen Davies\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
147 " * Rik Snel\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
148 " * Anders Johansson\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
149 " * Roberto Togni\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
150 " * Wojtek Kaniewski\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
151 " * Fredrik Kuivinen\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
152 " * Diego Biurrun\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
153 " * Sascha Sommer\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
154 " * Jindrich Makovicka\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
155 " * D Richard Felker III\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
156 " * Moritz Bunkus\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
157 " * Colin Leroy\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
158 " * Joey Parrish\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
159 " * Dominik Mierzejewski\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
160 " * Florian Schneider\n"
9612
a9273ae50f59 what's the opposite of backport? :)
arpi
parents: 9189
diff changeset
161 " * Sidik Isani\n"
a9273ae50f59 what's the opposite of backport? :)
arpi
parents: 9189
diff changeset
162 " * Fredrik Noring\n"
a9273ae50f59 what's the opposite of backport? :)
arpi
parents: 9189
diff changeset
163 " * Kees Cook\n"
a9273ae50f59 what's the opposite of backport? :)
arpi
parents: 9189
diff changeset
164 " * Hampa Hug\n"
a9273ae50f59 what's the opposite of backport? :)
arpi
parents: 9189
diff changeset
165 " * Uwe Reder\n"
a9273ae50f59 what's the opposite of backport? :)
arpi
parents: 9189
diff changeset
166 " * Andriy N. Gritsenko\n"
a9273ae50f59 what's the opposite of backport? :)
arpi
parents: 9189
diff changeset
167 " * Juergen Hammelmann\n"
a9273ae50f59 what's the opposite of backport? :)
arpi
parents: 9189
diff changeset
168 " * Martin Gansser\n"
a9273ae50f59 what's the opposite of backport? :)
arpi
parents: 9189
diff changeset
169 " * Matteo Giani\n"
a9273ae50f59 what's the opposite of backport? :)
arpi
parents: 9189
diff changeset
170 " * Rudolf Marek\n"
a9273ae50f59 what's the opposite of backport? :)
arpi
parents: 9189
diff changeset
171 " * Tilman Sauerbeck\n"
a9273ae50f59 what's the opposite of backport? :)
arpi
parents: 9189
diff changeset
172 " * Mark Zealey\n"
a9273ae50f59 what's the opposite of backport? :)
arpi
parents: 9189
diff changeset
173 " * Gregory Kovriga\n"
a9273ae50f59 what's the opposite of backport? :)
arpi
parents: 9189
diff changeset
174 " * Remi Guyomarch\n"
a9273ae50f59 what's the opposite of backport? :)
arpi
parents: 9189
diff changeset
175 " * Salvatore Falco\n"
a9273ae50f59 what's the opposite of backport? :)
arpi
parents: 9189
diff changeset
176 " * Ville Syrjala\n"
a9273ae50f59 what's the opposite of backport? :)
arpi
parents: 9189
diff changeset
177 " * Bjorn Sandell\n"
a9273ae50f59 what's the opposite of backport? :)
arpi
parents: 9189
diff changeset
178 " * Per Wigren\n"
a9273ae50f59 what's the opposite of backport? :)
arpi
parents: 9189
diff changeset
179 " * Nicolas Le Gaillart\n"
a9273ae50f59 what's the opposite of backport? :)
arpi
parents: 9189
diff changeset
180 " * Lu Ran\n"
a9273ae50f59 what's the opposite of backport? :)
arpi
parents: 9189
diff changeset
181 " * Andras Mohari\n"
a9273ae50f59 what's the opposite of backport? :)
arpi
parents: 9189
diff changeset
182 " * Denes Balatoni\n"
a9273ae50f59 what's the opposite of backport? :)
arpi
parents: 9189
diff changeset
183 " * Oskar Liljeblad\n"
a9273ae50f59 what's the opposite of backport? :)
arpi
parents: 9189
diff changeset
184 " * Bernd Ernesti\n"
9189
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
185 "\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
186 MSGTR_ABOUT_MainTesters
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
187 "\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
188 " * Tibor Balazs (Tibcu)\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
189 " * Peter Sasi (SaPe)\n"
9612
a9273ae50f59 what's the opposite of backport? :)
arpi
parents: 9189
diff changeset
190 " * Christoph H. Lampert (Gruel)\n"
a9273ae50f59 what's the opposite of backport? :)
arpi
parents: 9189
diff changeset
191 " * Attila Kinali (KotH)\n"
9189
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
192 " * Bohdan Horst (Nexus)\n"
2bc37966cb23 commit and extend Diego Biurrun's patch
pontscho
parents: 8779
diff changeset
193 "\n",-1 );
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
194
8299
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8043
diff changeset
195 AddHSeparator( vbox );
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8043
diff changeset
196 Ok=AddButton( MSGTR_Ok,AddHButtonBox( vbox ) );
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
197
8719
dc27303ae528 correct widget destroy event handler (thank for D J Hawkey Jr <hawkeyd@visi.com>)
pontscho
parents: 8299
diff changeset
198 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
199 gtk_signal_connect_object( GTK_OBJECT( Ok ),"clicked",GTK_SIGNAL_FUNC( abWidgetDestroy ),NULL );
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
200
8299
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8043
diff changeset
201 gtk_widget_add_accelerator( Ok,"clicked",accel_group,GDK_Escape,0,GTK_ACCEL_VISIBLE );
5b67aed0fc28 - remove some unused/nonusable variables
pontscho
parents: 8043
diff changeset
202 gtk_widget_add_accelerator( Ok,"clicked",accel_group,GDK_Return,0,GTK_ACCEL_VISIBLE );
2901
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
203 gtk_window_add_accel_group( GTK_WINDOW( About ),accel_group );
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
204
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
205 return About;
f77f8379f28f rewrite ...
pontscho
parents:
diff changeset
206 }