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