2009-01-27 [paul] 3.7.0cvs44
[claws.git] / src / messageview.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2009 Hiroyuki Yamamoto and the Claws Mail 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 3 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, see <http://www.gnu.org/licenses/>.
17  * 
18  */
19
20 #include "defs.h"
21
22 #include <glib.h>
23 #include <glib/gi18n.h>
24 #include <gdk/gdkkeysyms.h>
25 #include <gtk/gtk.h>
26 #include <stdio.h>
27 #include <ctype.h>
28 #include <string.h>
29
30 #include "main.h"
31 #include "messageview.h"
32 #include "message_search.h"
33 #include "headerview.h"
34 #include "summaryview.h"
35 #include "textview.h"
36 #include "mimeview.h"
37 #include "menu.h"
38 #include "about.h"
39 #include "filesel.h"
40 #include "foldersel.h"
41 #include "sourcewindow.h"
42 #include "addressbook.h"
43 #include "alertpanel.h"
44 #include "inputdialog.h"
45 #include "mainwindow.h"
46 #include "manage_window.h"
47 #include "procmsg.h"
48 #include "procheader.h"
49 #include "procmime.h"
50 #include "account.h"
51 #include "action.h"
52 #include "prefs_common.h"
53 #include "prefs_account.h"
54 #include "gtkutils.h"
55 #include "utils.h"
56 #include "send_message.h"
57 #include "stock_pixmap.h"
58 #include "hooks.h"
59 #include "filtering.h"
60 #include "partial_download.h"
61 #include "gedit-print.h"
62 #include "uri_opener.h"
63 #include "inc.h"
64 #include "log.h"
65 #include "combobox.h"
66 #include "printing.h"
67 #include "quoted-printable.h"
68 #include "version.h"
69 #include "statusbar.h"
70
71 static GList *messageview_list = NULL;
72
73 static gint messageview_delete_cb       (GtkWidget              *widget,
74                                          GdkEventAny            *event,
75                                          MessageView            *messageview);
76 static void messageview_size_allocate_cb(GtkWidget      *widget,
77                                          GtkAllocation  *allocation);
78 #ifndef MAEMO
79 static gboolean key_pressed             (GtkWidget      *widget,
80                                          GdkEventKey    *event,
81                                          MessageView    *messageview);
82 #endif
83 static void return_receipt_show         (NoticeView     *noticeview, 
84                                          MsgInfo        *msginfo);      
85 static void return_receipt_send_clicked (NoticeView     *noticeview, 
86                                          MsgInfo        *msginfo);
87 static void partial_recv_show           (NoticeView     *noticeview, 
88                                          MsgInfo        *msginfo);      
89 static void partial_recv_dload_clicked  (NoticeView     *noticeview, 
90                                          MsgInfo        *msginfo);
91 static void partial_recv_del_clicked    (NoticeView     *noticeview, 
92                                          MsgInfo        *msginfo);
93 static void partial_recv_unmark_clicked (NoticeView     *noticeview, 
94                                          MsgInfo        *msginfo);
95 static void save_as_cb                  (GtkAction      *action,
96                                          gpointer        data);
97 #if GTK_CHECK_VERSION(2,10,0) && !defined(USE_GNOMEPRINT)
98 static void page_setup_cb               (GtkAction      *action,
99                                          gpointer        data);
100 #endif
101 static void print_cb                    (GtkAction      *action,
102                                          gpointer        data);
103 static void close_cb                    (GtkAction      *action,
104                                          gpointer        data);
105 static void copy_cb                     (GtkAction      *action,
106                                          gpointer        data);
107 static void allsel_cb                   (GtkAction      *action,
108                                          gpointer        data);
109 static void search_cb                   (GtkAction      *action,
110                                          gpointer        data);
111
112 static void prev_cb                     (GtkAction      *action,
113                                          gpointer        data);
114 static void next_cb                     (GtkAction      *action,
115                                          gpointer        data);
116 static void prev_unread_cb              (GtkAction      *action,
117                                          gpointer        data);
118 static void next_unread_cb              (GtkAction      *action,
119                                          gpointer        data);
120 static void prev_new_cb                 (GtkAction      *action,
121                                          gpointer        data);
122 static void next_new_cb                 (GtkAction      *action,
123                                          gpointer        data);
124 static void prev_marked_cb              (GtkAction      *action,
125                                          gpointer        data);
126 static void next_marked_cb              (GtkAction      *action,
127                                          gpointer        data);
128 static void prev_labeled_cb             (GtkAction      *action,
129                                          gpointer        data);
130 static void next_labeled_cb             (GtkAction      *action,
131                                          gpointer        data);
132 static void last_read_cb                (GtkAction      *action,
133                                          gpointer        data);
134 static void parent_cb                   (GtkAction      *action,
135                                          gpointer        data);
136 static void goto_unread_folder_cb       (GtkAction      *action,
137                                          gpointer        data);
138 static void goto_folder_cb              (GtkAction      *action,
139                                          gpointer        data);
140
141 static void set_charset_cb              (GtkAction *action, GtkRadioAction *current, gpointer data);
142 static void set_decode_cb               (GtkAction *action, GtkRadioAction *current, gpointer data);
143
144 static void view_source_cb              (GtkAction      *action,
145                                          gpointer        data);
146
147 static void show_all_header_cb          (GtkToggleAction        *action,
148                                          gpointer        data);
149 static void msg_hide_quotes_cb          (GtkToggleAction        *action,
150                                          gpointer        data);
151
152 static void compose_cb                  (GtkAction      *action,
153                                          gpointer        data);
154 static void reply_cb                    (GtkAction      *action,
155                                          gpointer        data);
156
157 static PrefsAccount *select_account_from_list
158                                         (GList          *ac_list);
159 static void addressbook_open_cb         (GtkAction      *action,
160                                          gpointer        data);
161 static void add_address_cb              (GtkAction      *action,
162                                          gpointer        data);
163 static void create_filter_cb            (GtkAction      *action,
164                                          gpointer        data);
165 static void create_processing_cb        (GtkAction      *action,
166                                          gpointer        data);
167 static void open_urls_cb                (GtkAction      *action,
168                                          gpointer        data);
169
170 static void about_cb                    (GtkAction      *action,
171                                          gpointer        data);
172 static void messageview_update          (MessageView    *msgview,
173                                          MsgInfo        *old_msginfo);
174 static gboolean messageview_update_msg  (gpointer source, gpointer data);
175
176 static void messageview_nothing_cb         (GtkAction *action, gpointer data)
177 {
178
179 }
180
181 static GList *msgview_list = NULL;
182 static GtkActionEntry msgview_entries[] =
183 {
184         {"Menu",                        NULL, "Menu" },
185 /* menus */
186         {"File",                        NULL, N_("_File") },
187         {"Edit",                        NULL, N_("_Edit") },
188         {"View",                        NULL, N_("_View") },
189         {"Message",                     NULL, N_("_Message") },
190         {"Tools",                       NULL, N_("_Tools") },
191         {"Help",                        NULL, N_("_Help") },
192         {"PlaceHolder",                 NULL, "Placeholder", NULL, NULL, G_CALLBACK(messageview_nothing_cb) },
193
194 /* File menu */
195         {"File/SaveAs",                 NULL, N_("_Save as..."), "<control>S", NULL, G_CALLBACK(save_as_cb) },
196 #if GTK_CHECK_VERSION(2,10,0) && !defined(USE_GNOMEPRINT)
197         {"File/PageSetup",              NULL, N_("Page setup..."), NULL, NULL, G_CALLBACK(page_setup_cb) },
198 #endif
199         {"File/Print",                  NULL, N_("_Print..."), "<control>P", NULL, G_CALLBACK(print_cb) },
200         {"File/---",                    NULL, "---", NULL, NULL, NULL },
201         {"File/Close",                  NULL, N_("_Close"), "<control>W", NULL, G_CALLBACK(close_cb) },
202
203 /* Edit menu */
204         {"Edit/Copy",                   NULL, N_("_Copy"), "<control>C", NULL, G_CALLBACK(copy_cb) },
205         {"Edit/SelectAll",              NULL, N_("_Select all"), "<control>A", NULL, G_CALLBACK(allsel_cb) },
206         {"Edit/---",                    NULL, "---", NULL, NULL, NULL },
207         {"Edit/Find",                   NULL, N_("_Find"), "<control>F", NULL, G_CALLBACK(search_cb) },
208         
209 /* View menu */
210         {"View/Goto",                   NULL, N_("_Go to") },
211         {"View/Goto/Prev",              NULL, N_("_Previous message"), "P", NULL, G_CALLBACK(prev_cb) },
212         {"View/Goto/Next",              NULL, N_("_Next message"), "N", NULL, G_CALLBACK(next_cb) },
213         {"View/Goto/---",               NULL, "---", NULL, NULL, NULL },
214         {"View/Goto/PrevUnread",        NULL, N_("P_revious unread message"), "<shift>P", NULL, G_CALLBACK(prev_unread_cb) },
215         {"View/Goto/NextUnread",        NULL, N_("N_ext unread message"), "<shift>N", NULL, G_CALLBACK(next_unread_cb) },
216         /* {"View/Goto/---",            NULL, "---", NULL, NULL, NULL }, */
217         {"View/Goto/PrevNew",           NULL, N_("Previous ne_w message"), NULL, NULL, G_CALLBACK(prev_new_cb) },
218         {"View/Goto/NextNew",           NULL, N_("Ne_xt new message"), NULL, NULL, G_CALLBACK(next_new_cb) },
219         /* {"View/Goto/---",            NULL, "---", NULL, NULL, NULL }, */
220         {"View/Goto/PrevMarked",        NULL, N_("Previous _marked message"), NULL, NULL, G_CALLBACK(prev_marked_cb) },
221         {"View/Goto/NextMarked",        NULL, N_("Next m_arked message"), NULL, NULL, G_CALLBACK(next_marked_cb) },
222         /* {"View/Goto/---",            NULL, "---", NULL, NULL, NULL }, */
223         {"View/Goto/PrevLabeled",       NULL, N_("Previous _labeled message"), NULL, NULL, G_CALLBACK(prev_labeled_cb) },
224         {"View/Goto/NextLabeled",       NULL, N_("Next la_beled message"), NULL, NULL, G_CALLBACK(next_labeled_cb) },
225         /* {"View/Goto/---",            NULL, "---", NULL, NULL, NULL }, */
226         {"View/Goto/LastRead",          NULL, N_("Last read message"), NULL, NULL, G_CALLBACK(last_read_cb) },
227         {"View/Goto/ParentMessage",     NULL, N_("Parent message"), "<control>Up", NULL, G_CALLBACK(parent_cb) },
228         /* {"View/Goto/---",            NULL, "---", NULL, NULL, NULL }, */
229         {"View/Goto/NextUnreadFolder",  NULL, N_("Next unread _folder"), "<shift>G", NULL, G_CALLBACK(goto_unread_folder_cb) },
230         {"View/Goto/OtherFolder",       NULL, N_("_Other folder..."), "G", NULL, G_CALLBACK(goto_folder_cb) },
231         /* {"View/Goto/---",            NULL, "---", NULL, NULL, NULL }, */
232
233         {"View/Encoding",               NULL, N_("Character _encoding") }, /* set_charset_cb */
234         {"View/Encoding/---",           NULL, "---" },
235 #define ENC_ACTION(cs_char,c_char,string) \
236         { "View/Encoding/" cs_char, NULL, N_(string), NULL, NULL, c_char }
237
238         {"View/Encoding/Western",       NULL, N_("Western European") },
239         {"View/Encoding/Baltic",        NULL, N_("Baltic") },
240         {"View/Encoding/Hebrew",        NULL, N_("Hebrew") },
241         {"View/Encoding/Arabic",        NULL, N_("Arabic") },
242         {"View/Encoding/Cyrillic",      NULL, N_("Cyrillic") },
243         {"View/Encoding/Japanese",      NULL, N_("Japanese") },
244         {"View/Encoding/Chinese",       NULL, N_("Chinese") },
245         {"View/Encoding/Korean",        NULL, N_("Korean") },
246         {"View/Encoding/Thai",          NULL, N_("Thai") },
247
248         {"View/Decode",                 NULL, N_("Decode") }, /* set_decode_cb */
249         {"View/Decode/---",             NULL, "---" },
250
251 #define DEC_ACTION(cs_type,c_type,string) \
252         { "View/Decode/" cs_type, NULL, N_(string), NULL, NULL, c_type }
253
254         {"View/---",                    NULL, "---", NULL, NULL, NULL },
255         {"View/MessageSource",          NULL, N_("Mess_age source"), "<control>U", NULL, G_CALLBACK(view_source_cb) },
256
257         {"View/Quotes",                 NULL, N_("Quotes") }, 
258
259 /* Message menu */
260         {"Message/Compose",             NULL, N_("Compose _new message"), "<control>M", NULL, G_CALLBACK(compose_cb) },
261         {"Message/---",                 NULL, "---", NULL, NULL, NULL },
262
263         {"Message/Reply",               NULL, N_("_Reply"), "<control>R", NULL, G_CALLBACK(reply_cb) }, /* COMPOSE_REPLY */
264         {"Message/ReplyTo",             NULL, N_("Repl_y to") }, 
265         {"Message/ReplyTo/All",         NULL, N_("_all"), "<control><shift>R", NULL, G_CALLBACK(reply_cb) }, /* COMPOSE_REPLY_TO_ALL */
266         {"Message/ReplyTo/Sender",      NULL, N_("_sender"), NULL, NULL, G_CALLBACK(reply_cb) }, /* COMPOSE_REPLY_TO_SENDER */
267         {"Message/ReplyTo/List",        NULL, N_("mailing _list"), "<control>L", NULL, G_CALLBACK(reply_cb) }, /* COMPOSE_REPLY_TO_LIST */
268         /* {"Message/---",                      NULL, "---", NULL, NULL, NULL }, */
269
270         {"Message/Forward",             NULL, N_("_Forward"), "<control><alt>F", NULL, G_CALLBACK(reply_cb) }, /* COMPOSE_FORWARD_INLINE */
271         {"Message/ForwardAtt",          NULL, N_("For_ward as attachment"), NULL, NULL, G_CALLBACK(reply_cb) }, /* COMPOSE_FORWARD_AS_ATTACH */
272         {"Message/Redirect",            NULL, N_("Redirec_t"), NULL, NULL, G_CALLBACK(reply_cb) }, /* COMPOSE_REDIRECT */
273
274 /* Tools menu */        
275         {"Tools/AddressBook",           NULL, N_("_Address book"), "<control><shift>A", NULL, G_CALLBACK(addressbook_open_cb) }, 
276         {"Tools/AddSenderToAB",         NULL, N_("Add sender to address boo_k"), NULL, NULL, G_CALLBACK(add_address_cb) }, 
277         {"Tools/---",                   NULL, "---", NULL, NULL, NULL },
278
279         {"Tools/CreateFilterRule",                      NULL, "_Create filter rule" },
280         {"Tools/CreateFilterRule/Automatically",        NULL, N_("_Automatically"), NULL, NULL, G_CALLBACK(create_filter_cb) }, /* FILTER_BY_AUTO */
281         {"Tools/CreateFilterRule/ByFrom",               NULL, N_("By _From"), NULL, NULL, G_CALLBACK(create_filter_cb) }, /* FILTER_BY_FROM */
282         {"Tools/CreateFilterRule/ByTo",                 NULL, N_("By _To"), NULL, NULL, G_CALLBACK(create_filter_cb) }, /* FILTER_BY_TO     */
283         {"Tools/CreateFilterRule/BySubject",            NULL, N_("By _Subject"), NULL, NULL, G_CALLBACK(create_filter_cb) }, /* FILTER_BY_SUBJECT */
284
285         {"Tools/CreateProcessingRule",                  NULL, "Create processing rule" },
286         {"Tools/CreateProcessingRule/Automatically",    NULL, N_("_Automatically"), NULL, NULL, G_CALLBACK(create_processing_cb) }, 
287         {"Tools/CreateProcessingRule/ByFrom",           NULL, N_("By _From"), NULL, NULL, G_CALLBACK(create_processing_cb) }, 
288         {"Tools/CreateProcessingRule/ByTo",             NULL, N_("By _To"), NULL, NULL, G_CALLBACK(create_processing_cb) }, 
289         {"Tools/CreateProcessingRule/BySubject",                NULL, N_("By _Subject"), NULL, NULL, G_CALLBACK(create_processing_cb) }, 
290
291         /* {"Tools/---",                        NULL, "---", NULL, NULL, NULL }, */
292
293         {"Tools/ListUrls",              NULL, N_("List _URLs..."), "<control><shift>U", NULL, G_CALLBACK(open_urls_cb) }, 
294
295         /* {"Tools/---",                        NULL, "---", NULL, NULL, NULL }, */
296         {"Tools/Actions",       NULL, N_("Actio_ns") },
297         {"Tools/Actions/PlaceHolder",   NULL, "Placeholder", NULL, NULL, G_CALLBACK(messageview_nothing_cb) },
298
299 /* Help menu */
300         {"Help/About",          NULL, N_("_About"), NULL, NULL, G_CALLBACK(about_cb) }, 
301 };
302
303 static GtkToggleActionEntry msgview_toggle_entries[] =
304 {
305         {"View/AllHeaders",             NULL, N_("Show all _headers"), "<control>H", NULL, G_CALLBACK(show_all_header_cb) }, /* toggle */
306         {"View/Quotes/FoldAll",         NULL, N_("_Fold all"), "<control><shift>Q", NULL, G_CALLBACK(msg_hide_quotes_cb) }, /* 1 toggle */
307         {"View/Quotes/Fold2",           NULL, N_("Fold from level _2"), NULL, NULL, G_CALLBACK(msg_hide_quotes_cb) }, /* 2 toggle */
308         {"View/Quotes/Fold3",           NULL, N_("Fold from level _3"), NULL, NULL, G_CALLBACK(msg_hide_quotes_cb) }, /* 3 toggle */
309 };
310
311 static GtkRadioActionEntry msgview_radio_enc_entries[] =
312 {
313         ENC_ACTION(CS_AUTO, C_AUTO, N_("_Automatic")), /* RADIO set_charset_cb */
314         ENC_ACTION(CS_US_ASCII, C_US_ASCII, N_("7bit ASCII (US-ASC_II)")), /* RADIO set_charset_cb */
315         ENC_ACTION(CS_UTF_8, C_UTF_8, N_("Unicode (_UTF-8)")), /* RADIO set_charset_cb */
316         ENC_ACTION("Western/"CS_ISO_8859_1, C_ISO_8859_1, "ISO-8859-_1"), /* RADIO set_charset_cb */
317         ENC_ACTION("Western/"CS_ISO_8859_15, C_ISO_8859_15, "ISO-8859-15"), /* RADIO set_charset_cb */
318         ENC_ACTION("Western/"CS_WINDOWS_1252, C_WINDOWS_1252, "Windows-1252"), /* RADIO set_charset_cb */
319         ENC_ACTION(CS_ISO_8859_2, C_ISO_8859_2, N_("Central European (ISO-8859-_2)")), /* RADIO set_charset_cb */
320         ENC_ACTION("Baltic/"CS_ISO_8859_13, C_ISO_8859_13, "ISO-8859-13"), /* RADIO set_charset_cb */
321         ENC_ACTION("Baltic/"CS_ISO_8859_4, C_ISO_8859_14, "ISO-8859-_4"), /* RADIO set_charset_cb */
322         ENC_ACTION(CS_ISO_8859_7, C_ISO_8859_7, N_("Greek (ISO-8859-_7)")), /* RADIO set_charset_cb */
323         ENC_ACTION("Hebrew/"CS_ISO_8859_8, C_ISO_8859_8, "ISO-8859-_8"), /* RADIO set_charset_cb */
324         ENC_ACTION("Hebrew/"CS_WINDOWS_1255, C_WINDOWS_1255, "Windows-1255"), /* RADIO set_charset_cb */
325         ENC_ACTION("Arabic/"CS_ISO_8859_6, C_ISO_8859_6, "ISO-8859-_6"), /* RADIO set_charset_cb */
326         ENC_ACTION("Arabic/"CS_WINDOWS_1256, C_WINDOWS_1256, "Windows-1256"), /* RADIO set_charset_cb */
327         ENC_ACTION(CS_ISO_8859_9, C_ISO_8859_9, N_("Turkish (ISO-8859-_9)")), /* RADIO set_charset_cb */
328         ENC_ACTION("Cyrillic/"CS_ISO_8859_5, C_ISO_8859_5, "ISO-8859-_5"), /* RADIO set_charset_cb */
329         ENC_ACTION("Cyrillic/"CS_KOI8_R, C_KOI8_R, "KOI8-_R"), /* RADIO set_charset_cb */
330         ENC_ACTION("Cyrillic/"CS_KOI8_U, C_KOI8_U, "KOI8-_U"), /* RADIO set_charset_cb */
331         ENC_ACTION("Cyrillic/"CS_WINDOWS_1251, C_WINDOWS_1251, "Windows-1251"), /* RADIO set_charset_cb */
332         ENC_ACTION("Japanese/"CS_ISO_2022_JP, C_ISO_2022_JP, "ISO-2022-_JP"), /* RADIO set_charset_cb */
333         ENC_ACTION("Japanese/"CS_ISO_2022_JP_2, C_ISO_2022_JP_2, "ISO-2022-JP-_2"), /* RADIO set_charset_cb */
334         ENC_ACTION("Japanese/"CS_EUC_JP, C_EUC_JP, "_EUC-JP"), /* RADIO set_charset_cb */
335         ENC_ACTION("Japanese/"CS_SHIFT_JIS, C_SHIFT_JIS, "_Shift-JIS"), /* RADIO set_charset_cb */
336         ENC_ACTION("Chinese/"CS_GB2312, C_GB2312, "_GB2312"), /* RADIO set_charset_cb */
337         ENC_ACTION("Chinese/"CS_GBK, C_GBK, "GB_K"), /* RADIO set_charset_cb */
338         ENC_ACTION("Chinese/"CS_BIG5, C_BIG5, "_Big5-JP"), /* RADIO set_charset_cb */
339         ENC_ACTION("Chinese/"CS_EUC_TW, C_EUC_TW, "EUC-_TW"), /* RADIO set_charset_cb */
340         ENC_ACTION("Korean/"CS_EUC_KR, C_EUC_KR, "_EUC-KR"), /* RADIO set_charset_cb */
341         ENC_ACTION("Korean/"CS_ISO_2022_KR, C_ISO_2022_KR, "_ISO-2022-KR"), /* RADIO set_charset_cb */
342         ENC_ACTION("Thai/"CS_TIS_620, C_TIS_620, "_TIS-620-KR"), /* RADIO set_charset_cb */
343         ENC_ACTION("Thai/"CS_WINDOWS_874, C_WINDOWS_874, "_Windows-874"), /* RADIO set_charset_cb */
344 };
345
346 static GtkRadioActionEntry msgview_radio_dec_entries[] =
347 {
348         DEC_ACTION("AutoDetect", 0, N_("_Auto detect")),        /* set_decode_cb */
349         /* --- */
350         DEC_ACTION("8bit", ENC_8BIT, "_8bit"),
351         DEC_ACTION("QP", ENC_QUOTED_PRINTABLE, "_Quoted printable"),
352         DEC_ACTION("B64", ENC_BASE64, "_Base64"),
353         DEC_ACTION("Uuencode", ENC_X_UUENCODE, "_Uuencode"),
354 };
355
356 MessageView *messageview_create(MainWindow *mainwin)
357 {
358         MessageView *messageview;
359         GtkWidget *vbox;
360         HeaderView *headerview;
361         MimeView *mimeview;
362         NoticeView *noticeview;
363
364         debug_print("Creating message view...\n");
365         messageview = g_new0(MessageView, 1);
366
367         headerview = headerview_create();
368
369         noticeview = noticeview_create(mainwin);
370
371         mimeview = mimeview_create(mainwin);
372         mimeview->textview = textview_create();
373         mimeview->textview->messageview = messageview;
374         mimeview->messageview = messageview;
375
376         vbox = gtk_vbox_new(FALSE, 0);
377         gtk_box_pack_start(GTK_BOX(vbox), GTK_WIDGET_PTR(headerview),
378                            FALSE, FALSE, 0);
379         gtk_box_pack_start(GTK_BOX(vbox), GTK_WIDGET_PTR(noticeview),
380                            FALSE, FALSE, 0);
381         gtk_box_pack_start(GTK_BOX(vbox),
382                            GTK_WIDGET_PTR(mimeview), TRUE, TRUE, 0);
383         gtk_widget_show(vbox);
384
385         messageview->vbox        = vbox;
386         messageview->new_window  = FALSE;
387         messageview->window      = NULL;
388         messageview->headerview  = headerview;
389         messageview->mimeview    = mimeview;
390         messageview->noticeview = noticeview;
391         messageview->mainwin    = mainwin;
392
393         messageview->statusbar     = NULL;
394         messageview->statusbar_cid = 0;
395
396         messageview->show_full_text= FALSE;
397
398         messageview->msginfo_update_callback_id =
399                 hooks_register_hook(MSGINFO_UPDATE_HOOKLIST, messageview_update_msg, (gpointer) messageview);
400
401         return messageview;
402 }
403
404 GList *messageview_get_msgview_list(void)
405 {
406         return msgview_list;
407 }
408
409 void messageview_update_actions_menu(MessageView *msgview)
410 {
411         /* Messages opened in a new window do not have a menu bar */
412         if (msgview->menubar == NULL)
413                 return;
414         action_update_msgview_menu(msgview->ui_manager, "/Menu/Tools/Actions", msgview);
415 }
416
417 static void messageview_add_toolbar(MessageView *msgview, GtkWidget *window) 
418 {
419         GtkWidget *handlebox;
420         GtkWidget *vbox;
421         GtkWidget *menubar;
422 #ifndef GENERIC_UMPC
423         GtkWidget *statusbar = NULL;
424 #endif
425         GtkActionGroup *action_group;
426
427
428         vbox = gtk_vbox_new(FALSE, 0);
429         gtk_widget_show(vbox);
430         gtk_container_add(GTK_CONTAINER(window), vbox); 
431
432         msgview->ui_manager = gtk_ui_manager_new();
433         action_group = cm_menu_create_action_group_full(msgview->ui_manager,"Menu", msgview_entries,
434                         G_N_ELEMENTS(msgview_entries), (gpointer)msgview);
435         gtk_action_group_add_toggle_actions(action_group, msgview_toggle_entries,
436                         G_N_ELEMENTS(msgview_toggle_entries), (gpointer)msgview);
437         gtk_action_group_add_radio_actions(action_group, msgview_radio_enc_entries,
438                         G_N_ELEMENTS(msgview_radio_enc_entries), C_AUTO, G_CALLBACK(set_charset_cb), (gpointer)msgview);
439         gtk_action_group_add_radio_actions(action_group, msgview_radio_dec_entries,
440                         G_N_ELEMENTS(msgview_radio_dec_entries), C_AUTO, G_CALLBACK(set_decode_cb), (gpointer)msgview);
441
442 #ifndef MAEMO
443         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/", "Menu", NULL, GTK_UI_MANAGER_MENUBAR)
444 #else
445         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/", "Menu", NULL, GTK_UI_MANAGER_POPUP)
446 #endif
447
448         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu", "File", "File", GTK_UI_MANAGER_MENU)
449         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu", "Edit", "Edit", GTK_UI_MANAGER_MENU)
450         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu", "View", "View", GTK_UI_MANAGER_MENU)
451         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu", "Message", "Message", GTK_UI_MANAGER_MENU)
452         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu", "Tools", "Tools", GTK_UI_MANAGER_MENU)
453         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu", "Help", "Help", GTK_UI_MANAGER_MENU)
454
455 /* File menu */
456         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/File", "SaveAs", "File/SaveAs", GTK_UI_MANAGER_MENUITEM)
457 #if GTK_CHECK_VERSION(2,10,0) && !defined(USE_GNOMEPRINT)
458         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/File", "PageSetup", "File/PageSetup", GTK_UI_MANAGER_MENUITEM)
459 #endif
460         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/File", "Print", "File/Print", GTK_UI_MANAGER_MENUITEM)
461         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/File", "Separator1", "File/---", GTK_UI_MANAGER_SEPARATOR)
462         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/File", "Close", "File/Close", GTK_UI_MANAGER_MENUITEM)
463
464 /* Edit menu */
465         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/Edit", "Copy", "Edit/Copy", GTK_UI_MANAGER_MENUITEM)
466         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/Edit", "SelectAll", "Edit/SelectAll", GTK_UI_MANAGER_MENUITEM)
467         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/Edit", "Separator1", "Edit/---", GTK_UI_MANAGER_SEPARATOR)
468         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/Edit", "Find", "Edit/Find", GTK_UI_MANAGER_MENUITEM)
469
470 /* View menu */
471         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View", "Goto", "View/Goto", GTK_UI_MANAGER_MENU)
472         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Goto", "Prev", "View/Goto/Prev", GTK_UI_MANAGER_MENUITEM)
473         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Goto", "Next", "View/Goto/Next", GTK_UI_MANAGER_MENUITEM)
474         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Goto", "Separator1", "View/Goto/---", GTK_UI_MANAGER_MENUITEM)
475         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Goto", "PrevUnread", "View/Goto/PrevUnread", GTK_UI_MANAGER_MENUITEM)
476         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Goto", "NextUnread", "View/Goto/NextUnread", GTK_UI_MANAGER_MENUITEM)
477         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Goto", "Separator2", "View/Goto/---", GTK_UI_MANAGER_MENUITEM)
478         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Goto", "PrevNew", "View/Goto/PrevNew", GTK_UI_MANAGER_MENUITEM)
479         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Goto", "NextNew", "View/Goto/NextNew", GTK_UI_MANAGER_MENUITEM)
480         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Goto", "Separator3", "View/Goto/---", GTK_UI_MANAGER_MENUITEM)
481         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Goto", "PrevMarked", "View/Goto/PrevMarked", GTK_UI_MANAGER_MENUITEM)
482         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Goto", "NextMarked", "View/Goto/NextMarked", GTK_UI_MANAGER_MENUITEM)
483         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Goto", "Separator4", "View/Goto/---", GTK_UI_MANAGER_MENUITEM)
484         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Goto", "PrevLabeled", "View/Goto/PrevLabeled", GTK_UI_MANAGER_MENUITEM)
485         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Goto", "NextLabeled", "View/Goto/NextLabeled", GTK_UI_MANAGER_MENUITEM)
486         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Goto", "Separator5", "View/Goto/---", GTK_UI_MANAGER_MENUITEM)
487         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Goto", "LastRead", "View/Goto/LastRead", GTK_UI_MANAGER_MENUITEM)
488         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Goto", "ParentMessage", "View/Goto/ParentMessage", GTK_UI_MANAGER_MENUITEM)
489         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Goto", "Separator6", "View/Goto/---", GTK_UI_MANAGER_MENUITEM)
490         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Goto", "NextUnreadFolder", "View/Goto/NextUnreadFolder", GTK_UI_MANAGER_MENUITEM)
491         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Goto", "OtherFolder", "View/Goto/OtherFolder", GTK_UI_MANAGER_MENUITEM)
492
493         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View", "Separator1", "View/---", GTK_UI_MANAGER_SEPARATOR)
494
495         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View", "Encoding", "View/Encoding", GTK_UI_MANAGER_MENU)
496         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Encoding", CS_AUTO, "View/Encoding/"CS_AUTO, GTK_UI_MANAGER_MENUITEM)
497         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Encoding", "Separator1", "View/Encoding/---", GTK_UI_MANAGER_SEPARATOR)
498         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Encoding", CS_US_ASCII, "View/Encoding/"CS_US_ASCII, GTK_UI_MANAGER_MENUITEM)
499         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Encoding", CS_UTF_8, "View/Encoding/"CS_UTF_8, GTK_UI_MANAGER_MENUITEM)
500         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Encoding", "Separator2", "View/Encoding/---", GTK_UI_MANAGER_SEPARATOR)
501
502         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Encoding", "Western", "View/Encoding/Western", GTK_UI_MANAGER_MENU)
503         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Encoding/Western", CS_ISO_8859_1, "View/Encoding/Western/"CS_ISO_8859_1, GTK_UI_MANAGER_MENUITEM)
504         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Encoding/Western", CS_ISO_8859_15, "View/Encoding/Western/"CS_ISO_8859_15, GTK_UI_MANAGER_MENUITEM)
505         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Encoding/Western", CS_WINDOWS_1252, "View/Encoding/Western/"CS_WINDOWS_1252, GTK_UI_MANAGER_MENUITEM)
506
507         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Encoding", CS_ISO_8859_2, "View/Encoding/"CS_ISO_8859_2, GTK_UI_MANAGER_MENUITEM)
508
509         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Encoding", "Baltic", "View/Encoding/Baltic", GTK_UI_MANAGER_MENU)
510         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Encoding/Baltic", CS_ISO_8859_13, "View/Encoding/Baltic/"CS_ISO_8859_13, GTK_UI_MANAGER_MENUITEM)
511         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Encoding/Baltic", CS_ISO_8859_4, "View/Encoding/Baltic/"CS_ISO_8859_4, GTK_UI_MANAGER_MENUITEM)
512
513         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Encoding", CS_ISO_8859_7, "View/Encoding/"CS_ISO_8859_7, GTK_UI_MANAGER_MENUITEM)
514
515         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Encoding", "Hebrew", "View/Encoding/Hebrew", GTK_UI_MANAGER_MENU)
516         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Encoding/Hebrew", CS_ISO_8859_8, "View/Encoding/Hebrew/"CS_ISO_8859_8, GTK_UI_MANAGER_MENUITEM)
517         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Encoding/Hebrew", CS_WINDOWS_1255, "View/Encoding/Hebrew/"CS_WINDOWS_1255, GTK_UI_MANAGER_MENUITEM)
518
519         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Encoding", "Arabic", "View/Encoding/Arabic", GTK_UI_MANAGER_MENU)
520         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Encoding/Arabic", CS_ISO_8859_6, "View/Encoding/Arabic/"CS_ISO_8859_6, GTK_UI_MANAGER_MENUITEM)
521         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Encoding/Arabic", CS_WINDOWS_1256, "View/Encoding/Arabic/"CS_WINDOWS_1256, GTK_UI_MANAGER_MENUITEM)
522
523         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Encoding", CS_ISO_8859_9, "View/Encoding/"CS_ISO_8859_9, GTK_UI_MANAGER_MENUITEM)
524
525         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Encoding", "Cyrillic", "View/Encoding/Cyrillic", GTK_UI_MANAGER_MENU)
526         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Encoding/Cyrillic", CS_ISO_8859_5, "View/Encoding/Cyrillic/"CS_ISO_8859_5, GTK_UI_MANAGER_MENUITEM)
527         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Encoding/Cyrillic", CS_KOI8_R, "View/Encoding/Cyrillic/"CS_KOI8_R, GTK_UI_MANAGER_MENUITEM)
528         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Encoding/Cyrillic", CS_KOI8_U, "View/Encoding/Cyrillic/"CS_KOI8_U, GTK_UI_MANAGER_MENUITEM)
529         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Encoding/Cyrillic", CS_WINDOWS_1251, "View/Encoding/Cyrillic/"CS_WINDOWS_1251, GTK_UI_MANAGER_MENUITEM)
530
531         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Encoding", "Japanese", "View/Encoding/Japanese", GTK_UI_MANAGER_MENU)
532         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Encoding/Japanese", CS_ISO_2022_JP, "View/Encoding/Japanese/"CS_ISO_2022_JP, GTK_UI_MANAGER_MENUITEM)
533         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Encoding/Japanese", CS_ISO_2022_JP_2, "View/Encoding/Japanese/"CS_ISO_2022_JP_2, GTK_UI_MANAGER_MENUITEM)
534         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Encoding/Japanese", CS_EUC_JP, "View/Encoding/Japanese/"CS_EUC_JP, GTK_UI_MANAGER_MENUITEM)
535         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Encoding/Japanese", CS_SHIFT_JIS, "View/Encoding/Japanese/"CS_SHIFT_JIS, GTK_UI_MANAGER_MENUITEM)
536
537         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Encoding", "Chinese", "View/Encoding/Chinese", GTK_UI_MANAGER_MENU)
538         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Encoding/Chinese", CS_GB2312, "View/Encoding/Chinese/"CS_GB2312, GTK_UI_MANAGER_MENUITEM)
539         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Encoding/Chinese", CS_GBK, "View/Encoding/Chinese/"CS_GBK, GTK_UI_MANAGER_MENUITEM)
540         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Encoding/Chinese", CS_BIG5, "View/Encoding/Chinese/"CS_BIG5, GTK_UI_MANAGER_MENUITEM)
541         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Encoding/Chinese", CS_EUC_TW, "View/Encoding/Chinese/"CS_EUC_TW, GTK_UI_MANAGER_MENUITEM)
542
543         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Encoding", "Korean", "View/Encoding/Korean", GTK_UI_MANAGER_MENU)
544         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Encoding/Korean", CS_EUC_KR, "View/Encoding/Korean/"CS_EUC_KR, GTK_UI_MANAGER_MENUITEM)
545         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Encoding/Korean", CS_ISO_2022_KR, "View/Encoding/Korean/"CS_ISO_2022_KR, GTK_UI_MANAGER_MENUITEM)
546
547         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Encoding", "Thai", "View/Encoding/Thai", GTK_UI_MANAGER_MENU)
548         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Encoding/Thai", CS_TIS_620, "View/Encoding/Thai/"CS_TIS_620, GTK_UI_MANAGER_MENUITEM)
549         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Encoding/Thai", CS_WINDOWS_874, "View/Encoding/Thai/"CS_WINDOWS_874, GTK_UI_MANAGER_MENUITEM)
550
551         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View", "Decode", "View/Decode", GTK_UI_MANAGER_MENU)
552         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Decode", "AutoDetect", "View/Decode/AutoDetect", GTK_UI_MANAGER_MENUITEM)
553         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Decode", "Separator1", "View/Decode/---", GTK_UI_MANAGER_SEPARATOR)
554         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Decode", "8bit", "View/Decode/8bit", GTK_UI_MANAGER_MENUITEM)
555         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Decode", "QP", "View/Decode/QP", GTK_UI_MANAGER_MENUITEM)
556         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Decode", "B64", "View/Decode/B64", GTK_UI_MANAGER_MENUITEM)
557         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Decode", "Uuencode", "View/Decode/Uuencode", GTK_UI_MANAGER_MENUITEM)
558
559         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View", "Separator2", "View/---", GTK_UI_MANAGER_SEPARATOR)
560
561         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View", "MessageSource", "View/MessageSource", GTK_UI_MANAGER_MENUITEM)
562         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View", "AllHeaders", "View/AllHeaders", GTK_UI_MANAGER_MENUITEM)
563         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View", "Quotes", "View/Quotes", GTK_UI_MANAGER_MENU)
564         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Quotes", "FoldAll", "View/Quotes/FoldAll", GTK_UI_MANAGER_MENUITEM)
565         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Quotes", "Fold2", "View/Quotes/Fold2", GTK_UI_MANAGER_MENUITEM)
566         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/View/Quotes", "Fold3", "View/Quotes/Fold3", GTK_UI_MANAGER_MENUITEM)
567
568 /* Message menu */
569         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/Message", "Compose", "Message/Compose", GTK_UI_MANAGER_MENUITEM)
570         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/Message", "Separator1", "Message/---", GTK_UI_MANAGER_SEPARATOR)
571         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/Message", "Reply", "Message/Reply", GTK_UI_MANAGER_MENUITEM)
572         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/Message", "ReplyTo", "Message/ReplyTo", GTK_UI_MANAGER_MENU)
573         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/Message/ReplyTo", "All", "Message/ReplyTo/All", GTK_UI_MANAGER_MENUITEM)
574         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/Message/ReplyTo", "Sender", "Message/ReplyTo/Sender", GTK_UI_MANAGER_MENUITEM)
575         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/Message/ReplyTo", "List", "Message/ReplyTo/List", GTK_UI_MANAGER_MENUITEM)
576         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/Message", "Separator2", "Message/---", GTK_UI_MANAGER_SEPARATOR)
577         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/Message", "Forward", "Message/Forward", GTK_UI_MANAGER_MENUITEM)
578         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/Message", "ForwardAtt", "Message/ForwardAtt", GTK_UI_MANAGER_MENUITEM)
579         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/Message", "Redirect", "Message/Redirect", GTK_UI_MANAGER_MENUITEM)
580
581 /* Tools menu */
582         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/Tools", "AddressBook", "Tools/AddressBook", GTK_UI_MANAGER_MENUITEM)
583         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/Tools", "AddSenderToAB", "Tools/AddSenderToAB", GTK_UI_MANAGER_MENUITEM)
584         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/Tools", "Separator1", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
585
586         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/Tools", "CreateFilterRule", "Tools/CreateFilterRule", GTK_UI_MANAGER_MENU)
587         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/Tools/CreateFilterRule", "Automatically", "Tools/CreateFilterRule/Automatically", GTK_UI_MANAGER_MENUITEM)
588         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/Tools/CreateFilterRule", "ByFrom", "Tools/CreateFilterRule/ByFrom", GTK_UI_MANAGER_MENUITEM)
589         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/Tools/CreateFilterRule", "ByTo", "Tools/CreateFilterRule/ByTo", GTK_UI_MANAGER_MENUITEM)
590         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/Tools/CreateFilterRule", "BySubject", "Tools/CreateFilterRule/BySubject", GTK_UI_MANAGER_MENUITEM)
591
592         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/Tools", "CreateProcessingRule", "Tools/CreateProcessingRule", GTK_UI_MANAGER_MENU)
593         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/Tools/CreateProcessingRule", "Automatically", "Tools/CreateProcessingRule/Automatically", GTK_UI_MANAGER_MENUITEM)
594         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/Tools/CreateProcessingRule", "ByFrom", "Tools/CreateProcessingRule/ByFrom", GTK_UI_MANAGER_MENUITEM)
595         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/Tools/CreateProcessingRule", "ByTo", "Tools/CreateProcessingRule/ByTo", GTK_UI_MANAGER_MENUITEM)
596         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/Tools/CreateProcessingRule", "BySubject", "Tools/CreateProcessingRule/BySubject", GTK_UI_MANAGER_MENUITEM)
597         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/Tools", "Separator2", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
598         
599         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/Tools", "ListUrls", "Tools/ListUrls", GTK_UI_MANAGER_MENUITEM)
600         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/Tools", "Separator3", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
601
602         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/Tools", "Actions", "Tools/Actions", GTK_UI_MANAGER_MENU)
603         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/Tools/Actions", "PlaceHolder", "Tools/Actions/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
604
605 /* Help menu */
606         MENUITEM_ADDUI_MANAGER(msgview->ui_manager, "/Menu/Help", "About", "Help/About", GTK_UI_MANAGER_MENUITEM)
607
608         menubar = gtk_ui_manager_get_widget(msgview->ui_manager, "/Menu");
609         gtk_widget_show_all(menubar);
610         gtk_window_add_accel_group(GTK_WINDOW(window), gtk_ui_manager_get_accel_group(msgview->ui_manager));
611
612 #ifndef MAEMO
613         gtk_box_pack_start(GTK_BOX(vbox), menubar, FALSE, TRUE, 0);
614 #else
615         hildon_window_set_menu(HILDON_WINDOW(window), GTK_MENU(menubar));
616 #endif
617
618         if (prefs_common.toolbar_detachable) {
619                 handlebox = gtk_handle_box_new();
620         } else {
621                 handlebox = gtk_hbox_new(FALSE, 0);
622         }
623         gtk_box_pack_start(GTK_BOX(vbox), handlebox, FALSE, FALSE, 0);
624         gtk_widget_realize(handlebox);
625 #ifdef MAEMO
626         msgview->toolbar = toolbar_create(TOOLBAR_MSGVIEW, window,
627                                           (gpointer)msgview);
628         msgview->statusbar = NULL;
629         msgview->statusbar_cid = 0;
630 #else
631         msgview->toolbar = toolbar_create(TOOLBAR_MSGVIEW, handlebox,
632                                           (gpointer)msgview);
633 #ifndef GENERIC_UMPC
634         statusbar = gtk_statusbar_new();
635         gtk_widget_show(statusbar);
636         gtk_box_pack_end(GTK_BOX(vbox), statusbar, FALSE, FALSE, 0);
637         msgview->statusbar = statusbar;
638         msgview->statusbar_cid = gtk_statusbar_get_context_id
639                 (GTK_STATUSBAR(statusbar), "Message View");
640 #else
641         msgview->statusbar = NULL;
642         msgview->statusbar_cid = 0;
643 #endif
644 #endif
645
646
647         msgview->handlebox = handlebox;
648         msgview->menubar   = menubar;
649
650         gtk_container_add(GTK_CONTAINER(vbox),
651                           GTK_WIDGET_PTR(msgview));
652
653         messageview_update_actions_menu(msgview);
654
655         msgview_list = g_list_append(msgview_list, msgview);
656 }
657
658 static MessageView *messageview_create_with_new_window_visible(MainWindow *mainwin, gboolean show)
659 {
660         MessageView *msgview;
661         GtkWidget *window;
662         static GdkGeometry geometry;
663
664         window = gtkut_window_new(GTK_WINDOW_TOPLEVEL, "messageview");
665         gtk_window_set_title(GTK_WINDOW(window), _("Claws Mail - Message View"));
666         gtk_window_set_resizable(GTK_WINDOW(window), TRUE);
667
668         if (!geometry.min_height) {
669                 geometry.min_width = 320;
670                 geometry.min_height = 200;
671         }
672         gtk_window_set_geometry_hints(GTK_WINDOW(window), NULL, &geometry,
673                                       GDK_HINT_MIN_SIZE);
674
675         gtk_widget_set_size_request(window, prefs_common.msgwin_width,
676                                     prefs_common.msgwin_height);
677 #ifdef G_OS_WIN32
678         gtk_window_move(GTK_WINDOW(window), 48, 48);
679 #endif
680
681         msgview = messageview_create(mainwin);
682
683         g_signal_connect(G_OBJECT(window), "size_allocate",
684                          G_CALLBACK(messageview_size_allocate_cb),
685                          msgview);
686         g_signal_connect(G_OBJECT(window), "delete_event",
687                          G_CALLBACK(messageview_delete_cb), msgview);
688 #ifdef MAEMO
689         maemo_connect_key_press_to_mainwindow(GTK_WINDOW(window));
690 #else
691         g_signal_connect(G_OBJECT(window), "key_press_event",
692                          G_CALLBACK(key_pressed), msgview);
693 #endif
694         messageview_add_toolbar(msgview, window);
695
696         if (show) {
697                 gtk_widget_grab_focus(msgview->mimeview->textview->text);
698                 gtk_widget_show(window);
699         } else {
700                 gtk_widget_realize(window);
701         }
702
703         msgview->new_window = TRUE;
704         msgview->window = window;
705         msgview->visible = TRUE;
706
707         toolbar_set_style(msgview->toolbar->toolbar, msgview->handlebox, 
708                           prefs_common.toolbar_style);
709         messageview_init(msgview);
710
711         return msgview;
712 }
713
714 MessageView *messageview_create_with_new_window(MainWindow *mainwin)
715 {
716         return messageview_create_with_new_window_visible(mainwin, TRUE);
717 }
718 void messageview_init(MessageView *messageview)
719 {
720         headerview_init(messageview->headerview);
721         mimeview_init(messageview->mimeview);
722         /*messageview_set_font(messageview);*/
723
724         noticeview_hide(messageview->noticeview);
725 }
726
727 static void notification_convert_header(gchar *dest, gint len, 
728                                         const gchar *src_,
729                                         gint header_len)
730 {
731         char *src;
732
733         g_return_if_fail(src_ != NULL);
734         g_return_if_fail(dest != NULL);
735
736         if (len < 1) return;
737
738         Xstrndup_a(src, src_, len, return);
739
740         remove_return(src);
741
742         if (is_ascii_str(src)) {
743                 strncpy2(dest, src, len);
744                 dest[len - 1] = '\0';
745                 return;
746         } else
747                 conv_encode_header(dest, len, src, header_len, FALSE);
748 }
749
750 static gint disposition_notification_send(MsgInfo *msginfo)
751 {
752         gchar buf[BUFFSIZE];
753         gchar tmp[MAXPATHLEN + 1];
754         FILE *fp;
755         GList *ac_list;
756         PrefsAccount *account = NULL;
757         gint ok;
758         gchar *to;
759         FolderItem *queue, *outbox;
760         gint num;
761         gchar *path;
762         gchar *addr;
763         gchar *addrp;
764         gchar *foo = NULL;
765         gboolean queued_removed = FALSE;
766         gchar *boundary = NULL;
767         gchar *date = NULL;
768         gchar *orig_to = NULL;
769         gchar *enc_sub = NULL;
770
771         if (!msginfo->extradata)
772                 return -1;
773         if (!msginfo->extradata->returnreceiptto && 
774             !msginfo->extradata->dispositionnotificationto) 
775                 return -1;
776
777         /* RFC2298: Test for Return-Path */
778         if (msginfo->extradata->dispositionnotificationto)
779                 to = msginfo->extradata->dispositionnotificationto;
780         else
781                 to = msginfo->extradata->returnreceiptto;
782
783         ok = procheader_get_header_from_msginfo(msginfo, buf, sizeof(buf),
784                                 "Return-Path:");
785         if (ok == 0) {
786                 gchar *to_addr = g_strdup(to);
787                 extract_address(to_addr);
788                 extract_address(buf);
789                 ok = strcasecmp(to_addr, buf);
790                 g_free(to_addr);
791         } else {
792                 strncpy(buf, _("<No Return-Path found>"), 
793                                 sizeof(buf));
794         }
795         
796         if (ok != 0) {
797                 AlertValue val;
798                 gchar *message;
799                 message = g_markup_printf_escaped(
800                   _("The notification address to which the return receipt is\n"
801                     "to be sent does not correspond to the return path:\n"
802                     "Notification address: %s\n"
803                     "Return path: %s\n"
804                     "It is advised to not to send the return receipt."),
805                   to, buf);
806                 val = alertpanel_full(_("Warning"), message,
807                                 _("_Don't Send"), _("_Send"), NULL, FALSE,
808                                 NULL, ALERT_WARNING, G_ALERTDEFAULT);
809                 g_free(message);                                
810                 if (val != G_ALERTALTERNATE)
811                         return -1;
812         }
813
814         ac_list = account_find_all_from_address(NULL, msginfo->to);
815         ac_list = account_find_all_from_address(ac_list, msginfo->cc);
816
817         if (ac_list == NULL) {
818                 AlertValue val = 
819                 alertpanel_full(_("Warning"),
820                   _("This message is asking for a return receipt notification\n"
821                     "but according to its 'To:' and 'CC:' headers it was not\n"
822                     "officially addressed to you.\n"
823                     "It is advised to not to send the return receipt."),
824                   _("_Don't Send"), _("_Send"), NULL, FALSE,
825                   NULL, ALERT_WARNING, G_ALERTDEFAULT);
826                 if (val != G_ALERTALTERNATE)
827                         return -1;
828         }
829
830         if (g_list_length(ac_list) > 1) {
831                 if ((account = select_account_from_list(ac_list)) == NULL)
832                         return -1;
833         }
834         else if (ac_list != NULL)
835                 account = (PrefsAccount *) ac_list->data;
836         g_list_free(ac_list);
837
838         if (account == NULL)
839                 account = account_get_default();
840         if (!account || account->protocol == A_NNTP) {
841                 alertpanel_error(_("Account for sending mail is not specified.\n"
842                                    "Please select a mail account before sending."));
843                 return -1;
844         }
845
846         /* write to temporary file */
847         g_snprintf(tmp, sizeof(tmp), "%s%ctmpmsg%p",
848                    get_rc_dir(), G_DIR_SEPARATOR, msginfo);
849
850         if ((fp = g_fopen(tmp, "wb")) == NULL) {
851                 FILE_OP_ERROR(tmp, "fopen");
852                 return -1;
853         }
854
855         /* chmod for security */
856         if (change_file_mode_rw(fp, tmp) < 0) {
857                 FILE_OP_ERROR(tmp, "chmod");
858                 g_warning("can't change file mode\n");
859         }
860         
861         addr = g_strdup(to);
862         
863         extract_address(addr);
864         addrp = addr;
865         
866         /* write queue headers */
867         if (fprintf(fp, "AF:\n"
868                     "NF:0\n"
869                     "PS:10\n"
870                     "SRH:1\n"
871                     "SFN:\n"
872                     "DSR:\n"
873                     "MID:\n"
874                     "CFG:\n"
875                     "PT:0\n"
876                     "S:%s\n"
877                     "RQ:\n"
878                     "SSV:%s\n"
879                     "SSH:\n"
880                     "R:<%s>\n", 
881                     account->address,
882                     account->smtp_server?account->smtp_server:"",
883                     addrp) < 0) {
884                 g_free(addrp);
885                 fclose(fp);
886                 claws_unlink(tmp);
887                 return -1;
888         }
889
890         g_free(addrp);
891         
892         /* check whether we need to save the message */
893         outbox = account_get_special_folder(account, F_OUTBOX); 
894         if (folder_get_default_outbox() == outbox && !prefs_common.savemsg)
895                 outbox = NULL;
896         if (outbox) {
897                 path = folder_item_get_identifier(outbox);
898                 if (fprintf(fp, "SCF:%s\n", path) < 0) {
899                         g_free(path);
900                         fclose(fp);
901                         claws_unlink(tmp);
902                         return -1;
903                 }
904                 g_free(path);
905         }               
906
907         if (fprintf(fp, "X-Claws-End-Special-Headers: 1\n") < 0) {
908                 fclose(fp);
909                 claws_unlink(tmp);
910                 return -1;
911         }
912
913         /* Date */
914         get_rfc822_date(buf, sizeof(buf));
915         if (fprintf(fp, "Date: %s\n", buf) < 0) {
916                 fclose(fp);
917                 claws_unlink(tmp);
918                 return -1;
919         }
920
921         /* From */
922         if (account->name && *account->name) {
923                 notification_convert_header
924                         (buf, sizeof(buf), account->name,
925                          strlen("From: "));
926                 if (fprintf(fp, "From: %s <%s>\n", buf, account->address) < 0) {
927                         fclose(fp);
928                         claws_unlink(tmp);
929                         return -1;
930                 }
931         } else
932                 if (fprintf(fp, "From: %s\n", account->address) < 0) {
933                         fclose(fp);
934                         claws_unlink(tmp);
935                         return -1;
936                 }
937
938
939         if (fprintf(fp, "To: %s\n", to) < 0) {
940                 fclose(fp);
941                 claws_unlink(tmp);
942                 return -1;
943         }
944
945         /* Subject */
946         notification_convert_header(buf, sizeof(buf), msginfo->subject,
947                                     strlen("Subject: "));
948         if (fprintf(fp, "Subject: Disposition notification: %s\n", buf) < 0) {
949                 fclose(fp);
950                 claws_unlink(tmp);
951                 return -1;
952         }
953
954         /* Message ID */
955         if (account->set_domain && account->domain) {
956                 g_snprintf(buf, sizeof(buf), "%s", account->domain); 
957         } else if (!strncmp(get_domain_name(), "localhost", strlen("localhost"))) {
958                 g_snprintf(buf, sizeof(buf), "%s", 
959                         strchr(account->address, '@') ?
960                                 strchr(account->address, '@')+1 :
961                                 account->address);
962         } else {
963                 g_snprintf(buf, sizeof(buf), "%s", "");
964         }
965         
966         if (account->gen_msgid) {
967                 generate_msgid(buf, sizeof(buf));
968
969                 if (fprintf(fp, "Message-ID: <%s>\n", buf) < 0) {
970                         fclose(fp);
971                         claws_unlink(tmp);
972                         return -1;
973                 }
974         }
975
976         boundary = generate_mime_boundary("DN");
977         get_rfc822_date(buf, sizeof(buf));
978         date = g_strdup(buf);
979         if (msginfo->to) {
980                 orig_to = g_strdup(msginfo->to);
981                 extract_address(orig_to);
982         }
983         if (msginfo->subject && *(msginfo->subject)) {
984                 enc_sub = g_malloc0(strlen(msginfo->subject)*8);
985                 qp_encode_line(enc_sub, (const guchar *)msginfo->subject);
986                 g_strstrip(enc_sub);
987         }
988         if (fprintf(fp, "MIME-Version: 1.0\n"
989                         "Content-Type: multipart/report; report-type=disposition-notification;\n"
990                         "  boundary=\"%s\"\n"
991                         "\n"
992                         "--%s\n"
993                         "Content-Type: text/plain; charset=UTF-8\n"
994                         "Content-Transfer-Encoding: quoted-printable\n"
995                         "\n"
996                         "The message sent on: %s\n"
997                         "To: %s\n"
998                         "With subject: \"%s\"\n"
999                         "has been displayed at %s.\n"
1000                         "\n"
1001                         "There is no guarantee that the message has been read or understood.\n"
1002                         "\n"
1003                         "--%s\n"
1004                         "Content-Type: message/disposition-notification\n"
1005                         "\n"
1006                         "Reporting-UA: %s\n"
1007                         "Original-Recipient: rfc822;%s\n"
1008                         "Final-Recipient: rfc822;%s\n"
1009                         "Original-Message-ID: <%s>\n"
1010                         "Disposition: manual-action/MDN-sent-manually; displayed\n"
1011                         "\n"
1012                         "--%s\n"
1013                         "Content-Type: application/octet-stream\n"
1014                         "Reporting-UA: %s\n"
1015                         "Original-Recipient: rfc822;%s\n"
1016                         "Final-Recipient: rfc822;%s\n"
1017                         "Original-Message-ID: <%s>\n"
1018                         "Disposition: manual-action/MDN-sent-manually; displayed\n"
1019                         "\n"
1020                         "--%s--\n", 
1021                         boundary, 
1022                         boundary,
1023                         msginfo->date, 
1024                         orig_to?orig_to:"No To:",
1025                         enc_sub?enc_sub:"No subject",
1026                         date,
1027                         boundary,
1028                         PROG_VERSION,
1029                         orig_to?orig_to:"No To:",
1030                         account->address,
1031                         msginfo->msgid?msginfo->msgid:"NO MESSAGE ID",
1032                         boundary,
1033                         PROG_VERSION,
1034                         orig_to?orig_to:"No To:",
1035                         account->address,
1036                         msginfo->msgid?msginfo->msgid:"NO MESSAGE ID",
1037                         boundary) < 0) {
1038                 fclose(fp);
1039                 claws_unlink(tmp);
1040                 g_free(boundary);
1041                 return -1;
1042         }
1043
1044         g_free(enc_sub);
1045         g_free(orig_to);
1046         g_free(date);
1047         g_free(boundary);
1048
1049         if (fclose(fp) == EOF) {
1050                 FILE_OP_ERROR(tmp, "fclose");
1051                 claws_unlink(tmp);
1052                 return -1;
1053         }
1054
1055         /* put it in queue */
1056         queue = account_get_special_folder(account, F_QUEUE);
1057         if (!queue) queue = folder_get_default_queue();
1058         if (!queue) {
1059                 g_warning("can't find queue folder\n");
1060                 claws_unlink(tmp);
1061                 return -1;
1062         }
1063         folder_item_scan(queue);
1064         if ((num = folder_item_add_msg(queue, tmp, NULL, TRUE)) < 0) {
1065                 g_warning("can't queue the message\n");
1066                 claws_unlink(tmp);
1067                 return -1;
1068         }
1069                 
1070         if (prefs_common.work_offline && 
1071             !inc_offline_should_override(TRUE,
1072                 _("Claws Mail needs network access in order "
1073                   "to send this email.")))
1074                 return 0;
1075
1076         /* send it */
1077         path = folder_item_fetch_msg(queue, num);
1078         ok = procmsg_send_message_queue(path, &foo, queue, num, &queued_removed);
1079         g_free(path);
1080         g_free(foo);
1081         if (ok == 0 && !queued_removed)
1082                 folder_item_remove_msg(queue, num);
1083
1084         return ok;
1085 }
1086
1087 static gboolean find_encrypted_func(GNode *node, gpointer data)
1088 {
1089         MimeInfo *mimeinfo = (MimeInfo *) node->data;
1090         MimeInfo **encinfo = (MimeInfo **) data;
1091         
1092         if (privacy_mimeinfo_is_encrypted(mimeinfo)) {
1093                 *encinfo = mimeinfo;
1094                 return TRUE;
1095         }
1096         
1097         return FALSE;
1098 }
1099
1100 static MimeInfo *find_encrypted_part(MimeInfo *rootinfo)
1101 {
1102         MimeInfo *encinfo = NULL;
1103
1104         g_node_traverse(rootinfo->node, G_IN_ORDER, G_TRAVERSE_ALL, -1,
1105                 find_encrypted_func, &encinfo);
1106         
1107         return encinfo;
1108 }
1109
1110 gint messageview_show(MessageView *messageview, MsgInfo *msginfo,
1111                       gboolean all_headers)
1112 {
1113         gchar *text = NULL;
1114         gchar *file;
1115         MimeInfo *mimeinfo, *encinfo;
1116         gchar *subject = NULL;
1117         g_return_val_if_fail(msginfo != NULL, -1);
1118
1119         if (msginfo != messageview->msginfo)
1120                 messageview->show_full_text = FALSE;
1121
1122         if (messageview->mimeview->textview &&
1123             messageview->mimeview->textview->loading) {
1124                 messageview->mimeview->textview->stop_loading = TRUE;
1125                 return 0;
1126         }
1127
1128         if (messageview->toolbar)
1129                 toolbar_set_learn_button
1130                         (messageview->toolbar,
1131                          MSG_IS_SPAM(msginfo->flags)?LEARN_HAM:LEARN_SPAM);
1132         else
1133                 toolbar_set_learn_button
1134                         (messageview->mainwin->toolbar,
1135                          MSG_IS_SPAM(msginfo->flags)?LEARN_HAM:LEARN_SPAM);
1136
1137         if (messageview->toolbar) {
1138                 if (messageview->toolbar->learn_spam_btn) {
1139                         gboolean can_learn = FALSE;
1140                         if (procmsg_spam_can_learn() &&
1141                             (msginfo->folder &&
1142                              msginfo->folder->folder->klass->type != F_UNKNOWN &&
1143                              msginfo->folder->folder->klass->type != F_NEWS))
1144                                 can_learn = TRUE;
1145
1146                         gtk_widget_set_sensitive(
1147                                 messageview->toolbar->learn_spam_btn, 
1148                                 can_learn);
1149                 }
1150         }
1151         
1152         noticeview_hide(messageview->noticeview);
1153         mimeview_clear(messageview->mimeview);
1154         messageview->updating = TRUE;
1155
1156         if (msginfo->size > 1024*1024)
1157                 statuswindow_print_all(_("Fetching message (%s)..."),
1158                         to_human_readable(msginfo->size));
1159         
1160         file = procmsg_get_message_file_path(msginfo);
1161
1162         if (msginfo->size > 1024*1024)
1163                 statuswindow_pop_all();
1164
1165         if (!file) {
1166                 g_warning("can't get message file path.\n");
1167                 textview_show_error(messageview->mimeview->textview);
1168                 return -1;
1169         }
1170         
1171         if (!folder_has_parent_of_type(msginfo->folder, F_QUEUE) &&
1172             !folder_has_parent_of_type(msginfo->folder, F_DRAFT))
1173                 mimeinfo = procmime_scan_file(file);
1174         else
1175                 mimeinfo = procmime_scan_queue_file(file);
1176
1177         messageview->updating = FALSE;
1178         
1179         if (messageview->deferred_destroy) {
1180                 g_free(file);
1181                 messageview_destroy(messageview);
1182                 return 0;
1183         }
1184
1185         if (!mimeinfo) {
1186                 textview_show_error(messageview->mimeview->textview);
1187                 return -1;
1188         }
1189
1190         while ((encinfo = find_encrypted_part(mimeinfo)) != NULL) {
1191                 debug_print("decrypting message part\n");
1192                 if (privacy_mimeinfo_decrypt(encinfo) < 0) {
1193                         text = g_strdup_printf(_("Couldn't decrypt: %s"),
1194                                                privacy_get_error());
1195                         noticeview_show(messageview->noticeview);
1196                         noticeview_set_icon(messageview->noticeview,
1197                                             STOCK_PIXMAP_NOTICE_WARN);
1198                         noticeview_set_text(messageview->noticeview, text);
1199                         gtk_widget_hide(messageview->noticeview->button);
1200                         gtk_widget_hide(messageview->noticeview->button2);
1201                         g_free(text);
1202                         break;
1203                 }
1204         }
1205                         
1206         if (messageview->msginfo != msginfo) {
1207                 procmsg_msginfo_free(messageview->msginfo);
1208                 messageview->msginfo = NULL;
1209                 messageview_set_menu_sensitive(messageview);
1210                 messageview->msginfo = 
1211                         procmsg_msginfo_get_full_info_from_file(msginfo, file);
1212                 if (!messageview->msginfo)
1213                         messageview->msginfo = procmsg_msginfo_copy(msginfo);
1214         } else {
1215                 messageview->msginfo = NULL;
1216                 messageview_set_menu_sensitive(messageview);
1217                 messageview->msginfo = msginfo;
1218         }
1219         headerview_show(messageview->headerview, messageview->msginfo);
1220
1221         messageview_set_position(messageview, 0);
1222
1223         textview_set_all_headers(messageview->mimeview->textview, 
1224                         messageview->all_headers);
1225
1226 #ifdef MAEMO
1227         maemo_window_full_screen_if_needed(GTK_WINDOW(messageview->window));
1228 #endif
1229         if (messageview->window) {
1230                 gtk_window_set_title(GTK_WINDOW(messageview->window), 
1231                                 _("Claws Mail - Message View"));
1232                 GTK_EVENTS_FLUSH();
1233         }
1234         mimeview_show_message(messageview->mimeview, mimeinfo, file);
1235         
1236 #ifndef GENERIC_UMPC
1237         messageview_set_position(messageview, 0);
1238 #endif
1239
1240         if (messageview->window && msginfo->subject) {
1241                 subject = g_strdup(msginfo->subject);
1242                 if (!g_utf8_validate(subject, -1, NULL)) {
1243                         g_free(subject);
1244                         subject = g_malloc(strlen(msginfo->subject)*2 +1);
1245                         conv_localetodisp(subject, strlen(msginfo->subject)*2 +1, 
1246                                 msginfo->subject);
1247                 }
1248                 if (g_utf8_validate(subject, -1, NULL))
1249                         gtk_window_set_title(GTK_WINDOW(messageview->window), 
1250                                 subject);
1251                 g_free(subject);
1252         }
1253
1254         if (msginfo && msginfo->folder) {
1255                 msginfo->folder->last_seen = msginfo->msgnum;   
1256         }
1257
1258         main_create_mailing_list_menu(messageview->mainwin, messageview->msginfo);
1259
1260         if (messageview->msginfo && messageview->msginfo->extradata
1261             && messageview->msginfo->extradata->partial_recv
1262             && !noticeview_is_visible(messageview->noticeview))
1263                 partial_recv_show(messageview->noticeview, 
1264                                   messageview->msginfo);
1265         else if (messageview->msginfo && messageview->msginfo->extradata &&
1266             (messageview->msginfo->extradata->dispositionnotificationto || 
1267              messageview->msginfo->extradata->returnreceiptto) &&
1268             !MSG_IS_RETRCPT_SENT(messageview->msginfo->flags) &&
1269             !prefs_common.never_send_retrcpt &&
1270             !noticeview_is_visible(messageview->noticeview))
1271                 return_receipt_show(messageview->noticeview, 
1272                                     messageview->msginfo);
1273
1274         mimeinfo = procmime_mimeinfo_next(mimeinfo);
1275         if (!all_headers && mimeinfo 
1276                         && (mimeinfo->type != MIMETYPE_TEXT || 
1277             strcasecmp(mimeinfo->subtype, "plain")) 
1278                         && (mimeinfo->type != MIMETYPE_MULTIPART || 
1279             strcasecmp(mimeinfo->subtype, "signed"))) {
1280                 if (strcasecmp(mimeinfo->subtype, "html")) {
1281                         MimeInfo *saved_mimeinfo = mimeinfo;
1282                         MimeInfo *alt_parent = mimeinfo;
1283
1284                         /* if multipart/{related,mixed} part, look inside for a multipart/alternative child */
1285                         if (mimeinfo->type == MIMETYPE_MULTIPART &&
1286                             (!strcasecmp(mimeinfo->subtype, "related") ||
1287                              !strcasecmp(mimeinfo->subtype, "mixed"))) {
1288                                 for (; mimeinfo; mimeinfo = procmime_mimeinfo_next(mimeinfo)) {
1289                                         if (mimeinfo->node->parent != saved_mimeinfo->node) {
1290                                                 /* only consider children of the 
1291                                                  * multipart/{related,mixed} part */
1292                                                 continue;
1293                                         }
1294                                         if (mimeinfo->type == MIMETYPE_MULTIPART && 
1295                                             !strcasecmp(mimeinfo->subtype, "alternative")) {
1296                                                 /* we got an alternative part */
1297                                                 alt_parent = mimeinfo;
1298                                                 break;
1299                                         }
1300                                         if (mimeinfo->type == MIMETYPE_TEXT && 
1301                                             !strcasecmp(mimeinfo->subtype, "calendar") &&
1302                                             mimeview_has_viewer_for_content_type(messageview->mimeview,
1303                                                                                  "text/calendar")) {
1304                                                 mimeview_select_mimepart_icon(messageview->mimeview, mimeinfo);
1305                                                 goto done;
1306                                         } else if (mimeinfo->type == MIMETYPE_TEXT && 
1307                                             !strcasecmp(mimeinfo->subtype, "html") &&
1308                                             prefs_common.promote_html_part) {
1309                                                 mimeview_select_mimepart_icon(messageview->mimeview, mimeinfo);
1310                                                 goto done;
1311                                         }
1312                                 }
1313                         }
1314
1315                         /* if we now have a multipart/alternative part (possibly inside a
1316                          * multipart/{related,mixed} part, look for an HTML part inside */
1317                         if (mimeinfo && mimeinfo->type == MIMETYPE_MULTIPART &&
1318                             !strcasecmp(mimeinfo->subtype, "alternative")) {
1319                                 for (; mimeinfo; mimeinfo = procmime_mimeinfo_next(mimeinfo)) {
1320                                         if (mimeinfo->node->parent != alt_parent->node) {
1321                                                 /* only consider children of the 
1322                                                  * multipart/alternative part, so as
1323                                                  * not to show html attachments */
1324                                                 continue;
1325                                         }
1326                                         if (mimeinfo->type == MIMETYPE_TEXT && 
1327                                             !strcasecmp(mimeinfo->subtype, "calendar") &&
1328                                             mimeview_has_viewer_for_content_type(messageview->mimeview,
1329                                                                                  "text/calendar")) {
1330                                                 mimeview_select_mimepart_icon(messageview->mimeview, mimeinfo);
1331                                                 goto done;
1332                                         } else if (mimeinfo->type == MIMETYPE_TEXT && 
1333                                             !strcasecmp(mimeinfo->subtype, "html") &&
1334                                             prefs_common.promote_html_part) {
1335                                                 mimeview_select_mimepart_icon(messageview->mimeview, mimeinfo);
1336                                                 goto done;
1337                                         }
1338                                 }
1339                         }
1340                         
1341                         /* if we didn't find anything, go back to start */
1342                         if (!mimeinfo) 
1343                                 mimeinfo = saved_mimeinfo;
1344
1345                         mimeview_show_part(messageview->mimeview,mimeinfo);
1346                         goto done;
1347                 } else if (prefs_common.invoke_plugin_on_html) {
1348                         mimeview_select_mimepart_icon(messageview->mimeview, mimeinfo);
1349                         goto done;
1350                 }
1351         }
1352         if (!all_headers && mimeinfo &&
1353             mimeinfo->type == MIMETYPE_MULTIPART &&
1354             mimeview_has_viewer_for_content_type(messageview->mimeview, "text/calendar")) {
1355                 /* look for a calendar part or it looks really strange */
1356                 while (mimeinfo) {
1357                         if (mimeinfo->type == MIMETYPE_TEXT &&
1358                             !strcasecmp(mimeinfo->subtype, "calendar")) {
1359                                 mimeview_select_mimepart_icon(messageview->mimeview, mimeinfo);
1360                                 goto done;
1361                         }
1362                         mimeinfo = procmime_mimeinfo_next(mimeinfo);
1363                 }
1364         }
1365 done:
1366         g_free(file);
1367
1368         return 0;
1369 }
1370
1371 void messageview_reflect_prefs_pixmap_theme(void)
1372 {
1373         GList *cur;
1374         MessageView *msgview;
1375
1376         for (cur = msgview_list; cur != NULL; cur = cur->next) {
1377                 msgview = (MessageView*)cur->data;
1378                 toolbar_update(TOOLBAR_MSGVIEW, msgview);
1379                 mimeview_update(msgview->mimeview);
1380         }
1381 }
1382
1383 void messageview_clear(MessageView *messageview)
1384 {
1385         if (!messageview)
1386                 return;
1387         procmsg_msginfo_free(messageview->msginfo);
1388         messageview->msginfo = NULL;
1389         messageview->filtered = FALSE;
1390         mimeview_clear(messageview->mimeview);
1391         headerview_clear(messageview->headerview);
1392         noticeview_hide(messageview->noticeview);
1393 }
1394
1395 void messageview_destroy(MessageView *messageview)
1396 {
1397         debug_print("destroy messageview\n");
1398         messageview_list = g_list_remove(messageview_list, messageview);
1399
1400         if (messageview->mainwin->summaryview->messageview == messageview) {
1401                 messageview->mainwin->summaryview->displayed = NULL;
1402                 messageview->mainwin->summaryview->messageview = NULL;
1403         }
1404         if (messageview->mainwin->summaryview->ext_messageview == messageview) {
1405                 messageview->mainwin->summaryview->displayed = NULL;
1406                 messageview->mainwin->summaryview->ext_messageview = NULL;
1407         }
1408         if (!messageview->deferred_destroy) {
1409                 hooks_unregister_hook(MSGINFO_UPDATE_HOOKLIST,
1410                               messageview->msginfo_update_callback_id);
1411         }
1412
1413         if (messageview->updating) {
1414                 debug_print("uh oh, better not touch that now (fetching)\n");
1415                 messageview->deferred_destroy = TRUE;
1416                 gtk_widget_hide(messageview->window);
1417                 return;
1418         }
1419         
1420         if (messageview->mimeview->textview
1421         &&  messageview->mimeview->textview->loading) {
1422                 debug_print("uh oh, better not touch that now (loading text)\n");
1423                 messageview->deferred_destroy = TRUE;
1424                 messageview->mimeview->textview->stop_loading = TRUE;
1425                 gtk_widget_hide(messageview->window);
1426                 return;
1427         }
1428
1429         headerview_destroy(messageview->headerview);
1430         mimeview_destroy(messageview->mimeview);
1431         noticeview_destroy(messageview->noticeview);
1432
1433         procmsg_msginfo_free(messageview->msginfo);
1434         toolbar_clear_list(TOOLBAR_MSGVIEW);
1435         if (messageview->toolbar) {
1436                 toolbar_destroy(messageview->toolbar);
1437                 g_free(messageview->toolbar);
1438         }
1439         
1440         msgview_list = g_list_remove(msgview_list, messageview); 
1441
1442         if (messageview->window)
1443                 gtk_widget_destroy(messageview->window);
1444         g_free(messageview);
1445 }
1446
1447 void messageview_delete(MessageView *msgview)
1448 {
1449         MsgInfo *msginfo = NULL;
1450         FolderItem *trash = NULL;
1451         PrefsAccount *ac = NULL;
1452
1453         if (msgview->msginfo && msgview->mainwin && msgview->mainwin->summaryview)
1454                 msginfo = summary_get_selected_msg(msgview->mainwin->summaryview);
1455         
1456         /* need a procmsg_msginfo_equal() */
1457         if (msginfo && msgview->msginfo && 
1458             msginfo->msgnum == msgview->msginfo->msgnum && 
1459             msginfo->folder == msgview->msginfo->folder) {
1460                 summary_delete_trash(msgview->mainwin->summaryview);
1461         } else {                
1462                 msginfo = msgview->msginfo;
1463
1464                 g_return_if_fail(msginfo != NULL);
1465
1466                 /* to get the trash folder, we have to choose either
1467                  * the folder's or account's trash default - we prefer
1468                  * the one in the account prefs */
1469                 if (msginfo->folder) {
1470                         if (NULL != (ac = account_find_from_item(msginfo->folder)))
1471                                 trash = account_get_special_folder(ac, F_TRASH);
1472                         if (!trash && msginfo->folder->folder)  
1473                                 trash = msginfo->folder->folder->trash;
1474                         /* if still not found, use the default */
1475                         if (!trash) 
1476                                 trash = folder_get_default_trash();
1477                 }       
1478
1479                 g_return_if_fail(trash != NULL);
1480
1481                 if (prefs_common.immediate_exec)
1482                         /* TODO: Delete from trash */
1483                         folder_item_move_msg(trash, msginfo);
1484                 else {
1485                         procmsg_msginfo_set_to_folder(msginfo, trash);
1486                         procmsg_msginfo_set_flags(msginfo, MSG_DELETED, 0);
1487                         /* NOTE: does not update to next message in summaryview */
1488                 }
1489         }
1490 #ifdef GENERIC_UMPC
1491         if (msgview->window && !prefs_common.always_show_msg) {
1492                 messageview_destroy(msgview);
1493         }
1494 #endif
1495 }
1496
1497 /* 
1498  * \brief update messageview with currently selected message in summaryview
1499  *        leave unchanged if summaryview is empty
1500  * \param pointer to MessageView
1501  */     
1502 static void messageview_update(MessageView *msgview, MsgInfo *old_msginfo)
1503 {
1504         SummaryView *summaryview = (SummaryView*)msgview->mainwin->summaryview;
1505
1506         g_return_if_fail(summaryview != NULL);
1507         
1508         if (summaryview->selected) {
1509                 MsgInfo *msginfo = summary_get_selected_msg(summaryview);
1510                 if (msginfo == NULL || msginfo == old_msginfo)
1511                         return;
1512
1513                 messageview_show(msgview, msginfo, 
1514                                  msgview->all_headers);
1515         } 
1516 }
1517
1518 TextView *messageview_get_current_textview(MessageView *messageview)
1519 {
1520         TextView *text = NULL;
1521
1522         text = messageview->mimeview->textview;
1523
1524         return text;
1525 }
1526
1527 MimeInfo *messageview_get_selected_mime_part(MessageView *messageview)
1528 {
1529         return mimeview_get_selected_part(messageview->mimeview);
1530 }
1531
1532 void messageview_copy_clipboard(MessageView *messageview)
1533 {
1534         gchar *text = messageview_get_selection(messageview);
1535         if (text) {
1536                 gtk_clipboard_set_text(
1537                         gtk_clipboard_get(GDK_SELECTION_CLIPBOARD),
1538                         text, -1);
1539         }
1540         g_free(text);
1541 }
1542
1543 void messageview_select_all(MessageView *messageview)
1544 {
1545         TextView *text;
1546
1547         text = messageview_get_current_textview(messageview);
1548         if (text) {
1549                 GtkTextView *textview = GTK_TEXT_VIEW(text->text);
1550                 GtkTextBuffer *buffer;
1551                 GtkTextIter start, end;
1552
1553                 buffer = gtk_text_view_get_buffer(textview);
1554                 gtk_text_buffer_get_bounds(buffer, &start, &end);
1555                 gtk_text_buffer_select_range(buffer, &start, &end);
1556         }
1557 }
1558
1559 void messageview_set_position(MessageView *messageview, gint pos)
1560 {
1561         TextView *text;
1562
1563         text = messageview_get_current_textview(messageview);
1564         if (text)
1565                 textview_set_position(text, pos);
1566 }
1567
1568 gboolean messageview_search_string(MessageView *messageview, const gchar *str,
1569                                    gboolean case_sens)
1570 {
1571         TextView *text;
1572
1573         if (messageview->mimeview->type == MIMEVIEW_VIEWER) {
1574                 MimeViewer *viewer = messageview->mimeview->mimeviewer;
1575                 if (viewer && viewer->text_search) {
1576                         return viewer->text_search(viewer, FALSE, str, case_sens);
1577                 }
1578         }
1579
1580         text = messageview_get_current_textview(messageview);
1581         if (text)
1582                 return textview_search_string(text, str, case_sens);
1583         return FALSE;
1584 }
1585
1586 gboolean messageview_search_string_backward(MessageView *messageview,
1587                                             const gchar *str,
1588                                             gboolean case_sens)
1589 {
1590         TextView *text;
1591
1592         if (messageview->mimeview->type == MIMEVIEW_VIEWER) {
1593                 MimeViewer *viewer = messageview->mimeview->mimeviewer;
1594                 if (viewer && viewer->text_search) {
1595                         return viewer->text_search(viewer, TRUE, str, case_sens);
1596                 }
1597         }
1598
1599         text = messageview_get_current_textview(messageview);
1600         if (text)       
1601                 return textview_search_string_backward(text,
1602                                                        str, case_sens);
1603         return FALSE;
1604 }
1605
1606 gboolean messageview_is_visible(MessageView *messageview)
1607 {
1608         if (messageview == NULL)
1609                 return FALSE;
1610         return messageview->visible;
1611 }
1612
1613 static void messageview_save_as(MessageView *messageview)
1614 {
1615         gchar *filename = NULL;
1616         MsgInfo *msginfo;
1617         gchar *src, *dest, *tmp;
1618
1619         if (!messageview->msginfo) return;
1620         msginfo = messageview->msginfo;
1621
1622         if (msginfo->subject) {
1623                 Xstrdup_a(filename, msginfo->subject, return);
1624                 subst_for_filename(filename);
1625         }
1626         if (filename && !g_utf8_validate(filename, -1, NULL)) {
1627                 gchar *oldstr = filename;
1628                 filename = conv_codeset_strdup(filename,
1629                                                conv_get_locale_charset_str(),
1630                                                CS_UTF_8);
1631                 if (!filename) {
1632                         g_warning("messageview_save_as(): failed to convert character set.");
1633                         filename = g_strdup(oldstr);
1634                 }
1635                 dest = filesel_select_file_save(_("Save as"), filename);
1636                 g_free(filename);
1637         } else
1638                 dest = filesel_select_file_save(_("Save as"), filename);
1639         if (!dest) return;
1640         if (is_file_exist(dest)) {
1641                 AlertValue aval;
1642
1643                 aval = alertpanel(_("Overwrite"),
1644                                   _("Overwrite existing file?"),
1645                                   GTK_STOCK_CANCEL, GTK_STOCK_OK, NULL);
1646                 if (G_ALERTALTERNATE != aval) return;
1647         }
1648
1649         src = procmsg_get_message_file(msginfo);
1650         if (copy_file(src, dest, TRUE) < 0) {
1651                 tmp =  g_path_get_basename(dest);
1652                 alertpanel_error(_("Couldn't save the file '%s'."), tmp);
1653                 g_free(tmp);
1654         }
1655         g_free(dest);
1656         g_free(src);
1657 }
1658
1659 static gint messageview_delete_cb(GtkWidget *widget, GdkEventAny *event,
1660                                   MessageView *messageview)
1661 {
1662         messageview_destroy(messageview);
1663         return TRUE;
1664 }
1665
1666 static void messageview_size_allocate_cb(GtkWidget *widget,
1667                                          GtkAllocation *allocation)
1668 {
1669         g_return_if_fail(allocation != NULL);
1670
1671         prefs_common.msgwin_width  = allocation->width;
1672         prefs_common.msgwin_height = allocation->height;
1673 }
1674 #ifndef MAEMO
1675 static gboolean key_pressed(GtkWidget *widget, GdkEventKey *event,
1676                         MessageView *messageview)
1677 {
1678         if (event && event->keyval == GDK_Escape && messageview->window) {
1679                 messageview_destroy(messageview);
1680                 return TRUE;
1681         }
1682
1683         if ((event->state & (GDK_MOD1_MASK|GDK_CONTROL_MASK|GDK_SHIFT_MASK)) != 0)
1684                 return FALSE;
1685
1686         g_signal_stop_emission_by_name(G_OBJECT(widget),
1687                                         "key_press_event");
1688         mimeview_pass_key_press_event(messageview->mimeview, event);
1689         return FALSE;
1690 }
1691 #endif
1692
1693 static void messageview_show_partial_display_cb(NoticeView *noticeview, MessageView *messageview)
1694 {
1695         messageview->show_full_text = TRUE;
1696         main_window_cursor_wait(mainwindow_get_mainwindow());
1697         noticeview_hide(messageview->noticeview);
1698         messageview->partial_display_shown = FALSE;
1699         GTK_EVENTS_FLUSH();
1700         mimeview_handle_cmd(messageview->mimeview, "sc://display_as_text", NULL, NULL);
1701         main_window_cursor_normal(mainwindow_get_mainwindow());
1702 }
1703
1704 void messageview_show_partial_display(MessageView *messageview, MsgInfo *msginfo,
1705                                              size_t length)
1706 {
1707         gchar *msg = g_strdup_printf(_("Show all %s."), to_human_readable((goffset)length));
1708         noticeview_set_icon(messageview->noticeview, STOCK_PIXMAP_NOTICE_WARN);
1709         noticeview_set_text(messageview->noticeview, _("Only the first megabyte of text is shown."));
1710         noticeview_set_button_text(messageview->noticeview, msg);
1711         g_free(msg);
1712         noticeview_set_button_press_callback(messageview->noticeview,
1713                                              G_CALLBACK(messageview_show_partial_display_cb),
1714                                              (gpointer) messageview);
1715         noticeview_show(messageview->noticeview);
1716         messageview->partial_display_shown = TRUE;
1717 }
1718
1719 static void return_receipt_show(NoticeView *noticeview, MsgInfo *msginfo)
1720 {
1721         gchar *addr = NULL;
1722         gboolean from_me = FALSE;
1723         if (msginfo->folder 
1724                 && (folder_has_parent_of_type(msginfo->folder, F_QUEUE)
1725                  || folder_has_parent_of_type(msginfo->folder, F_DRAFT)))
1726                 return;
1727
1728         addr = g_strdup(msginfo->from);
1729         if (addr) {
1730                 extract_address(addr);
1731                 if (account_find_from_address(addr, FALSE)) {
1732                         from_me = TRUE;
1733                 }
1734                 g_free(addr);
1735         }
1736
1737         if (from_me) {
1738                 noticeview_set_icon(noticeview, STOCK_PIXMAP_NOTICE_WARN);
1739                 if (MSG_IS_RETRCPT_GOT(msginfo->flags)) {
1740                         noticeview_set_text(noticeview, _("You got a return receipt for this message : "
1741                                                           "it has been displayed by the recipient."));
1742                 } else {
1743                         noticeview_set_text(noticeview, _("You asked for a return receipt in this message."));
1744                 }
1745                 noticeview_set_button_text(noticeview, NULL);
1746                 noticeview_set_button_press_callback(noticeview, NULL, NULL);
1747         } else {
1748                 noticeview_set_icon(noticeview, STOCK_PIXMAP_NOTICE_WARN);
1749                 noticeview_set_text(noticeview, _("This message asks for a return receipt."));
1750                 noticeview_set_button_text(noticeview, _("Send receipt"));
1751                 noticeview_set_button_press_callback(noticeview,
1752                                                      G_CALLBACK(return_receipt_send_clicked),
1753                                                      (gpointer) msginfo);
1754         }
1755         noticeview_show(noticeview);
1756 }
1757
1758 static void return_receipt_send_clicked(NoticeView *noticeview, MsgInfo *msginfo)
1759 {
1760         MsgInfo *tmpmsginfo;
1761         gchar *file;
1762
1763         file = procmsg_get_message_file_path(msginfo);
1764         if (!file) {
1765                 g_warning("can't get message file path.\n");
1766                 return;
1767         }
1768
1769         tmpmsginfo = procheader_parse_file(file, msginfo->flags, TRUE, TRUE);
1770         tmpmsginfo->folder = msginfo->folder;
1771         tmpmsginfo->msgnum = msginfo->msgnum;
1772
1773         if (disposition_notification_send(tmpmsginfo) >= 0) {
1774                 procmsg_msginfo_set_flags(msginfo, MSG_RETRCPT_SENT, 0);
1775                 noticeview_hide(noticeview);
1776         }               
1777
1778         procmsg_msginfo_free(tmpmsginfo);
1779         g_free(file);
1780 }
1781
1782 static void partial_recv_show(NoticeView *noticeview, MsgInfo *msginfo)
1783 {
1784         gchar *text = NULL;
1785         gchar *button1 = NULL;
1786         gchar *button2 = NULL;
1787         void  *button1_cb = NULL;
1788         void  *button2_cb = NULL;
1789
1790         if (!msginfo->extradata)
1791                 return;
1792         if (!partial_msg_in_uidl_list(msginfo)) {
1793                 text = g_strdup_printf(_("This message has been partially "
1794                                 "retrieved,\nand has been deleted from the "
1795                                 "server."));
1796         } else {
1797                 switch (msginfo->planned_download) {
1798                 case POP3_PARTIAL_DLOAD_UNKN:
1799                         text = g_strdup_printf(_("This message has been "
1800                                         "partially retrieved;\nit is %s."),
1801                                         to_human_readable(
1802                                                 (goffset)(msginfo->total_size)));
1803                         button1 = _("Mark for download");
1804                         button2 = _("Mark for deletion");
1805                         button1_cb = partial_recv_dload_clicked;
1806                         button2_cb = partial_recv_del_clicked;
1807                         break;
1808                 case POP3_PARTIAL_DLOAD_DLOAD:
1809                         text = g_strdup_printf(_("This message has been "
1810                                         "partially retrieved;\nit is %s and "
1811                                         "will be downloaded."),
1812                                         to_human_readable(
1813                                                 (goffset)(msginfo->total_size)));
1814                         button1 = _("Unmark");
1815                         button1_cb = partial_recv_unmark_clicked;
1816                         button2 = _("Mark for deletion");
1817                         button2_cb = partial_recv_del_clicked;
1818                         break;
1819                 case POP3_PARTIAL_DLOAD_DELE:
1820                         text = g_strdup_printf(_("This message has been "
1821                                         "partially retrieved;\nit is %s and "
1822                                         "will be deleted."),
1823                                         to_human_readable(
1824                                                 (goffset)(msginfo->total_size)));
1825                         button1 = _("Mark for download");
1826                         button1_cb = partial_recv_dload_clicked;
1827                         button2 = _("Unmark");
1828                         button2_cb = partial_recv_unmark_clicked;
1829                         break;
1830                 default:
1831                         return;
1832                 }
1833         }
1834         
1835         noticeview_set_icon(noticeview, STOCK_PIXMAP_NOTICE_WARN);
1836         noticeview_set_text(noticeview, text);
1837         g_free(text);
1838         noticeview_set_button_text(noticeview, button1);
1839         noticeview_set_button_press_callback(noticeview,
1840                      G_CALLBACK(button1_cb), (gpointer) msginfo);
1841
1842         noticeview_set_2ndbutton_text(noticeview, button2);
1843         noticeview_set_2ndbutton_press_callback(noticeview,
1844                      G_CALLBACK(button2_cb), (gpointer) msginfo);
1845
1846         noticeview_show(noticeview);
1847 }
1848
1849 static void partial_recv_dload_clicked(NoticeView *noticeview, 
1850                                        MsgInfo *msginfo)
1851 {
1852         if (partial_mark_for_download(msginfo) == 0) {
1853                 partial_recv_show(noticeview, msginfo);
1854         }
1855 }
1856
1857 static void partial_recv_del_clicked(NoticeView *noticeview, 
1858                                        MsgInfo *msginfo)
1859 {
1860         if (partial_mark_for_delete(msginfo) == 0) {
1861                 partial_recv_show(noticeview, msginfo);
1862         }
1863 }
1864
1865 static void partial_recv_unmark_clicked(NoticeView *noticeview, 
1866                                        MsgInfo *msginfo)
1867 {
1868         if (partial_unmark(msginfo) == 0) {
1869                 partial_recv_show(noticeview, msginfo);
1870         }
1871 }
1872
1873 static void select_account_cb(GtkWidget *w, gpointer data)
1874 {
1875         *(gint*)data = combobox_get_active_data(GTK_COMBO_BOX(w));
1876 }
1877
1878 static PrefsAccount *select_account_from_list(GList *ac_list)
1879 {
1880         GtkWidget *optmenu;
1881         gint account_id;
1882
1883         g_return_val_if_fail(ac_list != NULL, NULL);
1884         g_return_val_if_fail(ac_list->data != NULL, NULL);
1885         
1886         optmenu = gtkut_account_menu_new(ac_list,
1887                         G_CALLBACK(select_account_cb),
1888                         &account_id);
1889         if (!optmenu)
1890                 return NULL;
1891         account_id = ((PrefsAccount *) ac_list->data)->account_id;
1892         if (alertpanel_with_widget(
1893                                 _("Return Receipt Notification"),
1894                                 _("The message was sent to several of your "
1895                                   "accounts.\n"
1896                                   "Please choose which account do you want to "
1897                                   "use for sending the receipt notification:"),
1898                                 _("_Cancel"), _("_Send Notification"), NULL,
1899                                 FALSE, G_ALERTDEFAULT, optmenu) != G_ALERTALTERNATE)
1900                 return NULL;
1901         return account_find_from_id(account_id);
1902 }
1903
1904 /* 
1905  * \brief return selected messageview text, when nothing is 
1906  *        selected and message was filtered, return complete text
1907  *
1908  * \param  pointer to Messageview 
1909  *
1910  * \return pointer to text (needs to be free'd by calling func)
1911  */
1912 gchar *messageview_get_selection(MessageView *msgview)
1913 {
1914         TextView *textview;
1915         gchar *text = NULL;
1916         GtkTextView *edit = NULL;
1917         GtkTextBuffer *textbuf;
1918         gint body_pos = 0;
1919         
1920         g_return_val_if_fail(msgview != NULL, NULL);
1921
1922         if (msgview->mimeview->type == MIMEVIEW_VIEWER) {
1923                 MimeViewer *viewer = msgview->mimeview->mimeviewer;
1924                 if (viewer && viewer->get_selection) {
1925                         text = viewer->get_selection(viewer);
1926                         if (text)
1927                                 return text;
1928                 }
1929         }
1930
1931         textview = messageview_get_current_textview(msgview);
1932         g_return_val_if_fail(textview != NULL, NULL);
1933
1934         edit = GTK_TEXT_VIEW(textview->text);
1935         g_return_val_if_fail(edit != NULL, NULL);
1936         body_pos = textview->body_pos;
1937
1938         textbuf = gtk_text_view_get_buffer(edit);
1939
1940         if (gtk_text_buffer_get_selection_bounds(textbuf, NULL, NULL))
1941                 return gtkut_text_view_get_selection(edit);
1942         else if (msgview->filtered) {
1943                 GtkTextIter start_iter, end_iter;
1944                 gtk_text_buffer_get_iter_at_offset(textbuf, &start_iter, body_pos);
1945                 gtk_text_buffer_get_end_iter(textbuf, &end_iter);
1946                 gtk_text_buffer_get_text(textbuf, &start_iter, &end_iter, FALSE);
1947         } else
1948                 text = NULL;
1949
1950         return text;
1951 }
1952
1953 static void save_as_cb(GtkAction *action, gpointer data)
1954 {
1955         MessageView *messageview = (MessageView *)data;
1956         messageview_save_as(messageview);
1957 }
1958
1959 #if defined(USE_GNOMEPRINT) || GTK_CHECK_VERSION(2,10,0)
1960 static void print_mimeview(MimeView *mimeview, gint sel_start, gint sel_end, gint partnum) 
1961 {
1962 #if !defined(USE_GNOMEPRINT) && GTK_CHECK_VERSION(2,10,0)
1963         MainWindow *mainwin;
1964 #endif
1965         if (!mimeview 
1966         ||  !mimeview->textview
1967         ||  !mimeview->textview->text)
1968                 alertpanel_warning(_("Cannot print: the message doesn't "
1969                                      "contain text."));
1970         else {
1971                 gtk_widget_realize(mimeview->textview->text);
1972                 if (partnum > 0) {
1973                         mimeview_select_part_num(mimeview, partnum);
1974                 }
1975                 if (mimeview->type == MIMEVIEW_VIEWER) {
1976                         MimeViewer *viewer = mimeview->mimeviewer;
1977                         if (viewer && viewer->print) {
1978                                 viewer->print(viewer);
1979                                 return;
1980                         }
1981                 }
1982                 if (sel_start != -1 && sel_end != -1) {
1983                         GtkTextIter start, end;
1984                         GtkTextView *text = GTK_TEXT_VIEW(mimeview->textview->text);
1985                         GtkTextBuffer *buffer = gtk_text_view_get_buffer(text);
1986
1987                         gtk_text_buffer_get_iter_at_offset(buffer, &start, sel_start);
1988                         gtk_text_buffer_get_iter_at_offset(buffer, &end, sel_end);
1989                         gtk_text_buffer_select_range(buffer, &start, &end);
1990                 }
1991 #if defined(USE_GNOMEPRINT)
1992                 gedit_print(GTK_TEXT_VIEW(mimeview->textview->text));
1993 #else
1994                 /* TODO: Get the real parent window, not the main window */
1995                 mainwin = mainwindow_get_mainwindow();
1996                 printing_print(GTK_TEXT_VIEW(mimeview->textview->text),
1997                                mainwin ? GTK_WINDOW(mainwin->window) : NULL,
1998                                 sel_start, sel_end);
1999 #endif
2000         }
2001 }
2002
2003 void messageview_print(MsgInfo *msginfo, gboolean all_headers, 
2004                         gint sel_start, gint sel_end, gint partnum) 
2005 {
2006         PangoFontDescription *font_desc = NULL;
2007         MessageView *tmpview = messageview_create_with_new_window_visible(
2008                                 mainwindow_get_mainwindow(), FALSE);
2009
2010         if (prefs_common.use_different_print_font) {
2011                 font_desc = pango_font_description_from_string
2012                                                 (prefs_common.printfont);
2013         } else {
2014                 font_desc = pango_font_description_from_string
2015                                                 (prefs_common.textfont);
2016         }
2017         if (font_desc) {
2018                 gtk_widget_modify_font(tmpview->mimeview->textview->text, 
2019                         font_desc);
2020                 pango_font_description_free(font_desc);
2021         }
2022
2023         tmpview->all_headers = all_headers;
2024         if (msginfo && messageview_show(tmpview, msginfo, 
2025                 tmpview->all_headers) >= 0) {
2026                         print_mimeview(tmpview->mimeview, 
2027                                 sel_start, sel_end, partnum);
2028         }
2029         messageview_destroy(tmpview);
2030 }
2031 #endif
2032
2033 #if GTK_CHECK_VERSION(2,10,0) && !defined(USE_GNOMEPRINT)
2034 static void page_setup_cb(GtkAction *action, gpointer data)
2035 {
2036         MessageView *messageview = (MessageView *)data;
2037         printing_page_setup(messageview ?
2038                             GTK_WINDOW(messageview->window) : NULL);
2039 }
2040 #endif
2041
2042 static void print_cb(GtkAction *action, gpointer data)
2043 {
2044         MessageView *messageview = (MessageView *)data;
2045 #if !defined(USE_GNOMEPRINT) && !GTK_CHECK_VERSION(2,10,0)
2046         gchar *cmdline = NULL;
2047         gchar *p;
2048 #else
2049         gint sel_start = -1, sel_end = -1, partnum = 0;
2050 #endif
2051
2052         if (!messageview->msginfo) return;
2053
2054 #if !defined(USE_GNOMEPRINT) && !GTK_CHECK_VERSION(2,10,0)
2055         cmdline = input_dialog(_("Print"),
2056                                _("Enter the print command-line:\n"
2057                                  "('%s' will be replaced with file name)"),
2058                                prefs_common.print_cmd);
2059         if (!cmdline) return;
2060         if (!(p = strchr(cmdline, '%')) || *(p + 1) != 's' ||
2061             strchr(p + 2, '%')) {
2062                 alertpanel_error(_("Print command-line is invalid:\n'%s'"),
2063                                  cmdline);
2064                 g_free(cmdline);
2065                 return;
2066         }
2067         procmsg_print_message(messageview->msginfo, cmdline);
2068         g_free(cmdline);
2069 #else
2070         partnum = mimeview_get_selected_part_num(messageview->mimeview);
2071         textview_get_selection_offsets(messageview->mimeview->textview,
2072                 &sel_start, &sel_end);
2073         messageview_print(messageview->msginfo, messageview->all_headers, 
2074                 sel_start, sel_end, partnum);
2075 #endif
2076 }
2077
2078 static void close_cb(GtkAction *action, gpointer data)
2079 {
2080         MessageView *messageview = (MessageView *)data;
2081         messageview_destroy(messageview);
2082 }
2083
2084 static void copy_cb(GtkAction *action, gpointer data)
2085 {
2086         MessageView *messageview = (MessageView *)data;
2087         messageview_copy_clipboard(messageview);
2088 }
2089
2090 static void allsel_cb(GtkAction *action, gpointer data)
2091 {
2092         MessageView *messageview = (MessageView *)data;
2093         messageview_select_all(messageview);
2094 }
2095
2096 static void search_cb(GtkAction *action, gpointer data)
2097 {
2098         MessageView *messageview = (MessageView *)data;
2099         message_search(messageview);
2100 }
2101
2102 static void prev_cb(GtkAction *action, gpointer data)
2103 {
2104         MessageView *messageview = (MessageView *)data;
2105         messageview->updating = TRUE;
2106         summary_step(messageview->mainwin->summaryview, GTK_SCROLL_STEP_BACKWARD);
2107         messageview->updating = FALSE;
2108
2109         if (messageview->deferred_destroy) {
2110                 debug_print("messageview got away!\n");
2111                 messageview_destroy(messageview);
2112                 return;
2113         }
2114         if (messageview->mainwin->summaryview->selected) {
2115 #ifndef GENERIC_UMPC
2116                 MsgInfo * msginfo = summary_get_selected_msg(messageview->mainwin->summaryview);
2117                        
2118                 if (msginfo)
2119                         messageview_show(messageview, msginfo, 
2120                                          messageview->all_headers);
2121 #endif
2122         } else {
2123                 gtk_widget_destroy(messageview->window);
2124         }
2125 }
2126
2127 static void next_cb(GtkAction *action, gpointer data)
2128 {
2129         MessageView *messageview = (MessageView *)data;
2130         messageview->updating = TRUE;
2131         summary_step(messageview->mainwin->summaryview, GTK_SCROLL_STEP_FORWARD);
2132         messageview->updating = FALSE;
2133
2134         if (messageview->deferred_destroy) {
2135                 debug_print("messageview got away!\n");
2136                 messageview_destroy(messageview);
2137                 return;
2138         }
2139         if (messageview->mainwin->summaryview->selected) {
2140 #ifndef GENERIC_UMPC
2141                 MsgInfo * msginfo = summary_get_selected_msg(messageview->mainwin->summaryview);
2142                        
2143                 if (msginfo)
2144                         messageview_show(messageview, msginfo, 
2145                                          messageview->all_headers);
2146 #endif
2147         } else {
2148                 gtk_widget_destroy(messageview->window);
2149         }
2150 }
2151
2152 static void prev_unread_cb(GtkAction *action, gpointer data)
2153 {
2154         MessageView *messageview = (MessageView *)data;
2155         messageview->updating = TRUE;
2156         summary_select_prev_unread(messageview->mainwin->summaryview);
2157         messageview->updating = FALSE;
2158
2159         if (messageview->deferred_destroy) {
2160                 debug_print("messageview got away!\n");
2161                 messageview_destroy(messageview);
2162                 return;
2163         }
2164         if (messageview->mainwin->summaryview->selected) {
2165 #ifndef GENERIC_UMPC
2166                 MsgInfo * msginfo = summary_get_selected_msg(messageview->mainwin->summaryview);
2167                        
2168                 if (msginfo)
2169                         messageview_show(messageview, msginfo, 
2170                                          messageview->all_headers);
2171 #endif
2172         } else {
2173                 gtk_widget_destroy(messageview->window);
2174         }
2175 }
2176
2177 static void next_unread_cb(GtkAction *action, gpointer data)
2178 {
2179         MessageView *messageview = (MessageView *)data;
2180         messageview->updating = TRUE;
2181         summary_select_next_unread(messageview->mainwin->summaryview);
2182         messageview->updating = FALSE;
2183
2184         if (messageview->deferred_destroy) {
2185                 debug_print("messageview got away!\n");
2186                 messageview_destroy(messageview);
2187                 return;
2188         }
2189         if (messageview->mainwin->summaryview->selected) {
2190 #ifndef GENERIC_UMPC
2191                 MsgInfo * msginfo = summary_get_selected_msg(messageview->mainwin->summaryview);
2192                        
2193                 if (msginfo)
2194                         messageview_show(messageview, msginfo, 
2195                                          messageview->all_headers);
2196 #endif
2197         } else {
2198                 gtk_widget_destroy(messageview->window);
2199         }
2200 }
2201
2202 static void prev_new_cb(GtkAction *action, gpointer data)
2203 {
2204         MessageView *messageview = (MessageView *)data;
2205         messageview->updating = TRUE;
2206         summary_select_prev_new(messageview->mainwin->summaryview);
2207         messageview->updating = FALSE;
2208
2209         if (messageview->deferred_destroy) {
2210                 debug_print("messageview got away!\n");
2211                 messageview_destroy(messageview);
2212                 return;
2213         }
2214         if (messageview->mainwin->summaryview->selected) {
2215 #ifndef GENERIC_UMPC
2216                 MsgInfo * msginfo = summary_get_selected_msg(messageview->mainwin->summaryview);
2217                        
2218                 if (msginfo)
2219                         messageview_show(messageview, msginfo, 
2220                                          messageview->all_headers);
2221 #endif
2222         } else {
2223                 gtk_widget_destroy(messageview->window);
2224         }
2225 }
2226
2227 static void next_new_cb(GtkAction *action, gpointer data)
2228 {
2229         MessageView *messageview = (MessageView *)data;
2230         messageview->updating = TRUE;
2231         summary_select_next_new(messageview->mainwin->summaryview);
2232         messageview->updating = FALSE;
2233
2234         if (messageview->deferred_destroy) {
2235                 debug_print("messageview got away!\n");
2236                 messageview_destroy(messageview);
2237                 return;
2238         }
2239         if (messageview->mainwin->summaryview->selected) {
2240 #ifndef GENERIC_UMPC
2241                 MsgInfo * msginfo = summary_get_selected_msg(messageview->mainwin->summaryview);
2242                        
2243                 if (msginfo)
2244                         messageview_show(messageview, msginfo, 
2245                                          messageview->all_headers);
2246 #endif
2247         } else {
2248                 gtk_widget_destroy(messageview->window);
2249         }
2250 }
2251
2252 static void prev_marked_cb(GtkAction *action, gpointer data)
2253 {
2254         MessageView *messageview = (MessageView *)data;
2255         messageview->updating = TRUE;
2256         summary_select_prev_marked(messageview->mainwin->summaryview);
2257         messageview->updating = FALSE;
2258
2259         if (messageview->deferred_destroy) {
2260                 debug_print("messageview got away!\n");
2261                 messageview_destroy(messageview);
2262                 return;
2263         }
2264         if (messageview->mainwin->summaryview->selected) {
2265 #ifndef GENERIC_UMPC
2266                 MsgInfo * msginfo = summary_get_selected_msg(messageview->mainwin->summaryview);
2267                        
2268                 if (msginfo)
2269                         messageview_show(messageview, msginfo, 
2270                                          messageview->all_headers);
2271 #endif
2272         } else {
2273                 gtk_widget_destroy(messageview->window);
2274         }
2275 }
2276
2277 static void next_marked_cb(GtkAction *action, gpointer data)
2278 {
2279         MessageView *messageview = (MessageView *)data;
2280         messageview->updating = TRUE;
2281         summary_select_next_marked(messageview->mainwin->summaryview);
2282         messageview->updating = FALSE;
2283
2284         if (messageview->deferred_destroy) {
2285                 debug_print("messageview got away!\n");
2286                 messageview_destroy(messageview);
2287                 return;
2288         }
2289         if (messageview->mainwin->summaryview->selected) {
2290 #ifndef GENERIC_UMPC
2291                 MsgInfo * msginfo = summary_get_selected_msg(messageview->mainwin->summaryview);
2292                        
2293                 if (msginfo)
2294                         messageview_show(messageview, msginfo, 
2295                                          messageview->all_headers);
2296 #endif
2297         } else {
2298                 gtk_widget_destroy(messageview->window);
2299         }
2300 }
2301
2302 static void prev_labeled_cb(GtkAction *action, gpointer data)
2303 {
2304         MessageView *messageview = (MessageView *)data;
2305         messageview->updating = TRUE;
2306         summary_select_prev_labeled(messageview->mainwin->summaryview);
2307         messageview->updating = FALSE;
2308
2309         if (messageview->deferred_destroy) {
2310                 debug_print("messageview got away!\n");
2311                 messageview_destroy(messageview);
2312                 return;
2313         }
2314         if (messageview->mainwin->summaryview->selected) {
2315 #ifndef GENERIC_UMPC
2316                 MsgInfo * msginfo = summary_get_selected_msg(messageview->mainwin->summaryview);
2317                        
2318                 if (msginfo)
2319                         messageview_show(messageview, msginfo, 
2320                                          messageview->all_headers);
2321 #endif
2322         } else {
2323                 gtk_widget_destroy(messageview->window);
2324         }
2325 }
2326
2327 static void next_labeled_cb(GtkAction *action, gpointer data)
2328 {
2329         MessageView *messageview = (MessageView *)data;
2330         messageview->updating = TRUE;
2331         summary_select_next_labeled(messageview->mainwin->summaryview);
2332         messageview->updating = FALSE;
2333
2334         if (messageview->deferred_destroy) {
2335                 debug_print("messageview got away!\n");
2336                 messageview_destroy(messageview);
2337                 return;
2338         }
2339         if (messageview->mainwin->summaryview->selected) {
2340 #ifndef GENERIC_UMPC
2341                 MsgInfo * msginfo = summary_get_selected_msg(messageview->mainwin->summaryview);
2342                        
2343                 if (msginfo)
2344                         messageview_show(messageview, msginfo, 
2345                                          messageview->all_headers);
2346 #endif
2347         } else {
2348                 gtk_widget_destroy(messageview->window);
2349         }
2350 }
2351
2352 static void last_read_cb(GtkAction *action, gpointer data)
2353 {
2354         MessageView *messageview = (MessageView *)data;
2355         messageview->updating = TRUE;
2356         summary_select_last_read(messageview->mainwin->summaryview);
2357         messageview->updating = FALSE;
2358
2359         if (messageview->deferred_destroy) {
2360                 debug_print("messageview got away!\n");
2361                 messageview_destroy(messageview);
2362                 return;
2363         }
2364         if (messageview->mainwin->summaryview->selected) {
2365 #ifndef GENERIC_UMPC
2366                 MsgInfo * msginfo = summary_get_selected_msg(messageview->mainwin->summaryview);
2367                        
2368                 if (msginfo)
2369                         messageview_show(messageview, msginfo, 
2370                                          messageview->all_headers);
2371 #endif
2372         } else {
2373                 gtk_widget_destroy(messageview->window);
2374         }
2375 }
2376
2377 static void parent_cb(GtkAction *action, gpointer data)
2378 {
2379         MessageView *messageview = (MessageView *)data;
2380         messageview->updating = TRUE;
2381         summary_select_parent(messageview->mainwin->summaryview);
2382         messageview->updating = FALSE;
2383
2384         if (messageview->deferred_destroy) {
2385                 debug_print("messageview got away!\n");
2386                 messageview_destroy(messageview);
2387                 return;
2388         }
2389         if (messageview->mainwin->summaryview->selected) {
2390 #ifndef GENERIC_UMPC
2391                 MsgInfo * msginfo = summary_get_selected_msg(messageview->mainwin->summaryview);
2392                        
2393                 if (msginfo)
2394                         messageview_show(messageview, msginfo, 
2395                                          messageview->all_headers);
2396 #endif
2397         } else {
2398                 gtk_widget_destroy(messageview->window);
2399         }
2400 }
2401
2402 static void goto_unread_folder_cb(GtkAction *action, gpointer data)
2403 {
2404         MessageView *messageview = (MessageView *)data;
2405         messageview->updating = TRUE;
2406         folderview_select_next_unread(messageview->mainwin->folderview, FALSE);
2407         messageview->updating = FALSE;
2408
2409         if (messageview->deferred_destroy) {
2410                 debug_print("messageview got away!\n");
2411                 messageview_destroy(messageview);
2412                 return;
2413         }
2414         if (messageview->mainwin->summaryview->selected) {
2415 #ifndef GENERIC_UMPC
2416                 MsgInfo * msginfo = summary_get_selected_msg(messageview->mainwin->summaryview);
2417                        
2418                 if (msginfo)
2419                         messageview_show(messageview, msginfo, 
2420                                          messageview->all_headers);
2421 #endif
2422         } else {
2423                 gtk_widget_destroy(messageview->window);
2424         }
2425 }
2426
2427 static void goto_folder_cb(GtkAction *action, gpointer data)
2428 {
2429         MessageView *messageview = (MessageView *)data;
2430         messageview->updating = TRUE;
2431         FolderItem *to_folder;
2432         messageview->updating = FALSE;
2433
2434         to_folder = foldersel_folder_sel(NULL, FOLDER_SEL_ALL, NULL, FALSE);
2435
2436         if (to_folder) {
2437                 folderview_select(messageview->mainwin->folderview, to_folder);
2438
2439                 if (messageview->deferred_destroy) {
2440                         debug_print("messageview got away!\n");
2441                         messageview_destroy(messageview);
2442                         return;
2443                 }
2444                 if (messageview->mainwin->summaryview->selected) {
2445 #ifndef GENERIC_UMPC
2446                         MsgInfo * msginfo = summary_get_selected_msg(messageview->mainwin->summaryview);
2447                        
2448                         if (msginfo)
2449                                 messageview_show(messageview, msginfo, 
2450                                                  messageview->all_headers);
2451 #endif
2452                 } else {
2453                         gtk_widget_destroy(messageview->window);
2454                 }
2455         }
2456 }
2457
2458 static void set_charset_cb(GtkAction *action, GtkRadioAction *current, gpointer data)
2459 {
2460         MessageView *messageview = (MessageView *)data;
2461         gboolean active = gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (current));
2462         gint value = gtk_radio_action_get_current_value (GTK_RADIO_ACTION (current));
2463         const gchar *charset;
2464
2465         if (active) {
2466                 charset = conv_get_charset_str((CharSet)value);
2467                 g_free(messageview->forced_charset);
2468                 messageview->forced_charset = g_strdup(charset);
2469                 procmime_force_charset(charset);
2470                 
2471                 messageview_show(messageview, messageview->msginfo, FALSE);
2472         }
2473 }
2474
2475 static void set_decode_cb(GtkAction *action, GtkRadioAction *current, gpointer data)
2476 {
2477         MessageView *messageview = (MessageView *)data;
2478         gboolean active = gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (current));
2479         gint value = gtk_radio_action_get_current_value (GTK_RADIO_ACTION (current));
2480
2481         if (active) {
2482                 messageview->forced_encoding = (EncodingType)value;
2483
2484                 messageview_show(messageview, messageview->msginfo, FALSE);
2485                 debug_print("forced encoding: %d\n", value);
2486         }
2487 }
2488
2489
2490 static void view_source_cb(GtkAction *action, gpointer data)
2491 {
2492         MessageView *messageview = (MessageView *)data;
2493         SourceWindow *srcwin;
2494
2495         if (!messageview->msginfo) return;
2496
2497         srcwin = source_window_create();
2498         source_window_show_msg(srcwin, messageview->msginfo);
2499         source_window_show(srcwin);
2500 }
2501
2502 static void show_all_header_cb(GtkToggleAction *action, gpointer data)
2503 {
2504         MessageView *messageview = (MessageView *)data;
2505         MsgInfo *msginfo = messageview->msginfo;
2506
2507         if (messageview->mimeview->textview &&
2508             messageview->mimeview->textview->loading) {
2509                 return;
2510         }
2511         if (messageview->updating)
2512                 return;
2513
2514         messageview->all_headers = 
2515                         gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action));
2516         if (!msginfo) return;
2517         messageview->msginfo = NULL;
2518         messageview_show(messageview, msginfo,gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action)));
2519         procmsg_msginfo_free(msginfo);
2520         main_window_set_menu_sensitive(messageview->mainwin);
2521 }
2522
2523 static void msg_hide_quotes_cb(GtkToggleAction *action, gpointer data)
2524 {
2525         MessageView *messageview = (MessageView *)data;
2526         MsgInfo *msginfo = messageview->msginfo;
2527         static gboolean updating_menu = FALSE;
2528
2529         if (updating_menu)
2530                 return;
2531         if (gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action))) {
2532                 const gchar *a_name = gtk_action_get_name(GTK_ACTION(action));
2533                 if (!strcmp(a_name, "View/Quotes/FoldAll")) prefs_common.hide_quotes = 1;
2534                 else if (!strcmp(a_name, "View/Quotes/Fold2")) prefs_common.hide_quotes = 2;
2535                 else if (!strcmp(a_name, "View/Quotes/Fold3")) prefs_common.hide_quotes = 3;
2536         } else
2537                 prefs_common.hide_quotes = 0;
2538         
2539         updating_menu=TRUE;
2540         
2541         cm_toggle_menu_set_active_full(messageview->ui_manager, "Menu/View/Quotes/FoldAll", (prefs_common.hide_quotes == 1));
2542         cm_toggle_menu_set_active_full(messageview->ui_manager, "Menu/View/Quotes/Fold2", (prefs_common.hide_quotes == 2));
2543         cm_toggle_menu_set_active_full(messageview->ui_manager, "Menu/View/Quotes/Fold3", (prefs_common.hide_quotes == 3));
2544
2545         updating_menu=FALSE;
2546         if (!msginfo) return;
2547         messageview->msginfo = NULL;
2548         messageview_show(messageview, msginfo,
2549                          messageview->all_headers);
2550         procmsg_msginfo_free(msginfo);
2551         
2552         /* update main window */
2553         main_window_set_menu_sensitive(messageview->mainwin);
2554         summary_redisplay_msg(messageview->mainwin->summaryview);
2555 }
2556 #undef SET_CHECK_MENU_ACTIVE
2557
2558 static void compose_cb(GtkAction *action, gpointer data)
2559 {
2560         MessageView *messageview = (MessageView *)data;
2561         PrefsAccount *ac = NULL;
2562         FolderItem *item = NULL;
2563
2564         if (messageview->msginfo)
2565                 item = messageview->msginfo->folder;
2566
2567         if (item) {
2568                 ac = account_find_from_item(item);
2569                 if (ac && ac->protocol == A_NNTP &&
2570                     item->stype == F_NEWS) {
2571                         compose_new(ac, item->path, NULL);
2572                         return;
2573                 }
2574         }
2575
2576         compose_new(ac, NULL, NULL);
2577 }
2578
2579 #define DO_ACTION(name, act)    { if (!strcmp(a_name, name)) action = act; }
2580
2581 static void reply_cb(GtkAction *gaction, gpointer data)
2582 {
2583         MessageView *messageview = (MessageView *)data;
2584         GSList *msginfo_list = NULL;
2585         gint action = COMPOSE_REPLY;
2586         const gchar *a_name = gtk_action_get_name(gaction);
2587         
2588         g_return_if_fail(messageview->msginfo);
2589
2590         DO_ACTION("Message/Reply", COMPOSE_REPLY);
2591         DO_ACTION("Message/ReplyTo/All", COMPOSE_REPLY_TO_ALL);
2592         DO_ACTION("Message/ReplyTo/Sender", COMPOSE_REPLY_TO_SENDER);
2593         DO_ACTION("Message/ReplyTo/List", COMPOSE_REPLY_TO_LIST);
2594         DO_ACTION("Message/Forward", COMPOSE_FORWARD_INLINE);
2595         DO_ACTION("Message/ForwardAtt", COMPOSE_FORWARD_AS_ATTACH);
2596         DO_ACTION("Message/Redirect", COMPOSE_REDIRECT);
2597
2598         msginfo_list = g_slist_append(msginfo_list, messageview->msginfo);
2599         compose_reply_from_messageview(messageview, msginfo_list, action);
2600         g_slist_free(msginfo_list);
2601 }
2602
2603 static void addressbook_open_cb(GtkAction *action, gpointer data)
2604 {
2605         addressbook_open(NULL);
2606 }
2607
2608 static void add_address_cb(GtkAction *action, gpointer data)
2609 {
2610         MessageView *messageview = (MessageView *)data;
2611         MsgInfo *msginfo, *full_msginfo;
2612         gchar *from;
2613         GtkWidget *image = NULL;
2614         GdkPixbuf *picture = NULL;
2615
2616         if (!messageview->msginfo || !messageview->msginfo->from) 
2617                 return;
2618
2619         msginfo = messageview->msginfo;
2620         Xstrdup_a(from, msginfo->from, return);
2621         eliminate_address_comment(from);
2622         extract_address(from);
2623         
2624         full_msginfo = procmsg_msginfo_get_full_info(msginfo);
2625         if (full_msginfo &&
2626             full_msginfo->extradata &&
2627             full_msginfo->extradata->face) {
2628                 image = face_get_from_header(full_msginfo->extradata->face);
2629         } 
2630 #if HAVE_LIBCOMPFACE
2631         else if (full_msginfo &&
2632                  full_msginfo->extradata &&
2633                  full_msginfo->extradata->xface) {
2634                 image = xface_get_from_header(full_msginfo->extradata->xface,
2635                                 &messageview->mainwin->summaryview->ctree->style->white,
2636                                 messageview->window->window);   
2637         }
2638 #endif
2639         procmsg_msginfo_free(full_msginfo);
2640         if (image)
2641                 picture = gtk_image_get_pixbuf(GTK_IMAGE(image));
2642
2643         addressbook_add_contact(msginfo->fromname, from, NULL, picture);
2644
2645         if (image)
2646                 gtk_widget_destroy(image);
2647 }
2648
2649 static void create_filter_cb(GtkAction *gaction, gpointer data)
2650 {
2651         MessageView *messageview = (MessageView *)data;
2652         FolderItem * item;
2653         gint action = -1;
2654         const gchar *a_name = gtk_action_get_name(gaction);
2655
2656         if (!messageview->msginfo) return;
2657
2658         DO_ACTION("Tools/CreateFilterRule/Automatically", FILTER_BY_AUTO);
2659         DO_ACTION("Tools/CreateFilterRule/ByFrom", FILTER_BY_FROM);
2660         DO_ACTION("Tools/CreateFilterRule/ByTo", FILTER_BY_TO);
2661         DO_ACTION("Tools/CreateFilterRule/BySubject", FILTER_BY_SUBJECT);
2662         
2663         item = messageview->msginfo->folder;
2664         summary_msginfo_filter_open(item,  messageview->msginfo,
2665                                     (PrefsFilterType)action, 0);
2666 }
2667
2668 static void create_processing_cb(GtkAction *gaction, gpointer data)
2669 {
2670         MessageView *messageview = (MessageView *)data;
2671         FolderItem * item;
2672         gint action = -1;
2673         const gchar *a_name = gtk_action_get_name(gaction);
2674         
2675         if (!messageview->msginfo) return;
2676         
2677         DO_ACTION("Tools/CreateProcessingRule/Automatically", FILTER_BY_AUTO);
2678         DO_ACTION("Tools/CreateProcessingRule/ByFrom", FILTER_BY_FROM);
2679         DO_ACTION("Tools/CreateProcessingRule/ByTo", FILTER_BY_TO);
2680         DO_ACTION("Tools/CreateProcessingRule/BySubject", FILTER_BY_SUBJECT);
2681
2682         item = messageview->msginfo->folder;
2683         summary_msginfo_filter_open(item,  messageview->msginfo,
2684                                     (PrefsFilterType)action, 1);
2685 }
2686
2687 static void open_urls_cb(GtkAction *action, gpointer data)
2688 {
2689         MessageView *messageview = (MessageView *)data;
2690         messageview_list_urls(messageview);
2691 }
2692
2693 static void about_cb(GtkAction *gaction, gpointer data)
2694 {
2695         about_show();
2696 }
2697
2698 static gboolean messageview_update_msg(gpointer source, gpointer data)
2699 {
2700         MsgInfoUpdate *msginfo_update = (MsgInfoUpdate *) source;
2701         MessageView *messageview = (MessageView *)data;
2702
2703         if (messageview->msginfo != msginfo_update->msginfo)
2704                 return FALSE;
2705
2706         if (msginfo_update->flags & MSGINFO_UPDATE_DELETED) {
2707                 MsgInfo *old_msginfo = messageview->msginfo;
2708                 messageview_clear(messageview);
2709                 messageview_update(messageview, old_msginfo);
2710         }
2711
2712         return FALSE;
2713 }
2714
2715 void messageview_set_menu_sensitive(MessageView *messageview)
2716 {
2717         if (!messageview || !messageview->new_window) 
2718                 return;
2719         /* do some smart things */
2720         if (!messageview->menubar) return;
2721
2722         cm_toggle_menu_set_active_full(messageview->ui_manager, "Menu/View/Quotes/FoldAll", (prefs_common.hide_quotes == 1));
2723         cm_toggle_menu_set_active_full(messageview->ui_manager, "Menu/View/Quotes/Fold2", (prefs_common.hide_quotes == 2));
2724         cm_toggle_menu_set_active_full(messageview->ui_manager, "Menu/View/Quotes/Fold3", (prefs_common.hide_quotes == 3));
2725 }
2726
2727 void messageview_learn (MessageView *msgview, gboolean is_spam)
2728 {
2729         if (is_spam) {
2730                 if (procmsg_spam_learner_learn(msgview->msginfo, NULL, TRUE) == 0)
2731                         procmsg_msginfo_set_flags(msgview->msginfo, MSG_SPAM, 0);
2732                 else
2733                         log_error(LOG_PROTOCOL, _("An error happened while learning.\n"));
2734                 
2735         } else {
2736                 if (procmsg_spam_learner_learn(msgview->msginfo, NULL, FALSE) == 0)
2737                         procmsg_msginfo_unset_flags(msgview->msginfo, MSG_SPAM, 0);
2738                 else
2739                         log_error(LOG_PROTOCOL, _("An error happened while learning.\n"));
2740         }
2741         if (msgview->toolbar)
2742                 toolbar_set_learn_button
2743                         (msgview->toolbar,
2744                          MSG_IS_SPAM(msgview->msginfo->flags)?LEARN_HAM:LEARN_SPAM);
2745         else
2746                 toolbar_set_learn_button
2747                         (msgview->mainwin->toolbar,
2748                          MSG_IS_SPAM(msgview->msginfo->flags)?LEARN_HAM:LEARN_SPAM);
2749 }
2750
2751 void messageview_list_urls (MessageView *msgview)
2752 {
2753         GSList *cur = msgview->mimeview->textview->uri_list;
2754         GSList *newlist = NULL;
2755         GHashTable *uri_hashtable = g_hash_table_new(g_str_hash, g_str_equal); 
2756         for (; cur; cur = cur->next) {
2757                 ClickableText *uri = (ClickableText *)cur->data;
2758                 if (uri->uri &&
2759                     (!g_ascii_strncasecmp(uri->uri, "ftp.", 4) ||
2760                      !g_ascii_strncasecmp(uri->uri, "ftp:", 4) ||
2761                      !g_ascii_strncasecmp(uri->uri, "www.", 4) ||
2762                      !g_ascii_strncasecmp(uri->uri, "http:", 5) ||
2763                      !g_ascii_strncasecmp(uri->uri, "https:", 6)))
2764                 {
2765                         if(g_hash_table_lookup(uri_hashtable, uri->uri))
2766                                 continue;
2767                         
2768                         newlist = g_slist_prepend(newlist, uri);
2769                         g_hash_table_insert(uri_hashtable, uri->uri,
2770                                             GUINT_TO_POINTER(g_str_hash(uri->uri)));
2771                 }
2772         }
2773         newlist = g_slist_reverse(newlist);
2774         uri_opener_open(msgview, newlist);
2775         g_slist_free(newlist);
2776         g_hash_table_destroy(uri_hashtable);
2777 }