When building the Details dialog, don't assume that
[modest] / src / modest-ui-actions.h
index 7206eab..ba78882 100644 (file)
@@ -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:
@@ -448,12 +448,6 @@ void     modest_ui_actions_get_msgs_full_error_handler         (ModestMailOperat
  * 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.
@@ -487,5 +481,23 @@ 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);
+
 G_END_DECLS
 #endif /* __MODEST_UI_ACTIONS_H__ */