Add support for setting brand images in message view widgets
[modest] / src / widgets / modest-msg-view.c
index ac28fa5..bcbf561 100644 (file)
@@ -43,6 +43,12 @@ enum {
 };
 static guint signals[LAST_SIGNAL] = {0};
 
+void
+modest_msg_view_set_msg_with_other_body (ModestMsgView *self, TnyMsg *msg, TnyMimePart *part)
+{
+       return MODEST_MSG_VIEW_GET_IFACE (self)->set_msg_with_other_body_func (self, msg, part);
+}
+
 GtkAdjustment*
 modest_msg_view_get_vadjustment (ModestMsgView *self)
 {
@@ -122,6 +128,12 @@ modest_msg_view_remove_attachment (ModestMsgView *self, TnyMimePart *attachment)
 }
 
 void
+modest_msg_view_set_branding (ModestMsgView *self, const gchar *brand_name, const GdkPixbuf *brand_icon)
+{
+       MODEST_MSG_VIEW_GET_IFACE (self)->set_branding_func (self, brand_name, brand_icon);
+}
+
+void
 modest_msg_view_request_fetch_images (ModestMsgView *self)
 {
        MODEST_MSG_VIEW_GET_IFACE (self)->request_fetch_images_func (self);