Mercurial > pidgin
annotate src/about.c @ 1233:728a90516211
[gaim-migrate @ 1243]
passing -Wall
committer: Tailor Script <tailor@pidgin.im>
| author | Eric Warmenhoven <eric@warmenhoven.org> |
|---|---|
| date | Mon, 11 Dec 2000 12:50:38 +0000 |
| parents | 265abea9db72 |
| children | b5783215b245 |
| rev | line source |
|---|---|
| 1 | 1 /* |
| 2 * gaim | |
| 3 * | |
| 4 * Copyright (C) 1998-1999, Mark Spencer <markster@marko.net> | |
| 5 * | |
| 6 * This program is free software; you can redistribute it and/or modify | |
| 7 * it under the terms of the GNU General Public License as published by | |
| 8 * the Free Software Foundation; either version 2 of the License, or | |
| 9 * (at your option) any later version. | |
| 10 * | |
| 11 * This program is distributed in the hope that it will be useful, | |
| 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 14 * GNU General Public License for more details. | |
| 15 * | |
| 16 * You should have received a copy of the GNU General Public License | |
| 17 * along with this program; if not, write to the Free Software | |
| 18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 19 * | |
| 20 */ | |
| 21 | |
|
349
b402a23f35df
[gaim-migrate @ 359]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
338
diff
changeset
|
22 #ifdef HAVE_CONFIG_H |
|
b402a23f35df
[gaim-migrate @ 359]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
338
diff
changeset
|
23 #include "../config.h" |
|
b402a23f35df
[gaim-migrate @ 359]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
338
diff
changeset
|
24 #endif |
| 1 | 25 #include <string.h> |
| 26 #include <stdio.h> | |
| 27 #include <stdlib.h> | |
| 28 #include <time.h> | |
| 29 | |
| 30 #include <gtk/gtk.h> | |
| 31 #include "gaim.h" | |
| 32 #include "pixmaps/logo.xpm" | |
| 1205 | 33 #include "pixmaps/cancel.xpm" |
| 1210 | 34 #include "pixmaps/about_small.xpm" |
| 1 | 35 |
| 36 static GtkWidget *about=NULL; | |
| 37 | |
| 38 static void destroy_about() | |
| 39 { | |
| 40 if (about) | |
| 41 gtk_widget_destroy(about); | |
| 42 about = NULL; | |
| 43 } | |
| 44 | |
| 45 | |
|
546
e312b8b9bee5
[gaim-migrate @ 556]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
541
diff
changeset
|
46 static void version_exit() |
|
e312b8b9bee5
[gaim-migrate @ 556]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
541
diff
changeset
|
47 { |
|
1117
f3e0f41beddb
[gaim-migrate @ 1127]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1009
diff
changeset
|
48 gtk_main_quit(); |
|
546
e312b8b9bee5
[gaim-migrate @ 556]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
541
diff
changeset
|
49 } |
|
e312b8b9bee5
[gaim-migrate @ 556]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
541
diff
changeset
|
50 |
|
e312b8b9bee5
[gaim-migrate @ 556]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
541
diff
changeset
|
51 |
|
523
023c3851db0a
[gaim-migrate @ 533]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
356
diff
changeset
|
52 static void about_click(GtkWidget *w, gpointer m) |
|
023c3851db0a
[gaim-migrate @ 533]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
356
diff
changeset
|
53 { |
|
023c3851db0a
[gaim-migrate @ 533]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
356
diff
changeset
|
54 open_url_nw(NULL, "http://www.marko.net/gaim/"); |
|
023c3851db0a
[gaim-migrate @ 533]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
356
diff
changeset
|
55 } |
|
023c3851db0a
[gaim-migrate @ 533]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
356
diff
changeset
|
56 |
| 1 | 57 void show_about(GtkWidget *w, void *null) |
| 58 { | |
| 59 GtkWidget *vbox; | |
| 1210 | 60 GtkWidget *frame; |
| 61 GtkWidget *fbox; | |
| 1205 | 62 GtkWidget *a_table; |
| 63 GtkWidget *label; | |
| 1 | 64 GtkWidget *pixmap; |
| 65 GtkStyle *style; | |
| 66 GdkPixmap *pm; | |
| 67 GdkBitmap *bm; | |
| 1205 | 68 GtkWidget *hbox; |
| 69 GtkWidget *button; | |
| 1 | 70 |
| 1205 | 71 char abouttitle[45]; |
| 72 | |
| 1 | 73 if (!about) { |
| 1205 | 74 |
| 1 | 75 about = gtk_window_new(GTK_WINDOW_DIALOG); |
| 1205 | 76 |
|
349
b402a23f35df
[gaim-migrate @ 359]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
338
diff
changeset
|
77 g_snprintf(abouttitle, sizeof(abouttitle), _("About GAIM v%s"), VERSION); |
| 1 | 78 gtk_window_set_title(GTK_WINDOW(about), abouttitle); |
| 905 | 79 gtk_window_set_wmclass(GTK_WINDOW(about), "about", "Gaim" ); |
| 1210 | 80 gtk_window_set_policy(GTK_WINDOW(about), FALSE, TRUE, TRUE); |
| 1 | 81 |
| 1210 | 82 gtk_widget_realize(about); |
| 1 | 83 aol_icon(about->window); |
| 84 | |
| 1210 | 85 vbox = gtk_vbox_new(FALSE, 5); |
| 86 gtk_container_set_border_width(GTK_CONTAINER(vbox), 5); | |
| 87 gtk_container_add(GTK_CONTAINER(about), vbox); | |
| 1205 | 88 |
| 1210 | 89 frame = gtk_frame_new("Gaim " VERSION); |
| 90 gtk_box_pack_start(GTK_BOX(vbox), frame, TRUE, TRUE, 0); | |
| 91 | |
| 92 fbox = gtk_hbox_new(FALSE, 5); | |
| 93 gtk_container_set_border_width(GTK_CONTAINER(fbox), 5); | |
| 94 gtk_container_add(GTK_CONTAINER(frame), fbox); | |
| 1205 | 95 |
| 96 /* Left side, TOP */ | |
| 1 | 97 style = gtk_widget_get_style(about); |
| 98 pm = gdk_pixmap_create_from_xpm_d(about->window, &bm, | |
| 99 &style->bg[GTK_STATE_NORMAL], (gchar **)aol_logo); | |
| 100 pixmap = gtk_pixmap_new(pm, bm); | |
| 1205 | 101 |
|
644
b3900e312d8e
[gaim-migrate @ 654]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
622
diff
changeset
|
102 gdk_pixmap_unref(pm); |
|
804
17def2bb9720
[gaim-migrate @ 814]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
644
diff
changeset
|
103 gdk_bitmap_unref(bm); |
| 1205 | 104 |
| 1210 | 105 gtk_box_pack_start(GTK_BOX(fbox), pixmap, FALSE, FALSE, 0); |
| 1205 | 106 |
| 107 /* Set up the author table */ | |
| 1210 | 108 a_table = gtk_table_new(6, 2, TRUE); |
| 109 gtk_table_set_row_spacings(GTK_TABLE(a_table), 5); | |
| 110 gtk_table_set_col_spacings(GTK_TABLE(a_table), 5); | |
| 1205 | 111 |
| 1210 | 112 label = gtk_label_new(_("GAIM is a client that supports AOL's Instant Messenger protocol. " |
| 113 "It is written using Gtk+ and is licensed under the GPL.\n" | |
| 114 "URL: http://www.marko.net/gaim/")); | |
| 115 gtk_label_set_line_wrap(GTK_LABEL(label), TRUE); | |
| 116 gtk_table_attach_defaults(GTK_TABLE(a_table), label, 0, 2, 0, 2); | |
| 117 | |
| 1205 | 118 /* Rob */ |
| 119 label = gtk_label_new("Rob Flynn (Maintainer)"); | |
| 120 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); | |
| 1210 | 121 gtk_table_attach_defaults(GTK_TABLE(a_table), label, 0, 1, 2, 3); |
| 1205 | 122 |
| 123 label = gtk_label_new("rob@tgflinux.com"); | |
| 124 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); | |
| 1210 | 125 gtk_table_attach_defaults(GTK_TABLE(a_table), label, 1, 2, 2, 3); |
| 1 | 126 |
| 1205 | 127 /* Eric */ |
| 128 label = gtk_label_new("Eric Warmenhoven"); | |
| 129 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); | |
| 1210 | 130 gtk_table_attach_defaults(GTK_TABLE(a_table), label, 0, 1, 3, 4); |
| 1205 | 131 |
| 132 label = gtk_label_new("warmenhoven@yahoo.com"); | |
| 133 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); | |
| 1210 | 134 gtk_table_attach_defaults(GTK_TABLE(a_table), label, 1, 2, 3, 4); |
| 1205 | 135 |
| 136 /* Jim */ | |
| 137 label = gtk_label_new("Jim Duchek"); | |
| 138 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); | |
| 1210 | 139 gtk_table_attach_defaults(GTK_TABLE(a_table), label, 0, 1, 4, 5); |
| 1205 | 140 |
| 141 /* Mark */ | |
| 142 label = gtk_label_new("Mark Spencer"); | |
| 143 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); | |
| 1210 | 144 gtk_table_attach_defaults(GTK_TABLE(a_table), label, 0, 1, 5, 6); |
| 1205 | 145 |
| 146 label = gtk_label_new("markster@marko.net"); | |
| 147 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); | |
| 1210 | 148 gtk_table_attach_defaults(GTK_TABLE(a_table), label, 1, 2, 5, 6); |
| 1205 | 149 |
| 1210 | 150 gtk_box_pack_start(GTK_BOX(fbox), a_table, TRUE, TRUE, 0); |
| 1205 | 151 |
| 152 /* Close Button */ | |
| 153 | |
| 154 hbox = gtk_hbox_new(FALSE, 5); | |
| 1210 | 155 gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0); |
| 1205 | 156 |
| 1210 | 157 button = picture_button(about, _("Close"), cancel_xpm); |
| 158 gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
| 622 | 159 |
|
1142
4593153a956c
[gaim-migrate @ 1152]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1117
diff
changeset
|
160 if (null != (void *)2) { |
|
4593153a956c
[gaim-migrate @ 1152]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1117
diff
changeset
|
161 /* 2 can be as sad as 1, it's the loneliest number since the number 1 */ |
|
546
e312b8b9bee5
[gaim-migrate @ 556]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
541
diff
changeset
|
162 gtk_signal_connect_object(GTK_OBJECT(button), "clicked", |
|
e312b8b9bee5
[gaim-migrate @ 556]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
541
diff
changeset
|
163 GTK_SIGNAL_FUNC(destroy_about), GTK_OBJECT(about)); |
|
1009
d496fe2614a6
[gaim-migrate @ 1019]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
960
diff
changeset
|
164 gtk_signal_connect(GTK_OBJECT(about), "destroy", |
|
d496fe2614a6
[gaim-migrate @ 1019]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
960
diff
changeset
|
165 GTK_SIGNAL_FUNC(destroy_about), GTK_OBJECT(about)); |
|
d496fe2614a6
[gaim-migrate @ 1019]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
960
diff
changeset
|
166 } else { |
|
546
e312b8b9bee5
[gaim-migrate @ 556]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
541
diff
changeset
|
167 gtk_signal_connect(GTK_OBJECT(button), "clicked", |
|
e312b8b9bee5
[gaim-migrate @ 556]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
541
diff
changeset
|
168 GTK_SIGNAL_FUNC(version_exit), NULL); |
|
1009
d496fe2614a6
[gaim-migrate @ 1019]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
960
diff
changeset
|
169 gtk_signal_connect(GTK_OBJECT(about), "destroy", |
|
d496fe2614a6
[gaim-migrate @ 1019]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
960
diff
changeset
|
170 GTK_SIGNAL_FUNC(version_exit), NULL); |
|
d496fe2614a6
[gaim-migrate @ 1019]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
960
diff
changeset
|
171 } |
| 1210 | 172 |
| 173 /* this makes the sizes not work. */ | |
| 174 //GTK_WIDGET_SET_FLAGS(button, GTK_CAN_DEFAULT); | |
| 175 //gtk_widget_grab_default(button); | |
| 1205 | 176 |
| 1210 | 177 button = picture_button(about, _("Web Site"), about_small_xpm); |
| 178 gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
| 179 gtk_signal_connect(GTK_OBJECT(button), "clicked", | |
| 180 GTK_SIGNAL_FUNC(about_click), NULL); | |
| 1205 | 181 |
| 1210 | 182 if (display_options & OPT_DISP_COOL_LOOK) |
| 183 gtk_button_set_relief(GTK_BUTTON(button), GTK_RELIEF_NONE); | |
| 1205 | 184 } |
| 1210 | 185 |
| 186 /* Let's give'em something to talk about -- woah woah woah */ | |
| 187 gtk_widget_show_all(about); | |
| 1 | 188 |
| 1205 | 189 } |
| 1 | 190 |
