X-Git-Url: http://git.maemo.org/git/?p=modest;a=blobdiff_plain;f=src%2Fwidgets%2Fmodest-msg-view-window.h;h=f8c523a032832538f4486785297955820238a7e0;hp=65b97cd8aab4617e4f7853e5be7aea1828a2990c;hb=40a8f5cbe03bd040fe3403dbfa6806df4fb6bc8a;hpb=5b745b2530945a03a3901d3d93d38fcda48fb163 diff --git a/src/widgets/modest-msg-view-window.h b/src/widgets/modest-msg-view-window.h index 65b97cd..f8c523a 100644 --- a/src/widgets/modest-msg-view-window.h +++ b/src/widgets/modest-msg-view-window.h @@ -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; /** @@ -68,7 +71,7 @@ GType modest_msg_view_window_get_type (void) G_GNUC_CONST; /** * modest_msg_view_window_new: * @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 * set the proper account when choosing reply/forward from the msg view window @@ -76,7 +79,7 @@ GType modest_msg_view_window_get_type (void) G_GNUC_CONST; * Returns: a new #ModestMsgViewWindow, or NULL in case of error */ ModestWindow* modest_msg_view_window_new (TnyMsg *msg, - const gchar *account, + const gchar *modest_account_name, const gchar *msg_uid); /** @@ -94,7 +97,7 @@ ModestWindow* modest_msg_view_window_new (TnyMsg *msg, * 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);