2 * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3 * Copyright (C) 1999-2005 Hiroyuki Yamamoto
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27 #include <glib/gi18n.h>
28 #include <gdk/gdkkeysyms.h>
29 #include <gtk/gtkwidget.h>
30 #include <gtk/gtkwindow.h>
31 #include <gtk/gtksignal.h>
32 #include <gtk/gtkvbox.h>
33 #include <gtk/gtkhbox.h>
34 #include <gtk/gtklabel.h>
35 #include <gtk/gtkhseparator.h>
36 #include <gtk/gtkscrolledwindow.h>
37 #include <gtk/gtktext.h>
38 #include <gtk/gtkbutton.h>
39 #if HAVE_SYS_UTSNAME_H
40 # include <sys/utsname.h>
45 #include "stock_pixmap.h"
46 #include "prefs_common.h"
50 static GtkWidget *window;
52 static void about_create(void);
53 static gboolean key_pressed(GtkWidget *widget, GdkEventKey *event);
54 static void about_uri_clicked(GtkButton *button, gpointer data);
61 gtk_window_present(GTK_WINDOW(window));
64 static void about_create(void)
73 GtkWidget *scrolledwin;
75 GtkWidget *confirm_area;
77 GtkTextBuffer *buffer;
81 GdkColor uri_color[2] = {{0, 0, 0, 0xffff}, {0, 0xffff, 0, 0}};
85 #if HAVE_SYS_UTSNAME_H
86 struct utsname utsbuf;
91 window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
92 gtk_window_set_title(GTK_WINDOW(window), _("About"));
93 gtk_container_set_border_width(GTK_CONTAINER(window), 8);
94 gtk_widget_set_size_request(window, 518, 358);
95 g_signal_connect(G_OBJECT(window), "delete_event",
96 G_CALLBACK(gtk_widget_hide_on_delete), NULL);
97 g_signal_connect(G_OBJECT(window), "key_press_event",
98 G_CALLBACK(key_pressed), NULL);
99 gtk_widget_realize(window);
101 vbox1 = gtk_vbox_new(FALSE, 0);
102 gtk_container_add(GTK_CONTAINER(window), vbox1);
104 hbox1 = gtk_hbox_new (FALSE, 0);
105 gtk_box_pack_start (GTK_BOX (vbox1), hbox1, FALSE, FALSE, 0);
107 pixmap = stock_pixmap_widget(window, STOCK_PIXMAP_SYLPHEED_LOGO);
108 gtk_box_pack_start(GTK_BOX(hbox1), pixmap, FALSE, FALSE, 0);
110 vbox2 = gtk_vbox_new (FALSE, 6);
111 gtk_box_pack_start (GTK_BOX (hbox1), vbox2, TRUE, FALSE, 0);
113 label = gtk_label_new("");
114 gtk_label_set_selectable(GTK_LABEL(label), TRUE);
115 gtk_label_set_justify(GTK_LABEL(label), GTK_JUSTIFY_CENTER);
116 gtk_box_pack_start(GTK_BOX(vbox2), label, TRUE, FALSE, 0);
118 markup = g_markup_printf_escaped
119 ("<span weight=\"bold\" size=\"x-large\">Sylpheed-Claws</span>\nversion %s",
121 gtk_label_set_markup(GTK_LABEL(label), markup);
124 hbox2 = gtk_hbox_new(FALSE, 0);
125 gtk_box_pack_start(GTK_BOX(vbox2), hbox2, FALSE, FALSE, 0);
127 button = gtk_button_new_with_label(" "HOMEPAGE_URI" ");
128 gtk_box_pack_start(GTK_BOX(hbox2), button, TRUE, FALSE, 0);
129 gtk_button_set_relief(GTK_BUTTON(button), GTK_RELIEF_NONE);
130 g_signal_connect(G_OBJECT(button), "clicked",
131 G_CALLBACK(about_uri_clicked), NULL);
133 for (i = 1; i <= strlen(HOMEPAGE_URI); i++) buf[i] = '_';
134 strcpy(buf + i, " ");
135 gtk_label_set_pattern(GTK_LABEL(GTK_BIN(button)->child), buf);
136 cmap = gdk_window_get_colormap(window->window);
137 gdk_colormap_alloc_colors(cmap, uri_color, 2, FALSE, TRUE, success);
138 if (success[0] == TRUE && success[1] == TRUE) {
139 gtk_widget_ensure_style(GTK_BIN(button)->child);
140 style = gtk_style_copy
141 (gtk_widget_get_style(GTK_BIN(button)->child));
142 style->fg[GTK_STATE_NORMAL] = uri_color[0];
143 style->fg[GTK_STATE_ACTIVE] = uri_color[1];
144 style->fg[GTK_STATE_PRELIGHT] = uri_color[0];
145 gtk_widget_set_style(GTK_BIN(button)->child, style);
147 g_warning("about_create(): color allocation failed.\n");
149 #if HAVE_SYS_UTSNAME_H
151 g_snprintf(buf, sizeof(buf),
152 _("GTK+ version %d.%d.%d\n"
153 "Operating System: %s %s (%s)"),
154 gtk_major_version, gtk_minor_version, gtk_micro_version,
155 utsbuf.sysname, utsbuf.release, utsbuf.machine);
157 g_snprintf(buf, sizeof(buf),
158 "GTK+ version %d.%d.%d\n"
159 "Operating System: Windoze",
160 gtk_major_version, gtk_minor_version, gtk_micro_version);
163 label = gtk_label_new(buf);
164 gtk_label_set_selectable(GTK_LABEL(label), TRUE);
165 gtk_label_set_justify(GTK_LABEL(label), GTK_JUSTIFY_CENTER);
166 gtk_box_pack_start(GTK_BOX(vbox2), label, FALSE, FALSE, 0);
168 g_snprintf(buf, sizeof(buf),
169 _("Compiled-in features:%s"),
202 label = gtk_label_new(buf);
203 gtk_label_set_selectable(GTK_LABEL(label), TRUE);
204 gtk_label_set_line_wrap(GTK_LABEL(label), TRUE);
205 gtk_box_pack_start(GTK_BOX(vbox2), label, FALSE, FALSE, 0);
207 label = gtk_label_new
208 ("Copyright (C) 1999-2005 Hiroyuki Yamamoto <hiro-y@kcn.ne.jp>");
209 gtk_label_set_selectable(GTK_LABEL(label), TRUE);
210 gtk_box_pack_start(GTK_BOX(vbox1), label, FALSE, FALSE, 4);
212 scrolledwin = gtk_scrolled_window_new(NULL, NULL);
213 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolledwin),
214 GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC);
215 gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scrolledwin),
217 gtk_box_pack_start(GTK_BOX(vbox1), scrolledwin, TRUE, TRUE, 0);
219 text = gtk_text_view_new();
220 gtk_text_view_set_editable(GTK_TEXT_VIEW(text), FALSE);
221 gtk_text_view_set_wrap_mode(GTK_TEXT_VIEW(text), GTK_WRAP_WORD);
222 gtk_text_view_set_left_margin(GTK_TEXT_VIEW(text), 6);
223 gtk_text_view_set_right_margin(GTK_TEXT_VIEW(text), 6);
224 gtk_container_add(GTK_CONTAINER(scrolledwin), text);
226 buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(text));
227 gtk_text_buffer_get_iter_at_offset(buffer, &iter, 0);
229 gtk_text_buffer_insert(buffer, &iter,
230 _("This program is free software; you can redistribute it and/or modify "
231 "it under the terms of the GNU General Public License as published by "
232 "the Free Software Foundation; either version 2, or (at your option) "
233 "any later version.\n\n"), -1);
235 gtk_text_buffer_insert(buffer, &iter,
236 _("This program is distributed in the hope that it will be useful, "
237 "but WITHOUT ANY WARRANTY; without even the implied warranty of "
238 "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. "
239 "See the GNU General Public License for more details.\n\n"), -1);
241 gtk_text_buffer_insert(buffer, &iter,
242 _("You should have received a copy of the GNU General Public License "
243 "along with this program; if not, write to the Free Software "
244 "Foundation, Inc., 59 Temple Place - Suite 330, Boston, "
245 "MA 02111-1307, USA."), -1);
247 gtkut_stock_button_set_create(&confirm_area, &ok_button, GTK_STOCK_OK,
248 NULL, NULL, NULL, NULL);
249 gtk_box_pack_end(GTK_BOX(vbox1), confirm_area, FALSE, FALSE, 0);
250 gtk_widget_grab_default(ok_button);
251 g_signal_connect_closure
252 (G_OBJECT(ok_button), "clicked",
253 g_cclosure_new_swap(G_CALLBACK(gtk_widget_hide_on_delete),
254 window, NULL), FALSE);
256 gtk_widget_show_all(window);
259 static gboolean key_pressed(GtkWidget *widget, GdkEventKey *event)
261 if (event && event->keyval == GDK_Escape)
262 gtk_widget_hide(window);
266 static void about_uri_clicked(GtkButton *button, gpointer data)
268 open_uri(HOMEPAGE_URI, prefs_common.uri_cmd);