* src/imap.c
[claws.git] / src / quote_fmt.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2001 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 <glib.h>
25 #include <gtk/gtk.h>
26 #include <gdk/gdkkeysyms.h>
27
28 #include "intl.h"
29
30 static GtkWidget *quote_desc_win;
31
32 static void quote_fmt_quote_description_create          (void);
33 static void quote_fmt_quote_description_key_pressed     (GtkWidget *widget,
34                                                          GdkEventKey *event,
35                                                          gpointer data);
36
37 static gchar *symbol_table[][2] =
38 {
39         {"%D{fmt}",     N_("Customize date format (see man strftime)")}, /* date expression */
40         {"%d",          N_("Date")}, /* date */
41         {"%f",          N_("From")}, /* from */
42         {"%N",          N_("Full Name of Sender")}, /* full name */
43         {"%F",          N_("First Name of Sender")}, /* first name */
44         {"%L",          N_("Last Name of Sender")}, /* last name */
45         {"%I",          N_("Initials of Sender")}, /* initial of sender */
46         {"%s",          N_("Subject")}, /* subject */ 
47         {"%t",          N_("To")}, /* to */ 
48         {"%c",          N_("Cc")}, /* cc */ 
49         {"%n",          N_("Newsgroups")}, /* newsgroups */ 
50         {"%r",          N_("References")}, /* references */ 
51         {"%i",          N_("Message-ID")}, /* message-id */ 
52         {"%M",          N_("Message body")}, /* message */ 
53         {"%Q",          N_("Quoted message body")}, /* quoted message */ 
54         {"%m",          N_("Message body without signature")}, /* message with no signature */ 
55         {"%q",          N_("Quoted message body without signature")}, /* quoted message with no signature */ 
56         {"",            NULL},
57         {"?x{expr}",    N_("Insert expr if x is set\nx is one of the characters above after %")},
58         {"",            NULL},
59         {"\\%",         N_("Literal %")}, /* % */ 
60         {"\\\\",        N_("Literal backslash")}, /* \ */ 
61         {"\\?",         N_("Literal question mark")}, /* ? */ 
62         {"\\|",         N_("Literal pipe")}, /* | */
63         {"\\{",         N_("Literal opening curly brace")},
64         {"\\}",         N_("Literal closing curly brace")},
65         {"",            NULL},
66         {"|f{file}",    N_("Insert File")}, /* insert file */ 
67         {"|p{command}", N_("Insert program output")}, /* insert program output */ 
68         {NULL,NULL},
69 };
70
71 void quote_fmt_quote_description(void)
72 {
73         if (!quote_desc_win)
74                 quote_fmt_quote_description_create();
75
76         manage_window_set_transient(GTK_WINDOW(quote_desc_win));
77         gtk_widget_show(quote_desc_win);
78         gtk_main();
79         gtk_widget_hide(quote_desc_win);
80 }
81
82 static void quote_fmt_quote_description_create(void)
83 {
84         GtkWidget *table;
85         GtkWidget *hbbox;
86         GtkWidget *ok_btn;
87         int i;
88
89         quote_desc_win = gtk_window_new(GTK_WINDOW_DIALOG);
90         gtk_window_set_title(GTK_WINDOW(quote_desc_win),
91                              _("Description of symbols"));
92         gtk_container_set_border_width(GTK_CONTAINER(quote_desc_win), 8);
93         gtk_window_set_position(GTK_WINDOW(quote_desc_win), GTK_WIN_POS_CENTER);
94         gtk_window_set_modal(GTK_WINDOW(quote_desc_win), TRUE);
95         gtk_window_set_policy(GTK_WINDOW(quote_desc_win), FALSE, FALSE, FALSE);
96
97         table = gtk_table_new(sizeof(symbol_table), 2, FALSE);
98         gtk_container_add(GTK_CONTAINER(quote_desc_win), table);
99         gtk_table_set_col_spacings(GTK_TABLE(table), 10);
100
101         for(i = 0; symbol_table[i][0] != NULL; i++) {
102                 if(symbol_table[i][0][0] != '\0') {
103                         GtkWidget *label;
104
105                         label = gtk_label_new(symbol_table[i][0]);
106                         gtk_misc_set_alignment (GTK_MISC(label), 0, 0);
107                         gtk_table_attach(GTK_TABLE(table), label,
108                                          0, 1, i, i+1,
109                                          GTK_EXPAND | GTK_FILL, GTK_EXPAND | GTK_FILL,
110                                          0, 0);
111                         label = gtk_label_new(gettext(symbol_table[i][1]));
112                         gtk_label_set_justify(GTK_LABEL(label), GTK_JUSTIFY_LEFT);
113                         gtk_misc_set_alignment (GTK_MISC(label), 0, 0);
114                         gtk_table_attach(GTK_TABLE(table), label,
115                                          1, 2, i, i+1,
116                                          GTK_EXPAND | GTK_FILL, GTK_EXPAND | GTK_FILL,
117                                          0, 0);
118                 } else {
119                         GtkWidget *separator;
120                         
121                         separator = gtk_hseparator_new();
122                         gtk_table_attach(GTK_TABLE(table), separator,
123                                          0, 2, i, i+1,
124                                          GTK_EXPAND | GTK_FILL, GTK_EXPAND | GTK_FILL,
125                                          0, 4);
126                 }
127         }
128
129         gtkut_button_set_create(&hbbox, &ok_btn, _("OK"),
130                                 NULL, NULL, NULL, NULL);
131         gtk_table_attach_defaults(GTK_TABLE(table), hbbox,
132                                   1, 2, i, i+1);
133
134         gtk_widget_grab_default(ok_btn);
135         gtk_signal_connect(GTK_OBJECT(ok_btn), "clicked",
136                            GTK_SIGNAL_FUNC(gtk_main_quit), NULL);
137         gtk_signal_connect
138                 (GTK_OBJECT(quote_desc_win), "key_press_event",
139                  GTK_SIGNAL_FUNC(quote_fmt_quote_description_key_pressed),
140                  NULL);
141         gtk_signal_connect(GTK_OBJECT(quote_desc_win), "delete_event",
142                            GTK_SIGNAL_FUNC(gtk_main_quit), NULL);
143
144         gtk_widget_show_all(table);
145 }
146
147 static void quote_fmt_quote_description_key_pressed(GtkWidget *widget,
148                                                 GdkEventKey *event,
149                                                 gpointer data)
150 {
151         if (event && event->keyval == GDK_Escape)
152                 gtk_main_quit();
153 }
154