X-Git-Url: http://git.maemo.org/git/?a=blobdiff_plain;f=src%2Fmodest-ui-actions.h;h=a22722a37ff1eb9f751c945ad2dc8d834ca2d9cd;hb=a8d18c7cdfb4239dc9e36f01f5a9a4cb9ce13032;hp=5261a1ec2dbfe0dbf5820b5710ce5e96ca3e8ba3;hpb=d7ce86e033eff36959cc7754cccc8fadb686f226;p=modest diff --git a/src/modest-ui-actions.h b/src/modest-ui-actions.h index 5261a1e..a22722a 100644 --- a/src/modest-ui-actions.h +++ b/src/modest-ui-actions.h @@ -40,7 +40,11 @@ G_BEGIN_DECLS /* Menu & toolbar actions */ void modest_ui_actions_on_about (GtkAction *action, ModestWindow *win); -void modest_ui_actions_on_delete (GtkAction *action, ModestWindow *win); +void modest_ui_actions_refresh_message_window_after_delete (ModestMsgViewWindow* win); + +void modest_ui_actions_on_delete_message (GtkAction *action, ModestWindow *win); + +void modest_ui_actions_on_delete_message_or_folder (GtkAction *action, ModestWindow *win); void modest_ui_actions_on_quit (GtkAction *action, ModestWindow *win); @@ -56,6 +60,8 @@ void modest_ui_actions_on_add_to_contacts (GtkAction *action, ModestWindow void modest_ui_actions_on_select_contacts (GtkAction *action, ModestMsgEditWindow *win); +void modest_ui_actions_on_open_addressbook (GtkAction *action, ModestWindow *win); + void modest_ui_actions_on_check_names (GtkAction *action, ModestMsgEditWindow *win); void modest_ui_actions_on_new_msg (GtkAction *action, ModestWindow *win); @@ -126,9 +132,6 @@ void modest_ui_actions_on_folder_selection_changed (ModestFolderView *folder gboolean selected, ModestMainWindow *main_window); -void modest_ui_actions_on_online_toggle_toggled (GtkToggleButton *toggle, - ModestMainWindow *main_window); - void modest_ui_actions_on_item_not_found (ModestHeaderView *header_view, ModestItemType type, ModestWindow *window); @@ -187,6 +190,8 @@ void modest_ui_actions_on_mark_as_read (GtkAction *action, void modest_ui_actions_on_mark_as_unread (GtkAction *action, ModestWindow *window); +void modest_ui_actions_cancel_send (GtkAction *action, ModestWindow *win); + /** * modest_ui_actions_do_send_receive_all: * @win: the window that will be used as source of the refresh mail operation @@ -208,6 +213,9 @@ 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 @@ -244,6 +252,9 @@ void modest_ui_actions_on_password_requested (TnyAccountStore *account_store void modest_ui_actions_on_undo (GtkAction *action, ModestWindow *window); +void modest_ui_actions_on_redo (GtkAction *action, + ModestWindow *window); + void modest_ui_actions_on_cut (GtkAction *action, ModestWindow *window); @@ -341,6 +352,18 @@ modest_ui_actions_on_edit_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); @@ -364,6 +387,16 @@ modest_ui_actions_check_toolbar_dimming_rules (ModestWindow *window); **/ void modest_ui_actions_move_folder_error_handler (ModestMailOperation *mail_op, gpointer user_data); +/** + * modest_ui_actions_send-receive_error_handler: + * @mail_op: a #ModestMailOperation + * @user_data: user data + * + * manages an error in a mail operation that tries to execute + * a send&receive operation. + **/ +void modest_ui_actions_send_receive_error_handler (ModestMailOperation *mail_op, + gpointer user_data); /** * modest_ui_actions_on_search_messages: @@ -385,5 +418,45 @@ void modest_ui_actions_on_search_messages (GtkAction *action, void modest_ui_actions_on_toggle_find_in_page (GtkToggleAction *action, ModestWindow *window); +/** + * modest_ui_actions_msg_retrieval_check + * @mail_op: a #ModestMailOperation + * @header: a #TnyHeader + * @msg: a #TnyMsg + * + * This function checks that the message has been retrieved + * successfully. It it was not the case it unregisters the header from + * the window manager because it won't do it automatically unless the + * operation run fine + * + * Returns: TRUE if the operation was OK, otherwise FALSE + **/ +gboolean modest_ui_actions_msg_retrieval_check (ModestMailOperation *mail_op, + TnyHeader *header, + TnyMsg *msg); + + +/** + * modest_ui_actions_get_msgs_full_error_handler + * @mail_op: a #ModestMailOperation + * + * Error handler for message retrieval operations like + * modest_mail_operation_get_msg or + * modest_mail_operation_get_msgs_full + **/ +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); + +/* 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); + G_END_DECLS #endif /* __MODEST_UI_ACTIONS_H__ */