Use plain text body quote in html too
[modest] / src / modest-ui-actions.h
1 /* Copyright (c) 2006, Nokia Corporation
2  * All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met:
7  *
8  * * Redistributions of source code must retain the above copyright
9  *   notice, this list of conditions and the following disclaimer.
10  * * Redistributions in binary form must reproduce the above copyright
11  *   notice, this list of conditions and the following disclaimer in the
12  *   documentation and/or other materials provided with the distribution.
13  * * Neither the name of the Nokia Corporation nor the names of its
14  *   contributors may be used to endorse or promote products derived from
15  *   this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
18  * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
20  * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
21  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
24  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
25  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
26  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29
30 #ifndef __MODEST_UI_ACTIONS_H__
31 #define __MODEST_UI_ACTIONS_H__
32
33 #include <widgets/modest-main-window.h>
34 #include <widgets/modest-msg-edit-window.h>
35 #include <widgets/modest-recpt-view.h>
36 #include "modest-mail-operation.h"
37 #include "modest-tny-send-queue.h"
38 #include "modest-plugin-ui-actions.h"
39
40 G_BEGIN_DECLS
41
42 /* Menu & toolbar actions */
43 void     modest_ui_actions_on_about         (GtkAction *action, ModestWindow *win);
44
45 void     modest_ui_actions_refresh_message_window_after_delete (ModestMsgViewWindow* win);
46
47 void     modest_ui_actions_on_delete_message     (GtkAction *action, ModestWindow *win);
48
49 gboolean modest_ui_actions_on_edit_mode_delete_message (ModestWindow *win);
50
51 gboolean modest_ui_actions_on_edit_mode_delete_folder (ModestWindow *win);
52
53 void     modest_ui_actions_on_delete_message_or_folder (GtkAction *action, ModestWindow *win);
54
55 void     modest_ui_actions_on_quit          (GtkAction *action, ModestWindow *win);
56
57 void     modest_ui_actions_on_close_window  (GtkAction *action, ModestWindow *win);
58
59 void     modest_ui_actions_on_new_account      (GtkAction *action, ModestWindow *win);
60
61 void     modest_ui_actions_on_accounts      (GtkAction *action, ModestWindow *win);
62
63 void     modest_ui_actions_on_smtp_servers  (GtkAction *action, ModestWindow *win);
64
65 void     modest_ui_actions_add_to_contacts   (GtkAction *action, ModestWindow *win);
66 void     modest_ui_actions_on_add_to_contacts   (GtkAction *action, ModestWindow *win);
67
68 void     modest_ui_actions_on_select_contacts (GtkAction *action, ModestMsgEditWindow *win);
69
70 void     modest_ui_actions_on_open_addressbook (GtkAction *action, ModestWindow *win);
71
72 void     modest_ui_actions_on_check_names (GtkAction *action, ModestMsgEditWindow *win);
73
74 void     modest_ui_actions_on_new_msg       (GtkAction *action, ModestWindow *win);
75
76 void     modest_ui_actions_on_new_msg_or_folder (GtkAction *action, ModestWindow *win);
77
78 void     modest_ui_actions_on_open           (GtkAction *action, ModestWindow *win);
79
80 void     modest_ui_actions_on_reply         (GtkAction *action, ModestWindow *win);
81
82 void     modest_ui_actions_on_forward       (GtkAction *action, ModestWindow *win);
83
84 void     modest_ui_actions_on_sort          (GtkAction *action, ModestWindow *window);
85
86 void     modest_ui_actions_on_reply_all     (GtkAction *action, ModestWindow *win);
87
88 void     modest_ui_actions_on_next          (GtkAction *action, ModestWindow *main_window);
89
90 void     modest_ui_actions_on_prev          (GtkAction *action, ModestWindow *main_window);
91
92 void     modest_ui_actions_on_details       (GtkAction *action, ModestWindow *win);
93
94 gboolean     modest_ui_actions_on_edit_mode_move_to       (ModestWindow *win);
95
96 void     modest_ui_actions_on_move_to       (GtkAction *action, ModestWindow *win);
97
98 void     modest_ui_actions_on_settings      (GtkAction *action, ModestWindow *win);
99
100 /**
101  * modest_ui_actions_on_help:
102  * @action: a #GtkAction
103  * @win: a #ModestWindow
104  * 
105  * Shows the help dialog
106  **/
107 void     modest_ui_actions_on_help          (GtkAction *action, GtkWindow *win);
108
109
110 /**
111  * modest_ui_actions_on_csm_elp:
112  * @action: a #GtkAction
113  * @win: a #ModestWindow
114  * 
115  * Shows the help dialog for folder view CSM. It shows the help ID
116  * which refers to the currently selected folder if any
117  **/
118 void     modest_ui_actions_on_csm_help      (GtkAction *action, GtkWindow *win);
119
120 /**
121  * modest_ui_actions_toggle_folders_view:
122  * @action: the #GtkAction
123  * @main_window: the #ModestMainWindow
124  * 
125  * this action switches between split view (with a folders pane at the
126  * left) and simple view without the left pane with the folders and
127  * accounts. Maybe it's only useful for Maemo code, but as it uses
128  * generic code could be used also by the GNOME UI
129  **/
130 void     modest_ui_actions_toggle_folders_view       (GtkAction *action, 
131                                                       ModestMainWindow *main_window);
132
133 /**
134  * modest_ui_actions_toggle_folders_view:
135  * @action: the #GtkAction
136  * @main_window: the #ModestMainWindow
137  * 
138  * this action shows or hides the column titles of the header list
139  * view. It also enables the two lines rendering for the treeview rows
140  **/
141 void     modest_ui_actions_toggle_header_list_view    (GtkAction *action, 
142                                                        ModestMainWindow *main_window);
143
144 /* Widget actions */
145 void     modest_ui_actions_on_header_selected          (ModestHeaderView *folder_view, 
146                                                         TnyHeader *header,
147                                                         ModestMainWindow *main_window);
148 void     modest_ui_actions_on_header_activated         (ModestHeaderView *folder_view, 
149                                                         TnyHeader *header,
150                                                         GtkTreePath *path,
151                                                         ModestWindow *main_window);
152
153 void     modest_ui_actions_on_folder_selection_changed (ModestFolderView *folder_view,
154                                                          TnyFolderStore *folder_store, 
155                                                          gboolean selected,
156                                                          ModestMainWindow *main_window);
157
158 void     modest_ui_actions_on_item_not_found           (ModestHeaderView *header_view,
159                                                          ModestItemType type,
160                                                          ModestWindow *window);
161
162 void     modest_ui_actions_on_msg_link_hover           (ModestMsgView *msgview, const gchar* link,
163                                                         ModestWindow *win);
164
165 void     modest_ui_actions_on_msg_link_clicked         (ModestMsgView *msgview, const gchar* link,
166                                                         ModestWindow *win);
167
168 void     modest_ui_actions_on_msg_link_contextual      (ModestMsgView *msgview, const gchar* link,
169                                                         ModestWindow *win);
170
171 void     modest_ui_actions_on_msg_attachment_clicked   (ModestMsgView *msgview, TnyMimePart *mime_part,
172                                                         ModestWindow *win);
173
174 void     modest_ui_actions_on_msg_recpt_activated   (ModestMsgView *msgview, const gchar *address,
175                                                      ModestWindow *win);
176
177 gboolean modest_ui_actions_on_send                     (GtkWidget *widget,
178                                                         ModestMsgEditWindow *edit_window);
179 gboolean modest_ui_actions_on_save_to_drafts           (GtkWidget *widget, 
180                                                         ModestMsgEditWindow *edit_window);
181
182
183 void     modest_ui_actions_on_toggle_bold              (GtkToggleAction *action,
184                                                         ModestMsgEditWindow *window);
185
186 void     modest_ui_actions_on_toggle_italics           (GtkToggleAction *action,
187                                                         ModestMsgEditWindow *window);
188
189 void     modest_ui_actions_on_toggle_bullets           (GtkToggleAction *action,
190                                                         ModestMsgEditWindow *window);
191
192 void     modest_ui_actions_on_change_justify      (GtkRadioAction *action,
193                                                    GtkRadioAction *selected,
194                                                    ModestMsgEditWindow *window);
195
196 void     modest_ui_actions_on_select_editor_color      (GtkAction *action,
197                                                         ModestMsgEditWindow *window);
198
199 void     modest_ui_actions_on_select_editor_background_color      (GtkAction *action,
200                                                                    ModestMsgEditWindow *window);
201
202 void     modest_ui_actions_on_insert_image             (GObject *object,
203                                                         ModestMsgEditWindow *window);
204
205 void     modest_ui_actions_on_attach_file             (GtkAction *action,
206                                                        ModestMsgEditWindow *window);
207
208 void     modest_ui_actions_on_remove_attachments      (GtkAction *action,
209                                                        ModestMsgEditWindow *window);
210 void     modest_ui_actions_on_mark_as_read            (GtkAction *action,
211                                                        ModestWindow *window);
212
213 void     modest_ui_actions_on_mark_as_unread            (GtkAction *action,
214                                                          ModestWindow *window);
215
216 void     modest_ui_actions_cancel_send (GtkAction *action,  ModestWindow *win);
217
218 /**
219  * modest_ui_actions_do_send_receive_all:
220  * @win: the window that will be used as source of the refresh mail operation
221  * @force_connection: whether or not the code should try to force a new connection if we're offline
222  * @poke_status: wheter ot not we want to poke the status of all mail folders
223  * @interactive: is coming from an interactive send receive.
224  * 
225  * Refreshes all the accounts
226  **/
227 void    modest_ui_actions_do_send_receive_all          (ModestWindow *win,
228                                                         gboolean force_connection,
229                                                         gboolean poke_status,
230                                                         gboolean interactive);
231
232 /**
233  * modest_ui_actions_do_send_receive:
234  * @account_name: the name of the Modest account or NULL
235  * @force_connection: whether or not the code should try to force a new connection if we're offline
236  * @poke_status: wheter ot not we want to poke the status of all mail folders
237  * @interactive: is coming from an interactive send receive
238  * @win: the window that will be used as source of the refresh mail operation
239  * 
240  * Refreshes the Modest account whose name is passed as argument. If
241  * NULL is passed as #account_name then this function refreses the
242  * active account, if no active account is defined then it picks the
243  * default account
244  **/
245 void    modest_ui_actions_do_send_receive              (const gchar *account_name,
246                                                         gboolean force_connection,
247                                                         gboolean poke_status,
248                                                         gboolean interactive,
249                                                         ModestWindow *win);
250
251 /**
252  * modest_ui_actions_on_send_receive:
253  * @action: a #GtkAction
254  * @win: the Window that contains the action
255  * 
256  * Handles the activation of the send receive action, for example
257  * clicks on Send&Receive button in the main toolbar
258  **/
259 void    modest_ui_actions_on_send_receive              (GtkAction *action, 
260                                                         ModestWindow *win);
261
262 void     modest_ui_actions_on_new_folder               (GtkAction *action,
263                                                         ModestWindow *main_window);
264
265 gboolean     modest_ui_actions_on_edit_mode_rename_folder            (ModestWindow *window);
266
267 void     modest_ui_actions_on_rename_folder            (GtkAction *action,
268                                                         ModestWindow *window);
269
270 void     modest_ui_actions_on_delete_folder            (GtkAction *action,
271                                                         ModestWindow *window);
272
273 void     modest_ui_actions_on_move_folder_to_trash_folder     (GtkAction *action,
274                                                                ModestMainWindow *main_window);
275
276 void     modest_ui_actions_on_password_requested (TnyAccountStore *account_store,
277                                                   const gchar* server_account_name,
278                                                   gchar **username, gchar **password, gboolean *cancel, 
279                                                   gboolean *remember, ModestMainWindow *main_window);
280
281 void     modest_ui_actions_on_undo                     (GtkAction *action,
282                                                         ModestWindow *window);
283
284 void     modest_ui_actions_on_redo                     (GtkAction *action,
285                                                         ModestWindow *window);
286
287 void     modest_ui_actions_on_cut                      (GtkAction *action,
288                                                         ModestWindow *window);
289
290 void     modest_ui_actions_on_copy                     (GtkAction *action,
291                                                         ModestWindow *window);
292
293 void     modest_ui_actions_on_zoom_plus (GtkAction *action,
294                                          ModestWindow *window);
295
296 void     modest_ui_actions_on_zoom_minus (GtkAction *action,
297                                           ModestWindow *window);
298
299 void     modest_ui_actions_on_toggle_fullscreen    (GtkToggleAction *toggle,
300                                                     ModestWindow *window);
301
302 void     modest_ui_actions_on_change_fullscreen    (GtkAction *action,
303                                                     ModestWindow *window);
304
305 void     modest_ui_actions_on_paste                    (GtkAction *action,
306                                                         ModestWindow *window);
307
308 void     modest_ui_actions_on_select_all               (GtkAction *action,
309                                                         ModestWindow *window);
310
311 void     modest_ui_actions_on_toggle_show_cc (GtkToggleAction *toggle,
312                                               ModestMsgEditWindow *window);
313
314 void     modest_ui_actions_on_toggle_show_bcc (GtkToggleAction *toggle,
315                                               ModestMsgEditWindow *window);
316
317 void     modest_ui_actions_on_change_zoom              (GtkRadioAction *action,
318                                                         GtkRadioAction *selected,
319                                                         ModestWindow *window);
320
321 void     modest_ui_actions_msg_edit_on_change_priority (GtkRadioAction *action,
322                                                         GtkRadioAction *selected,
323                                                         ModestWindow *window);
324
325 void     modest_ui_actions_msg_edit_on_change_file_format (GtkRadioAction *action,
326                                                            GtkRadioAction *selected,
327                                                            ModestWindow *window);
328
329 void     modest_ui_actions_msg_edit_on_select_font (GtkAction *action,
330                                                     ModestMsgEditWindow *window);
331
332 /**
333  * modest_ui_actions_on_toggle_toolbar:
334  * @toggle: 
335  * @window: 
336  * 
337  * Hides/Shows the toolbars of the #ModestWindow instances
338  **/
339 void     modest_ui_actions_on_toggle_toolbar           (GtkToggleAction *toggle, 
340                                                         ModestWindow *window);
341
342 /**
343  * modest_ui_actions_on_folder_display_name_changed:
344  * @folder_view: a #ModestFolderView
345  * @display_name: the new window title
346  * @window: a #GtkWindow
347  * 
348  * Sets the title of the window to the value specified by
349  * display_name. This function is used typically as a callback to the
350  * "folder-display-name-changed" signal from the #ModestFolderView
351  **/
352 void     modest_ui_actions_on_folder_display_name_changed (ModestFolderView *folder_view,
353                                                            const gchar *display_name,
354                                                            GtkWindow *window);
355
356 void     modest_ui_actions_view_attachment                (GtkAction *action,
357                                                            ModestWindow *window);
358
359 void     modest_ui_actions_save_attachments               (GtkAction *action,
360                                                            ModestWindow *window);
361
362 void     modest_ui_actions_remove_attachments             (GtkAction *action,
363                                                            ModestWindow *window);
364
365 /**
366  * modest_ui_actions_on_retrieve_msg_contents:
367  * @action: the #GtkAction
368  * @window: the #ModestWindow that issues the action
369  * 
370  * Retrieve the contents of the selected messages in the header view
371  **/
372 void     modest_ui_actions_on_retrieve_msg_contents       (GtkAction *action,
373                                                            ModestWindow *window);
374
375 void
376 modest_ui_actions_on_email_menu_activated (GtkAction *action,
377                                           ModestWindow *window);
378
379 void
380 modest_ui_actions_on_edit_menu_activated (GtkAction *action,
381                                           ModestWindow *window);
382
383 void
384 modest_ui_actions_on_format_menu_activated (GtkAction *action,
385                                             ModestWindow *window);
386
387 void
388 modest_ui_actions_on_view_menu_activated (GtkAction *action,
389                                           ModestWindow *window);
390
391 void
392 modest_ui_actions_on_tools_menu_activated (GtkAction *action,
393                                           ModestWindow *window);
394
395 void
396 modest_ui_actions_on_attachment_menu_activated (GtkAction *action,
397                                                 ModestWindow *window);
398
399 void
400 modest_ui_actions_on_toolbar_csm_menu_activated (GtkAction *action,
401                                                  ModestWindow *window);
402
403 void
404 modest_ui_actions_on_folder_view_csm_menu_activated (GtkAction *action,
405                                                      ModestWindow *window);
406
407 void
408 modest_ui_actions_on_header_view_csm_menu_activated (GtkAction *action,
409                                                      ModestWindow *window);
410
411 void
412 modest_ui_actions_check_toolbar_dimming_rules (ModestWindow *window);
413
414 void
415 modest_ui_actions_check_menu_dimming_rules (ModestWindow *window);
416
417 /* Dimming rules groups */
418 #define MODEST_DIMMING_RULES_TOOLBAR "ModestToolbarDimmingRules"
419 #define MODEST_DIMMING_RULES_MENU "ModestMenuDimmingRules"
420 #define MODEST_DIMMING_RULES_CLIPBOARD "ModestClipboardDimmingRules"
421
422 /**
423  * modest_ui_actions_move_folder_error_handler:
424  * @mail_op: a #ModestMailOperation
425  * @user_data: user data
426  * 
427  * manages an error in a mail operation that tries to move a folder
428  **/
429 void     modest_ui_actions_move_folder_error_handler      (ModestMailOperation *mail_op, 
430                                                            gpointer user_data);
431 /**
432  * modest_ui_actions_send-receive_error_handler:
433  * @mail_op: a #ModestMailOperation
434  * @user_data: user data
435  * 
436  * manages an error in a mail operation that tries to execute
437  * a send&receive operation.
438  **/
439 void     modest_ui_actions_send_receive_error_handler      (ModestMailOperation *mail_op, 
440                                                             gpointer user_data);
441
442 /**
443  * modest_ui_actions_on_search_messages:
444  * @action: a #GtkAction
445  * @window: a #ModestWindow
446  *
447  * Shows the search messages dialog
448  **/
449 void     modest_ui_actions_on_search_messages             (GtkAction *action,
450                                                            ModestWindow *window);
451
452 /**
453  * modest_ui_actions_on_find_in_page:
454  * @action: a #GtkAction
455  * @window: a #ModestWindow
456  *
457  * Toggles the visibility of the find in page toolbar
458  **/
459 void     modest_ui_actions_on_toggle_find_in_page             (GtkAction *action,
460                                                                ModestWindow *window);
461
462 /**
463  * modest_ui_actions_msg_retrieval_check
464  * @mail_op: a #ModestMailOperation
465  * @header: a #TnyHeader
466  * @msg: a #TnyMsg
467  *
468  * This function checks that the message has been retrieved
469  * successfully. It it was not the case it unregisters the header from
470  * the window manager because it won't do it automatically unless the
471  * operation run fine
472  *
473  * Returns: TRUE if the operation was OK, otherwise FALSE
474  **/
475 gboolean modest_ui_actions_msg_retrieval_check                (ModestMailOperation *mail_op, 
476                                                                TnyHeader *header,
477                                                                TnyMsg *msg);
478
479
480 /**
481  * modest_ui_actions_disk_operations_error_handler
482  * @mail_op: a #ModestMailOperation
483  *
484  * Error handler for retrieval operations like
485  * modest_mail_operation_get_msg or
486  * modest_mail_operation_get_msgs_full
487  **/
488 void     modest_ui_actions_disk_operations_error_handler      (ModestMailOperation *mail_op,
489                                                                gpointer user_data);
490
491 /* Show the account creation wizard dialog.
492  * returns: TRUE if an account was created. FALSE if the user cancelled.
493  */
494 gboolean modest_ui_actions_run_account_setup_wizard (ModestWindow *win);
495
496 gint modest_ui_actions_msgs_move_to_confirmation (ModestWindow *win,
497                                                   TnyFolder *dest_folder,
498                                                   gboolean delete,
499                                                   TnyList *headers);
500
501 /*
502  * modest_ui_actions_on_send_queue_error_happened:
503  *
504  * Method for handling errors in send queues
505  */
506 void modest_ui_actions_on_send_queue_error_happened (TnySendQueue *self, 
507                                                      TnyHeader *header, 
508                                                      TnyMsg *msg, 
509                                                      GError *err, 
510                                                      gpointer user_data);
511
512 /*
513  * modest_ui_actions_on_send_queue_status_changed:
514  *
515  * Method for handling changes in the status of the messages in the send queues
516  */
517 void modest_ui_actions_on_send_queue_status_changed (ModestTnySendQueue *send_queue,
518                                                      gchar *msg_id, 
519                                                      guint status,
520                                                      gpointer user_data);
521
522 /**
523  * modest_ui_actions_compose_msg
524  * @win: Modest main window (can be NULL)
525  * @to_str: "To:" header, or NULL
526  * @cc_str: "Cc:" header, or NULL
527  * @bcc_str: "Bcc:" header, or NULL
528  * @subject_str: Subject of the message, or NULL
529  * @body_str: Body of the message (without signature), or NULL
530  * @attachments: attachments List of file URIs to attach
531  * @set_as_modified: wheter or not the message is set initially as modified or not
532  *
533  * Opens a new message editor for composing
534  */
535 void modest_ui_actions_compose_msg (ModestWindow *win,
536                                     const gchar *to_str,
537                                     const gchar *cc_str,
538                                     const gchar *bcc_str,
539                                     const gchar *subject_str,
540                                     const gchar *body_str,
541                                     GSList *attachments,
542                                     gboolean set_as_modified);
543
544 void modest_ui_actions_on_account_connection_error (GtkWindow *parent_window,
545                                                     TnyAccount *account);
546
547 gchar *modest_ui_actions_get_msg_already_deleted_error_msg (ModestWindow *win);
548
549 void modest_ui_actions_transfer_messages_helper (GtkWindow *win,
550                                                  TnyFolder *src_folder,
551                                                  TnyList *headers,
552                                                  TnyFolder *dst_folder);
553
554
555 G_END_DECLS
556 #endif /* __MODEST_UI_ACTIONS_H__ */