Mercurial > pidgin
annotate src/about.c @ 6360:2e23ccbccdec
[gaim-migrate @ 6864]
Lots of Makefile.am and configure.ac fixes from Robot101. Doumo arigatou,
Mr. Roboto!
committer: Tailor Script <tailor@pidgin.im>
| author | Christian Hammond <chipx86@chipx86.com> |
|---|---|
| date | Sun, 03 Aug 2003 09:47:15 +0000 |
| parents | 059d95c67cda |
| children | 8f94cce8faa5 |
| 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 | |
| 3424 | 7 * it under the terms of the GNU General Public License as published by |
| 1 | 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 | |
|
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
22 #include "internal.h" |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
23 #include "gtkimhtml.h" |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
24 #include "gtkutils.h" |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
25 #include "stock.h" |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
26 #include "ui.h" |
| 1 | 27 |
|
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5024
diff
changeset
|
28 /* XXX For WEBSITE */ |
| 1 | 29 #include "gaim.h" |
| 30 | |
|
1250
b5783215b245
[gaim-migrate @ 1260]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1233
diff
changeset
|
31 static GtkWidget *about = NULL; |
| 1 | 32 |
| 33 static void destroy_about() | |
| 34 { | |
| 35 if (about) | |
| 36 gtk_widget_destroy(about); | |
| 37 about = NULL; | |
| 38 } | |
| 39 | |
| 4082 | 40 void show_about(GtkWidget *w, void *data) |
| 1 | 41 { |
| 42 GtkWidget *vbox; | |
| 1210 | 43 GtkWidget *frame; |
| 44 GtkWidget *fbox; | |
| 1205 | 45 GtkWidget *hbox; |
| 46 GtkWidget *button; | |
| 4006 | 47 GtkWidget *text; |
| 2950 | 48 GtkWidget *sw; |
| 3721 | 49 GtkWidget *logo; |
| 1205 | 50 char abouttitle[45]; |
|
1250
b5783215b245
[gaim-migrate @ 1260]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1233
diff
changeset
|
51 |
| 1 | 52 if (!about) { |
|
1250
b5783215b245
[gaim-migrate @ 1260]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1233
diff
changeset
|
53 |
|
2725
f3c094e78609
[gaim-migrate @ 2738]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2562
diff
changeset
|
54 GAIM_DIALOG(about); |
|
2904
3a9bca5fedcf
[gaim-migrate @ 2917]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2902
diff
changeset
|
55 gtk_window_set_default_size(GTK_WINDOW(about), 450, -1); |
| 2535 | 56 g_snprintf(abouttitle, sizeof(abouttitle), _("About Gaim v%s"), VERSION); |
| 1 | 57 gtk_window_set_title(GTK_WINDOW(about), abouttitle); |
| 4074 | 58 gtk_window_set_role(GTK_WINDOW(about), "about"); |
| 4635 | 59 gtk_window_set_resizable(GTK_WINDOW(about), TRUE); |
| 1210 | 60 gtk_widget_realize(about); |
| 1 | 61 |
| 1210 | 62 vbox = gtk_vbox_new(FALSE, 5); |
| 63 gtk_container_set_border_width(GTK_CONTAINER(vbox), 5); | |
| 64 gtk_container_add(GTK_CONTAINER(about), vbox); | |
| 1205 | 65 |
| 2562 | 66 frame = gtk_frame_new("Gaim v" VERSION); |
|
1250
b5783215b245
[gaim-migrate @ 1260]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1233
diff
changeset
|
67 gtk_box_pack_start(GTK_BOX(vbox), frame, TRUE, TRUE, 0); |
| 1210 | 68 |
| 2072 | 69 fbox = gtk_vbox_new(FALSE, 5); |
|
1250
b5783215b245
[gaim-migrate @ 1260]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1233
diff
changeset
|
70 gtk_container_set_border_width(GTK_CONTAINER(fbox), 5); |
| 1210 | 71 gtk_container_add(GTK_CONTAINER(frame), fbox); |
| 1205 | 72 |
| 5024 | 73 logo = gtk_image_new_from_stock(GAIM_STOCK_LOGO, gtk_icon_size_from_name(GAIM_ICON_SIZE_LOGO)); |
| 3721 | 74 gtk_box_pack_start(GTK_BOX(fbox), logo, FALSE, FALSE, 0); |
| 1205 | 75 |
| 4006 | 76 sw = gtk_scrolled_window_new(NULL, NULL); |
| 77 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw), | |
| 78 GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC); | |
| 4197 | 79 gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(sw), GTK_SHADOW_IN); |
| 4006 | 80 gtk_box_pack_start(GTK_BOX(fbox), sw, TRUE, TRUE, 0); |
| 3709 | 81 |
| 4006 | 82 text = gtk_imhtml_new(NULL, NULL); |
| 83 gtk_container_add(GTK_CONTAINER(sw), text); | |
| 4197 | 84 gtk_widget_set_size_request(sw, -1, 350); |
| 4006 | 85 gaim_setup_imhtml(text); |
| 2950 | 86 |
| 4006 | 87 gtk_imhtml_append_text(GTK_IMHTML(text), |
| 88 _("Gaim is a modular Instant Messaging client capable of " | |
| 89 "using AIM, ICQ, Yahoo!, MSN, IRC, Jabber, Napster, " | |
| 90 "Zephyr, and Gadu-Gadu all at once. It is written using " | |
| 4054 | 91 "Gtk+ and is licensed under the GPL.<BR><BR>"), -1, GTK_IMHTML_NO_SCROLL); |
| 4006 | 92 |
| 93 gtk_imhtml_append_text(GTK_IMHTML(text), | |
| 94 "<FONT SIZE=\"3\">URL:</FONT> <A HREF=\"" WEBSITE "\">" | |
| 4054 | 95 WEBSITE "</A><BR><BR>", -1, GTK_IMHTML_NO_SCROLL); |
| 4006 | 96 |
| 97 gtk_imhtml_append_text(GTK_IMHTML(text), | |
| 4160 | 98 _("<FONT SIZE=\"3\">IRC:</FONT> #gaim on irc.freenode.net" |
| 99 "<BR><BR>"), -1, GTK_IMHTML_NO_SCROLL); | |
| 4006 | 100 |
| 101 gtk_imhtml_append_text(GTK_IMHTML(text), | |
| 4054 | 102 _("<FONT SIZE=\"3\">Active Developers:</FONT><BR>"), -1, GTK_IMHTML_NO_SCROLL); |
| 4006 | 103 gtk_imhtml_append_text(GTK_IMHTML(text), |
| 4160 | 104 _(" Rob Flynn (maintainer) " |
| 4006 | 105 "<<A HREF=\"mailto:rob@marko.net\">rob@marko.net</A>><BR>" |
| 4990 | 106 " Sean Egan (lead developer) " |
| 4006 | 107 "<<A HREF=\"mailto:bj91704@binghamton.edu\">" |
| 4992 | 108 "bj91704@binghamton.edu</A>><BR>" |
| 4990 | 109 " Christian 'ChipX86' Hammond (developer & webmaster)<BR>" |
| 110 " Herman Bloggs (win32 port) " | |
| 111 "<<A HREF=\"mailto:hermanator12002@yahoo.com\">" | |
| 112 "hermanator12002@yahoo.com</A>><BR>" | |
| 113 " Nathan 'faceprint' Walp (developer)<BR>" | |
| 114 " Mark 'KingAnt' Doliner (developer)<BR>" | |
| 115 " Luke 'LSchiere' Schierer (support)<BR>" | |
| 116 "<BR>"), -1, GTK_IMHTML_NO_SCROLL); | |
| 4006 | 117 |
| 118 gtk_imhtml_append_text(GTK_IMHTML(text), | |
| 4054 | 119 _("<FONT SIZE=\"3\">Crazy Patch Writers:</FONT><BR>"), -1, GTK_IMHTML_NO_SCROLL); |
| 4006 | 120 gtk_imhtml_append_text(GTK_IMHTML(text), |
| 121 " Benjamin Miller<BR>" | |
| 122 " Decklin Foster<BR>" | |
| 4990 | 123 " Etan 'deryni' Reisner<BR>" |
| 124 " Ethan 'Paco-Paco' Blanton<br>" | |
| 125 " Robert 'Robot101' McQueen<BR>" | |
| 126 "<BR>", -1, GTK_IMHTML_NO_SCROLL); | |
| 4006 | 127 |
| 128 gtk_imhtml_append_text(GTK_IMHTML(text), | |
| 4054 | 129 _("<FONT SIZE=\"3\">Retired Developers:</FONT><BR>"), -1, GTK_IMHTML_NO_SCROLL); |
| 4006 | 130 gtk_imhtml_append_text(GTK_IMHTML(text), |
| 4990 | 131 _(" Adam Fritzler (former libfaim maintainer)<BR>" |
| 132 " Eric Warmenhoven (former lead developer)" | |
| 4006 | 133 "<<A HREF=\"mailto:warmenhoven@yahoo.com\">" |
| 134 "warmenhoven@yahoo.com</A>><BR>" | |
| 4990 | 135 " Jim Duchek (former maintainer)<BR>" |
| 136 " Jim Seymour (former Jabber developer)<BR>" | |
| 4006 | 137 " Mark Spencer (original author) " |
| 138 "<<A HREF=\"mailto:markster@marko.net\">" | |
| 4992 | 139 "markster@marko.net</A>><BR>" |
| 4990 | 140 " Syd Logan (hacker and designated driver [lazy bum])<BR>" |
| 141 "<BR>"), -1, GTK_IMHTML_NO_SCROLL); | |
| 4006 | 142 |
| 143 gtk_adjustment_set_value(gtk_scrolled_window_get_vadjustment(GTK_SCROLLED_WINDOW(sw)), 0); | |
| 144 | |
| 1205 | 145 /* Close Button */ |
| 146 | |
| 147 hbox = gtk_hbox_new(FALSE, 5); | |
| 1210 | 148 gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0); |
|
2450
59bac9b1a716
[gaim-migrate @ 2463]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2434
diff
changeset
|
149 gtk_widget_show(hbox); |
| 1205 | 150 |
| 3709 | 151 button = gaim_pixbuf_button_from_stock(_("Close"), GTK_STOCK_CLOSE, GAIM_BUTTON_HORIZONTAL); |
| 1210 | 152 gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0); |
| 622 | 153 |
|
4162
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4160
diff
changeset
|
154 g_signal_connect_swapped(G_OBJECT(button), "clicked", |
|
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4160
diff
changeset
|
155 G_CALLBACK(destroy_about), G_OBJECT(about)); |
|
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4160
diff
changeset
|
156 g_signal_connect(G_OBJECT(about), "destroy", |
|
d3c8d2b40494
[gaim-migrate @ 4391]
Christian Hammond <chipx86@chipx86.com>
parents:
4160
diff
changeset
|
157 G_CALLBACK(destroy_about), G_OBJECT(about)); |
| 1210 | 158 |
|
1250
b5783215b245
[gaim-migrate @ 1260]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1233
diff
changeset
|
159 /* this makes the sizes not work. */ |
| 1976 | 160 /* GTK_WIDGET_SET_FLAGS(button, GTK_CAN_DEFAULT); */ |
| 161 /* gtk_widget_grab_default(button); */ | |
| 1205 | 162 |
| 163 } | |
| 1210 | 164 |
| 165 /* Let's give'em something to talk about -- woah woah woah */ | |
| 5024 | 166 gtk_widget_show_all(about); |
| 4157 | 167 gtk_window_present(GTK_WINDOW(about)); |
| 1205 | 168 } |
