* let the dbus-invoked msgs use the same uids as other messages,
[modest] / src / widgets / modest-msg-view-window.h
index f07fc71..d2c9f0b 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;
 
 /**
@@ -209,10 +212,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);
 
 
 /**