X-Git-Url: http://git.maemo.org/git/?p=modest;a=blobdiff_plain;f=src%2Fmodest-ui-actions.h;h=1071ef9a7685f63e730c63cc1186be467ce34a52;hp=58550602e807760502e3c5be4ac9bb5710b9df64;hb=a13d5091c8e0feecf34e28e25bd67cdf7dac118f;hpb=94a4612a68cf9129d80418e40d177911297b76e7 diff --git a/src/modest-ui-actions.h b/src/modest-ui-actions.h index 5855060..1071ef9 100644 --- a/src/modest-ui-actions.h +++ b/src/modest-ui-actions.h @@ -67,6 +67,8 @@ void modest_ui_actions_on_check_names (GtkAction *action, ModestMsgEditWindo void modest_ui_actions_on_new_msg (GtkAction *action, ModestWindow *win); +void modest_ui_actions_on_new_msg_or_folder (GtkAction *action, ModestWindow *win); + void modest_ui_actions_on_open (GtkAction *action, ModestWindow *win); void modest_ui_actions_on_reply (GtkAction *action, ModestWindow *win); @@ -94,7 +96,7 @@ void modest_ui_actions_on_settings (GtkAction *action, ModestWindow *wi * * Shows the help dialog **/ -void modest_ui_actions_on_help (GtkAction *action, ModestWindow *win); +void modest_ui_actions_on_help (GtkAction *action, GtkWindow *win); /** * modest_ui_actions_toggle_folders_view: @@ -199,7 +201,8 @@ void modest_ui_actions_cancel_send (GtkAction *action, ModestWindow *win); * * Refreshes all the accounts **/ -void modest_ui_actions_do_send_receive_all (ModestWindow *win); +void modest_ui_actions_do_send_receive_all (ModestWindow *win, + gboolean force_connection); /** * modest_ui_actions_do_send_receive: @@ -212,11 +215,9 @@ void modest_ui_actions_do_send_receive_all (ModestWindow *win); * default account **/ void modest_ui_actions_do_send_receive (const gchar *account_name, + gboolean force_connection, ModestWindow *win); -void -modest_do_refresh_current_folder(ModestWindow *win); - /** * modest_ui_actions_on_send_receive: * @action: a #GtkAction @@ -378,6 +379,14 @@ modest_ui_actions_on_header_view_csm_menu_activated (GtkAction *action, void modest_ui_actions_check_toolbar_dimming_rules (ModestWindow *window); +void +modest_ui_actions_check_menu_dimming_rules (ModestWindow *window); + +/* Dimming rules groups */ +#define MODEST_DIMMING_RULES_TOOLBAR "ModestToolbarDimmingRules" +#define MODEST_DIMMING_RULES_MENU "ModestMenuDimmingRules" +#define MODEST_DIMMING_RULES_CLIPBOARD "ModestClipboardDimmingRules" + /** * modest_ui_actions_move_folder_error_handler: * @mail_op: a #ModestMailOperation @@ -447,24 +456,12 @@ gboolean modest_ui_actions_msg_retrieval_check (ModestMailOperati void modest_ui_actions_get_msgs_full_error_handler (ModestMailOperation *mail_op, gpointer user_data); -/** A convenience method, because deleting a message is - * otherwise complicated, and it's best to change it in one place - * when we change it. - **/ -void modest_do_message_delete (TnyHeader *header, ModestWindow *win); - -/** A convenience method, because deleting a message is - * otherwise complicated, and it's best to change it in one place - * when we change it. - **/ -void modest_do_messages_delete (TnyList *headers, ModestWindow *win); - /* Show the account creation wizard dialog. * returns: TRUE if an account was created. FALSE if the user cancelled. */ gboolean modest_ui_actions_run_account_setup_wizard (ModestWindow *win); -gint modest_ui_actions_msgs_move_to_confirmation (GtkWindow *win, +gint modest_ui_actions_msgs_move_to_confirmation (ModestWindow *win, TnyFolder *dest_folder, gboolean delete, TnyList *headers); @@ -490,5 +487,26 @@ void modest_ui_actions_on_send_queue_status_changed (ModestTnySendQueue *send_qu guint status, gpointer user_data); +/** + * Opens a new message editor for composing + * @param win Modest main window (can be NULL) + * @param to_str "To:" header, or NULL + * @param cc_str "Cc:" header, or NULL + * @param bcc_str "Bcc:" header, or NULL + * @param subject_str Subject of the message, or NULL + * @param body_str Body of the message (without signature), or NULL + * @param attachments List of file URIs to attach + */ +void modest_ui_actions_compose_msg (ModestWindow *win, + const gchar *to_str, + const gchar *cc_str, + const gchar *bcc_str, + const gchar *subject_str, + const gchar *body_str, + GSList *attachments); + +void modest_ui_actions_on_account_connection_error (GtkWindow *parent_window, + TnyAccount *account); + G_END_DECLS #endif /* __MODEST_UI_ACTIONS_H__ */