root / src / about.c @ 237
History | View | Annotate | Download (7.8 kB)
| 1 | /*
|
|---|---|
| 2 | * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client |
| 3 | * Copyright (C) 1999-2005 Hiroyuki Yamamoto |
| 4 | * |
| 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. |
| 9 | * |
| 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. |
| 14 | * |
| 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. |
| 18 | */ |
| 19 | |
| 20 | #ifdef HAVE_CONFIG_H
|
| 21 | # include "config.h" |
| 22 | #endif
|
| 23 | |
| 24 | #include "defs.h" |
| 25 | |
| 26 | #include <glib.h> |
| 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/gtktextview.h> |
| 38 | #include <gtk/gtkbutton.h> |
| 39 | #include <gtk/gtkstock.h> |
| 40 | |
| 41 | #if HAVE_SYS_UTSNAME_H
|
| 42 | # include <sys/utsname.h> |
| 43 | #endif
|
| 44 | |
| 45 | #include "about.h" |
| 46 | #include "gtkutils.h" |
| 47 | #include "stock_pixmap.h" |
| 48 | #include "prefs_common.h" |
| 49 | #include "utils.h" |
| 50 | #include "version.h" |
| 51 | |
| 52 | static GtkWidget *window;
|
| 53 | |
| 54 | static void about_create(void); |
| 55 | static gboolean key_pressed(GtkWidget *widget, GdkEventKey *event);
|
| 56 | static void about_uri_clicked(GtkButton *button, gpointer data); |
| 57 | |
| 58 | void about_show(void) |
| 59 | {
|
| 60 | if (!window)
|
| 61 | about_create(); |
| 62 | else
|
| 63 | gtk_window_present(GTK_WINDOW(window)); |
| 64 | } |
| 65 | |
| 66 | static void about_create(void) |
| 67 | {
|
| 68 | GtkWidget *vbox; |
| 69 | GtkWidget *pixmap; |
| 70 | GtkWidget *label; |
| 71 | GtkWidget *hbox; |
| 72 | GtkWidget *button; |
| 73 | GtkWidget *scrolledwin; |
| 74 | GtkWidget *text; |
| 75 | GtkWidget *confirm_area; |
| 76 | GtkWidget *ok_button; |
| 77 | GtkTextBuffer *buffer; |
| 78 | GtkTextIter iter; |
| 79 | GtkStyle *style; |
| 80 | GdkColormap *cmap; |
| 81 | GdkColor uri_color[2] = {{0, 0, 0, 0xffff}, {0, 0xffff, 0, 0}}; |
| 82 | gboolean success[2];
|
| 83 | |
| 84 | #if HAVE_SYS_UTSNAME_H
|
| 85 | struct utsname utsbuf;
|
| 86 | #endif
|
| 87 | gchar buf[1024];
|
| 88 | gint i; |
| 89 | |
| 90 | window = gtk_window_new(GTK_WINDOW_TOPLEVEL); |
| 91 | gtk_window_set_title(GTK_WINDOW(window), _("About"));
|
| 92 | gtk_container_set_border_width(GTK_CONTAINER(window), 8);
|
| 93 | gtk_widget_set_size_request(window, 518, 358); |
| 94 | gtk_window_set_position(GTK_WINDOW(window), GTK_WIN_POS_CENTER); |
| 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); |
| 100 | |
| 101 | vbox = gtk_vbox_new(FALSE, 6);
|
| 102 | gtk_container_add(GTK_CONTAINER(window), vbox); |
| 103 | |
| 104 | pixmap = stock_pixmap_widget(window, STOCK_PIXMAP_SYLPHEED_LOGO); |
| 105 | gtk_box_pack_start(GTK_BOX(vbox), pixmap, FALSE, FALSE, 0);
|
| 106 | |
| 107 | label = gtk_label_new("version "VERSION);
|
| 108 | gtk_label_set_selectable(GTK_LABEL(label), TRUE); |
| 109 | gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, FALSE, 0);
|
| 110 | |
| 111 | #if HAVE_SYS_UTSNAME_H
|
| 112 | uname(&utsbuf); |
| 113 | g_snprintf(buf, sizeof(buf),
|
| 114 | "GTK+ version %d.%d.%d\n"
|
| 115 | "Operating System: %s %s (%s)",
|
| 116 | gtk_major_version, gtk_minor_version, gtk_micro_version, |
| 117 | utsbuf.sysname, utsbuf.release, utsbuf.machine); |
| 118 | #else
|
| 119 | g_snprintf(buf, sizeof(buf),
|
| 120 | "GTK+ version %d.%d.%d\n"
|
| 121 | "Operating System: Windoze",
|
| 122 | gtk_major_version, gtk_minor_version, gtk_micro_version); |
| 123 | #endif
|
| 124 | |
| 125 | label = gtk_label_new(buf); |
| 126 | gtk_label_set_selectable(GTK_LABEL(label), TRUE); |
| 127 | gtk_label_set_justify(GTK_LABEL(label), GTK_JUSTIFY_CENTER); |
| 128 | gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, FALSE, 0);
|
| 129 | |
| 130 | g_snprintf(buf, sizeof(buf),
|
| 131 | "Compiled-in features:%s",
|
| 132 | #if USE_THREADS
|
| 133 | " gthread"
|
| 134 | #endif
|
| 135 | #if INET6
|
| 136 | " IPv6"
|
| 137 | #endif
|
| 138 | #if HAVE_ICONV
|
| 139 | " iconv"
|
| 140 | #endif
|
| 141 | #if HAVE_LIBCOMPFACE
|
| 142 | " compface"
|
| 143 | #endif
|
| 144 | #if USE_GPGME
|
| 145 | " GnuPG"
|
| 146 | #endif
|
| 147 | #if USE_SSL
|
| 148 | " OpenSSL"
|
| 149 | #endif
|
| 150 | #if USE_LDAP
|
| 151 | " LDAP"
|
| 152 | #endif
|
| 153 | #if USE_JPILOT
|
| 154 | " JPilot"
|
| 155 | #endif
|
| 156 | "");
|
| 157 | |
| 158 | label = gtk_label_new(buf); |
| 159 | gtk_label_set_selectable(GTK_LABEL(label), TRUE); |
| 160 | gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, FALSE, 0);
|
| 161 | |
| 162 | label = gtk_label_new |
| 163 | ("Copyright (C) 1999-2005 Hiroyuki Yamamoto <hiro-y@kcn.ne.jp>");
|
| 164 | gtk_label_set_selectable(GTK_LABEL(label), TRUE); |
| 165 | gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, FALSE, 0);
|
| 166 | |
| 167 | hbox = gtk_hbox_new(FALSE, 0);
|
| 168 | gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0);
|
| 169 | |
| 170 | button = gtk_button_new_with_label(" "HOMEPAGE_URI" "); |
| 171 | gtk_box_pack_start(GTK_BOX(hbox), button, TRUE, FALSE, 0);
|
| 172 | gtk_button_set_relief(GTK_BUTTON(button), GTK_RELIEF_NONE); |
| 173 | g_signal_connect(G_OBJECT(button), "clicked",
|
| 174 | G_CALLBACK(about_uri_clicked), NULL);
|
| 175 | buf[0] = ' '; |
| 176 | for (i = 1; i <= strlen(HOMEPAGE_URI); i++) buf[i] = '_'; |
| 177 | strcpy(buf + i, " ");
|
| 178 | gtk_label_set_pattern(GTK_LABEL(GTK_BIN(button)->child), buf); |
| 179 | cmap = gdk_window_get_colormap(window->window); |
| 180 | gdk_colormap_alloc_colors(cmap, uri_color, 2, FALSE, TRUE, success);
|
| 181 | if (success[0] == TRUE && success[1] == TRUE) { |
| 182 | gtk_widget_ensure_style(GTK_BIN(button)->child); |
| 183 | style = gtk_style_copy |
| 184 | (gtk_widget_get_style(GTK_BIN(button)->child)); |
| 185 | style->fg[GTK_STATE_NORMAL] = uri_color[0];
|
| 186 | style->fg[GTK_STATE_ACTIVE] = uri_color[1];
|
| 187 | style->fg[GTK_STATE_PRELIGHT] = uri_color[0];
|
| 188 | gtk_widget_set_style(GTK_BIN(button)->child, style); |
| 189 | } else
|
| 190 | g_warning("about_create(): color allocation failed.\n");
|
| 191 | |
| 192 | scrolledwin = gtk_scrolled_window_new(NULL, NULL); |
| 193 | gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolledwin), |
| 194 | GTK_POLICY_NEVER, GTK_POLICY_ALWAYS); |
| 195 | gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scrolledwin), |
| 196 | GTK_SHADOW_IN); |
| 197 | gtk_box_pack_start(GTK_BOX(vbox), scrolledwin, TRUE, TRUE, 0);
|
| 198 | |
| 199 | text = gtk_text_view_new(); |
| 200 | gtk_text_view_set_editable(GTK_TEXT_VIEW(text), FALSE); |
| 201 | gtk_text_view_set_wrap_mode(GTK_TEXT_VIEW(text), GTK_WRAP_WORD); |
| 202 | gtk_text_view_set_left_margin(GTK_TEXT_VIEW(text), 6);
|
| 203 | gtk_text_view_set_right_margin(GTK_TEXT_VIEW(text), 6);
|
| 204 | gtk_container_add(GTK_CONTAINER(scrolledwin), text); |
| 205 | |
| 206 | buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(text)); |
| 207 | gtk_text_buffer_get_iter_at_offset(buffer, &iter, 0);
|
| 208 | |
| 209 | #if USE_GPGME
|
| 210 | gtk_text_buffer_insert(buffer, &iter, |
| 211 | _("GPGME is copyright 2001 by Werner Koch <dd9jn@gnu.org>\n\n"), -1); |
| 212 | #endif /* USE_GPGME */ |
| 213 | |
| 214 | gtk_text_buffer_insert(buffer, &iter, |
| 215 | _("This program is free software; you can redistribute it and/or modify "
|
| 216 | "it under the terms of the GNU General Public License as published by "
|
| 217 | "the Free Software Foundation; either version 2, or (at your option) "
|
| 218 | "any later version.\n\n"), -1); |
| 219 | |
| 220 | gtk_text_buffer_insert(buffer, &iter, |
| 221 | _("This program is distributed in the hope that it will be useful, "
|
| 222 | "but WITHOUT ANY WARRANTY; without even the implied warranty of "
|
| 223 | "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. "
|
| 224 | "See the GNU General Public License for more details.\n\n"), -1); |
| 225 | |
| 226 | gtk_text_buffer_insert(buffer, &iter, |
| 227 | _("You should have received a copy of the GNU General Public License "
|
| 228 | "along with this program; if not, write to the Free Software "
|
| 229 | "Foundation, Inc., 59 Temple Place - Suite 330, Boston, "
|
| 230 | "MA 02111-1307, USA."), -1); |
| 231 | |
| 232 | gtkut_stock_button_set_create(&confirm_area, &ok_button, GTK_STOCK_OK, |
| 233 | NULL, NULL, NULL, NULL); |
| 234 | gtk_box_pack_end(GTK_BOX(vbox), confirm_area, FALSE, FALSE, 0);
|
| 235 | gtk_widget_grab_default(ok_button); |
| 236 | g_signal_connect_closure |
| 237 | (G_OBJECT(ok_button), "clicked",
|
| 238 | g_cclosure_new_swap(G_CALLBACK(gtk_widget_hide_on_delete), |
| 239 | window, NULL), FALSE);
|
| 240 | |
| 241 | gtk_widget_show_all(window); |
| 242 | } |
| 243 | |
| 244 | static gboolean key_pressed(GtkWidget *widget, GdkEventKey *event)
|
| 245 | {
|
| 246 | if (event && event->keyval == GDK_Escape)
|
| 247 | gtk_widget_hide(window); |
| 248 | return FALSE;
|
| 249 | } |
| 250 | |
| 251 | static void about_uri_clicked(GtkButton *button, gpointer data) |
| 252 | {
|
| 253 | open_uri(HOMEPAGE_URI, prefs_common.uri_cmd); |
| 254 | } |