472cde1ef636df8b6ccab960896250bd4db531d9
[claws.git] / src / gtk / icon_legend.c
1 /*
2  * This file Copyright (C) 2005 Paul Mangan <claws@thewildbeast.co.uk>
3  * and the Sylpheed-Claws team
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 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 <gtk/gtk.h>
29 #include <gdk/gdkkeysyms.h>
30 #include <gtk/gtkwidget.h>
31 #include <gtk/gtkwindow.h>
32 #include <gtk/gtksignal.h>
33 #include <gtk/gtkvbox.h>
34 #include <gtk/gtkhbox.h>
35 #include <gtk/gtklabel.h>
36
37 #include "gtkutils.h"
38 #include "stock_pixmap.h"
39 #include "prefs_gtk.h"
40
41 #define ICONS 12
42
43 StockPixmap legend_icons[ICONS] = {
44         STOCK_PIXMAP_NEW,
45         STOCK_PIXMAP_UNREAD,
46         STOCK_PIXMAP_REPLIED, 
47         STOCK_PIXMAP_FORWARDED, 
48         STOCK_PIXMAP_CLIP,
49         STOCK_PIXMAP_GPG_SIGNED,
50         STOCK_PIXMAP_KEY,
51         STOCK_PIXMAP_CLIP_GPG_SIGNED,
52         STOCK_PIXMAP_CLIP_KEY,
53         STOCK_PIXMAP_MARK,
54         STOCK_PIXMAP_LOCKED,
55         STOCK_PIXMAP_IGNORETHREAD,
56 };
57
58 static gchar *legend_icon_desc[] = {
59         N_("New"),
60         N_("Unread"),
61         N_("Has been replied to"),
62         N_("Has been forwarded"),
63         N_("Has attachment(s)"),
64         N_("Digitally signed"),
65         N_("Encrypted"),
66         N_("Signed and has attachment(s)"),
67         N_("Encrypted and has attachment(s)"),
68         N_("Marked"),
69         N_("Locked"),
70         N_("In an ignored thread"),
71 };
72
73 static struct LegendDialog {
74         GtkWidget *window;
75 } legend;
76
77 static void legend_create(void);
78 static gboolean key_pressed(GtkWidget *widget, GdkEventKey *event);
79 static void legend_close(void);
80
81 void legend_show(void)
82 {
83         if (!legend.window)
84                 legend_create();
85         else
86                 gtk_window_present(GTK_WINDOW(legend.window));
87 }
88
89 static void legend_create(void)
90 {
91         GtkWidget *window;
92         GtkWidget *vbox;
93         GtkWidget *confirm_area;
94         GtkWidget *close_button;
95         GtkWidget *hbox;
96         GtkWidget *label;
97         GtkWidget *icon_label;
98         GtkWidget *desc_label;
99         gint i;
100
101         window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
102         gtk_window_set_title(GTK_WINDOW(window), _("Icon Legend"));
103         gtk_container_set_border_width(GTK_CONTAINER(window), 8);
104         gtk_window_set_resizable(GTK_WINDOW(window), FALSE);
105         gtk_widget_set_size_request(window, -1, -1);
106         g_signal_connect(G_OBJECT(window), "delete_event",
107                          G_CALLBACK(legend_close), NULL);
108         g_signal_connect(G_OBJECT(window), "key_press_event",
109                          G_CALLBACK(key_pressed), NULL);
110         gtk_widget_realize(window);
111
112         vbox = gtk_vbox_new(FALSE, 8);
113         gtk_container_add(GTK_CONTAINER(window), vbox);
114         gtk_container_set_border_width(GTK_CONTAINER(vbox), 2);
115
116         hbox = gtk_hbox_new(FALSE, 8);
117         gtk_widget_show(hbox);
118         gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0);
119
120         label = gtk_label_new(_("<span weight=\"bold\">The following icons are used to show the status of a message:</span>"));
121         gtk_label_set_use_markup(GTK_LABEL(label), TRUE);
122         gtk_label_set_line_wrap(GTK_LABEL(label), TRUE);
123         gtk_widget_show(label);
124         gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0);
125
126         for (i = 0; i < ICONS; ++i) {
127                 icon_label = stock_pixmap_widget(window, legend_icons[i]);
128                 desc_label = gtk_label_new(gettext(legend_icon_desc[i]));
129                 gtk_label_set_line_wrap(GTK_LABEL(desc_label), TRUE);
130
131                 hbox = gtk_hbox_new(FALSE, 4);
132                 gtk_widget_show(hbox);
133                 gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0);
134                 gtk_box_pack_start(GTK_BOX(hbox), icon_label, FALSE, FALSE, 0);
135                 gtk_box_pack_start(GTK_BOX(hbox), desc_label, FALSE, FALSE, 0);
136         }       
137
138         gtkut_stock_button_set_create(&confirm_area, &close_button, GTK_STOCK_CLOSE,
139                                       NULL, NULL, NULL, NULL);
140         gtk_box_pack_end(GTK_BOX(vbox), confirm_area, FALSE, FALSE, 4);
141         gtk_widget_grab_default(close_button);
142         g_signal_connect_closure
143                 (G_OBJECT(close_button), "clicked",
144                  g_cclosure_new_swap(G_CALLBACK(legend_close),
145                                      window, NULL), FALSE);
146
147         gtk_widget_show_all(window);
148
149         legend.window = window;
150 }
151
152 static gboolean key_pressed(GtkWidget *widget, GdkEventKey *event)
153 {
154         if (event && event->keyval == GDK_Escape)
155                 gtk_widget_destroy(legend.window);
156         return FALSE;
157 }
158
159 static void legend_close(void)
160 {
161         gtk_widget_destroy(legend.window);
162         legend.window = NULL;
163 }