claws-mail/src/gtk/icon_legend.c
Tristan Chabredier 0efff6d4d8 2005-12-12 [wwp] 1.9.100cvs84
* src/gtk/icon_legend.c
		fix misbehaviour and crash when closing the legend window
        using the Esc key (patch by Fabien Vantard).
2005-12-12 10:13:09 +00:00

164 lines
4.5 KiB
C

/*
* This file Copyright (C) 2005 Paul Mangan <claws@thewildbeast.co.uk>
* and the Sylpheed-Claws team
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "defs.h"
#include <glib.h>
#include <glib/gi18n.h>
#include <gtk/gtk.h>
#include <gdk/gdkkeysyms.h>
#include <gtk/gtkwidget.h>
#include <gtk/gtkwindow.h>
#include <gtk/gtksignal.h>
#include <gtk/gtkvbox.h>
#include <gtk/gtkhbox.h>
#include <gtk/gtklabel.h>
#include "gtkutils.h"
#include "stock_pixmap.h"
#include "prefs_gtk.h"
#define ICONS 12
StockPixmap legend_icons[ICONS] = {
STOCK_PIXMAP_NEW,
STOCK_PIXMAP_UNREAD,
STOCK_PIXMAP_REPLIED,
STOCK_PIXMAP_FORWARDED,
STOCK_PIXMAP_CLIP,
STOCK_PIXMAP_GPG_SIGNED,
STOCK_PIXMAP_KEY,
STOCK_PIXMAP_CLIP_GPG_SIGNED,
STOCK_PIXMAP_CLIP_KEY,
STOCK_PIXMAP_MARK,
STOCK_PIXMAP_LOCKED,
STOCK_PIXMAP_IGNORETHREAD,
};
static gchar *legend_icon_desc[] = {
N_("New"),
N_("Unread"),
N_("Has been replied to"),
N_("Has been forwarded"),
N_("Has attachment(s)"),
N_("Digitally signed"),
N_("Encrypted"),
N_("Signed and has attachment(s)"),
N_("Encrypted and has attachment(s)"),
N_("Marked"),
N_("Locked"),
N_("In an ignored thread"),
};
static struct LegendDialog {
GtkWidget *window;
} legend;
static void legend_create(void);
static gboolean key_pressed(GtkWidget *widget, GdkEventKey *event);
static void legend_close(void);
void legend_show(void)
{
if (!legend.window)
legend_create();
else
gtk_window_present(GTK_WINDOW(legend.window));
}
static void legend_create(void)
{
GtkWidget *window;
GtkWidget *vbox;
GtkWidget *confirm_area;
GtkWidget *close_button;
GtkWidget *hbox;
GtkWidget *label;
GtkWidget *icon_label;
GtkWidget *desc_label;
gint i;
window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
gtk_window_set_title(GTK_WINDOW(window), _("Icon Legend"));
gtk_container_set_border_width(GTK_CONTAINER(window), 8);
gtk_window_set_resizable(GTK_WINDOW(window), FALSE);
gtk_widget_set_size_request(window, -1, -1);
g_signal_connect(G_OBJECT(window), "delete_event",
G_CALLBACK(legend_close), NULL);
g_signal_connect(G_OBJECT(window), "key_press_event",
G_CALLBACK(key_pressed), NULL);
gtk_widget_realize(window);
vbox = gtk_vbox_new(FALSE, 8);
gtk_container_add(GTK_CONTAINER(window), vbox);
gtk_container_set_border_width(GTK_CONTAINER(vbox), 2);
hbox = gtk_hbox_new(FALSE, 8);
gtk_widget_show(hbox);
gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0);
label = gtk_label_new(_("<span weight=\"bold\">The following icons are used to show the status of a message:</span>"));
gtk_label_set_use_markup(GTK_LABEL(label), TRUE);
gtk_label_set_line_wrap(GTK_LABEL(label), TRUE);
gtk_widget_show(label);
gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0);
for (i = 0; i < ICONS; ++i) {
icon_label = stock_pixmap_widget(window, legend_icons[i]);
desc_label = gtk_label_new(gettext(legend_icon_desc[i]));
gtk_label_set_line_wrap(GTK_LABEL(desc_label), TRUE);
hbox = gtk_hbox_new(FALSE, 4);
gtk_widget_show(hbox);
gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0);
gtk_box_pack_start(GTK_BOX(hbox), icon_label, FALSE, FALSE, 0);
gtk_box_pack_start(GTK_BOX(hbox), desc_label, FALSE, FALSE, 0);
}
gtkut_stock_button_set_create(&confirm_area, &close_button, GTK_STOCK_CLOSE,
NULL, NULL, NULL, NULL);
gtk_box_pack_end(GTK_BOX(vbox), confirm_area, FALSE, FALSE, 4);
gtk_widget_grab_default(close_button);
g_signal_connect_closure
(G_OBJECT(close_button), "clicked",
g_cclosure_new_swap(G_CALLBACK(legend_close),
window, NULL), FALSE);
gtk_widget_show_all(window);
legend.window = window;
}
static gboolean key_pressed(GtkWidget *widget, GdkEventKey *event)
{
if (event && event->keyval == GDK_Escape) {
legend_close();
}
return FALSE;
}
static void legend_close(void)
{
gtk_widget_destroy(legend.window);
legend.window = NULL;
}