* Fixed NB#62792, the editor is closed if the account is removed
[modest] / src / widgets / modest-msg-view-window.h
index f07fc71..6cad5e0 100644 (file)
@@ -51,8 +51,11 @@ typedef struct {
        
 typedef struct {
        ModestWindowClass parent_class;
-       /* insert signal callback declarations, eg. */
-       /* void (* my_event) (ModestEditMsgWindow* obj); */
+
+       void (*msg_changed) (ModestMsgViewWindow *self,
+                            GtkTreeModel *model,
+                            GtkTreeRowReference *row_reference, 
+                            gpointer user_data);
 } ModestMsgViewWindowClass;
 
 /**
@@ -66,41 +69,60 @@ GType        modest_msg_view_window_get_type    (void) G_GNUC_CONST;
        
 
 /**
- * modest_msg_view_window_new:
+ * modest_msg_view_window_new_for_attachment:
  * @msg: an #TnyMsg instance
- * @account: the account name 
+ * @modest_account_name: the account name 
  * 
- * instantiates a new #ModestMsgViewWindow widget. The account name is used to
+ * instantiates a new #ModestMsgViewWindow widget to view a message that is an
+ * attachment in another message.
+ * The account name is used to
  * set the proper account when choosing reply/forward from the msg view window
  *
  * Returns: a new #ModestMsgViewWindow, or NULL in case of error
  */
-ModestWindow*   modest_msg_view_window_new         (TnyMsg *msg, 
-                                                   const gchar *account,
+ModestWindow*   modest_msg_view_window_new_for_attachment         (TnyMsg *msg, 
+                                                   const gchar *modest_account_name,
                                                    const gchar *msg_uid);
 
 /**
  * modest_msg_view_window_new_with_header_model:
  * @msg: an #TnyMsg instance
- * @account: the account name 
+ * @modest_account_name: the account name 
  * @model: a #GtkTreeModel, with the format used by #ModestHeaderView
- * @iter: a #GtkTreeIter, pointing to the position of @msg in @model.
+ * @row_reference: a #GtkTreeRowReference, pointing to the position of @msg in @model.
  * 
  * instantiates a new #ModestMsgViewWindow widget. The account name is used to
  * set the proper account when choosing reply/forward from the msg view window.
  * This constructor also passes a reference to the @model of the header view
- * to allow selecting previous/next messages.
+ * to allow selecting previous/next messages in the message list when appropriate.
  *
  * Returns: a new #ModestMsgViewWindow, or NULL in case of error
  */
 ModestWindow*   modest_msg_view_window_new_with_header_model (TnyMsg *msg, 
-                                                             const gchar *account, 
+                                                             const gchar *modest_account_name, 
                                                              const gchar *msg_uid,
                                                              GtkTreeModel *model, 
                                                              GtkTreeRowReference *row_reference);
 
 
 /**
+ * modest_msg_view_window_new_for_search_result:
+ * @msg: an #TnyMsg instance
+ * @modest_account_name: the account name 
+ * 
+ * instantiates a new #ModestMsgViewWindow widget. The account name is used to
+ * set the proper account when choosing reply/forward from the msg view window.
+ * This constructor marks the window as being for a search result, which should 
+ * cause some UI to be disabled, such as the previous/next buttons.
+ *
+ * Returns: a new #ModestMsgViewWindow, or NULL in case of error
+ */
+ModestWindow *
+modest_msg_view_window_new_for_search_result (TnyMsg *msg, 
+                                             const gchar *modest_account_name,
+                                             const gchar *msg_uid);
+                                             
+/**
  * modest_msg_view_window_get_header:
  * @window: an #ModestMsgViewWindow instance
  * 
@@ -168,14 +190,6 @@ gboolean        modest_msg_view_window_select_next_message (ModestMsgViewWindow
 gboolean        modest_msg_view_window_select_previous_message (ModestMsgViewWindow *window);
 
 /**
- * modest_msg_view_window_toggle_fullscreen:
- * @window: a #ModestMsgViewWindow
- *
- * toggles the current fullscreen status
- */
-void            modest_msg_view_window_toggle_fullscreen (ModestMsgViewWindow *window);
-
-/**
  * modest_msg_view_window_view_attachment:
  * @window: a #ModestMsgViewWindow
  * @mime_part: a #TnyMimePart
@@ -209,10 +223,13 @@ void            modest_msg_view_window_save_attachments (ModestMsgViewWindow *wi
 /**
  * modest_msg_view_window_remove_attachments:
  * @window: a #ModestMsgViewWindow
+ * @get_all: a #gboolean. If %TRUE, purges all attachmnents, if %FALSE,
+ * purges only selected ones.
  *
  * Removes selected attachments.
  */
-void            modest_msg_view_window_remove_attachments (ModestMsgViewWindow *window);
+void            modest_msg_view_window_remove_attachments (ModestMsgViewWindow *window,
+                                                          gboolean get_all);
 
 
 /**
@@ -251,6 +268,15 @@ gboolean modest_msg_view_window_first_message_selected (ModestMsgViewWindow *win
 gboolean modest_msg_view_window_has_headers_model (ModestMsgViewWindow *window);
 
 /**
+ * modest_msg_view_window_is_search_result:
+ * @window: a #ModestMsgViewWindow
+ *
+ * Check if window has been created to show a search result. 
+ */
+gboolean modest_msg_view_window_is_search_result (ModestMsgViewWindow *window);
+
+
+/**
  * modest_msg_view_window_get_folder_type:
  * @window: a #ModestMsgViewWindow
  *