X-Git-Url: http://git.maemo.org/git/?a=blobdiff_plain;f=src%2Fmodest-ui-actions.h;h=c9dd225d83e74c3594f5a666948da87388c013de;hb=43d04cf5d20ab51e3440b10213670585d9d46fe5;hp=f63bdc216a9aef30dc8aeaa55262e5f2583cd540;hpb=8eb87055216f549c737d2126f33d1fc913f2632d;p=modest diff --git a/src/modest-ui-actions.h b/src/modest-ui-actions.h index f63bdc2..c9dd225 100644 --- a/src/modest-ui-actions.h +++ b/src/modest-ui-actions.h @@ -94,7 +94,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: @@ -214,9 +214,6 @@ void modest_ui_actions_do_send_receive_all (ModestWindow *win); void modest_ui_actions_do_send_receive (const gchar *account_name, ModestWindow *win); -void -modest_do_refresh_current_folder(ModestWindow *win); - /** * modest_ui_actions_on_send_receive: * @action: a #GtkAction @@ -240,11 +237,6 @@ void modest_ui_actions_on_delete_folder (GtkAction *action, void modest_ui_actions_on_move_folder_to_trash_folder (GtkAction *action, ModestMainWindow *main_window); -/* -void modest_ui_actions_on_connection_changed (TnyDevice *device, gboolean online, - ModestMainWindow *main_window); -*/ - void modest_ui_actions_on_password_requested (TnyAccountStore *account_store, const gchar* server_account_name, gchar **username, gchar **password, gboolean *cancel, @@ -345,43 +337,7 @@ void modest_ui_actions_on_retrieve_msg_contents (GtkAction *action, ModestWindow *window); void -modest_ui_actions_on_email_menu_activated (GtkAction *action, - ModestWindow *window); - -void -modest_ui_actions_on_edit_menu_activated (GtkAction *action, - ModestWindow *window); - -void -modest_ui_actions_on_format_menu_activated (GtkAction *action, - ModestWindow *window); - -void -modest_ui_actions_on_view_menu_activated (GtkAction *action, - ModestWindow *window); - -void -modest_ui_actions_on_tools_menu_activated (GtkAction *action, - ModestWindow *window); - -void -modest_ui_actions_on_attachment_menu_activated (GtkAction *action, - ModestWindow *window); - -void -modest_ui_actions_on_toolbar_csm_menu_activated (GtkAction *action, - ModestWindow *window); - -void -modest_ui_actions_on_folder_view_csm_menu_activated (GtkAction *action, - ModestWindow *window); - -void -modest_ui_actions_on_header_view_csm_menu_activated (GtkAction *action, - ModestWindow *window); - -void -modest_ui_actions_check_toolbar_dimming_rules (ModestWindow *window); +modest_ui_actions_check_window_dimming_rules (ModestWindow *window); /** * modest_ui_actions_move_folder_error_handler: @@ -452,27 +408,15 @@ 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_run_account_setup_wizard (ModestWindow *win); +gboolean modest_ui_actions_run_account_setup_wizard (ModestWindow *win); -gint msgs_move_to_confirmation (GtkWindow *win, - TnyFolder *dest_folder, - gboolean delete, - TnyList *headers); +gint modest_ui_actions_msgs_move_to_confirmation (ModestWindow *win, + TnyFolder *dest_folder, + gboolean delete, + TnyList *headers); /* * modest_ui_actions_on_send_queue_error_happened: @@ -495,5 +439,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__ */