* Fixes NB#74182, the paste option is removed from the csm
[modest] / src / modest-ui-actions.h
index e20b93a..dce58d2 100644 (file)
@@ -34,6 +34,7 @@
 #include <widgets/modest-msg-edit-window.h>
 #include <widgets/modest-recpt-view.h>
 #include "modest-mail-operation.h"
+#include "modest-tny-send-queue.h"
 
 G_BEGIN_DECLS
 
@@ -236,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, 
@@ -349,6 +345,10 @@ 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);
 
@@ -450,5 +450,60 @@ void     modest_ui_actions_get_msgs_full_error_handler         (ModestMailOperat
  **/
 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 (ModestWindow *win,
+                                                 TnyFolder *dest_folder,
+                                                 gboolean delete,
+                                                 TnyList *headers);
+
+/*
+ * modest_ui_actions_on_send_queue_error_happened:
+ *
+ * Method for handling errors in send queues
+ */
+void modest_ui_actions_on_send_queue_error_happened (TnySendQueue *self, 
+                                                    TnyHeader *header, 
+                                                    TnyMsg *msg, 
+                                                    GError *err, 
+                                                    gpointer user_data);
+
+/*
+ * modest_ui_actions_on_send_queue_status_changed:
+ *
+ * Method for handling changes in the status of the messages in the send queues
+ */
+void modest_ui_actions_on_send_queue_status_changed (ModestTnySendQueue *send_queue,
+                                                    gchar *msg_id, 
+                                                    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);
+
 G_END_DECLS
 #endif /* __MODEST_UI_ACTIONS_H__ */