Modified webpage: now tinymail repository is in gitorious.
[modest] / src / widgets / modest-mail-header-view.c
index 7efb1dc..485eecd 100644 (file)
@@ -51,6 +51,24 @@ modest_mail_header_view_set_priority (ModestMailHeaderView *self, TnyHeaderFlags
        MODEST_MAIL_HEADER_VIEW_GET_IFACE (self)->set_priority (self, flags);
 }
 
+gboolean
+modest_mail_header_view_get_loading (ModestMailHeaderView *self)
+{
+       return MODEST_MAIL_HEADER_VIEW_GET_IFACE (self)->get_loading (self);
+}
+
+void
+modest_mail_header_view_set_loading (ModestMailHeaderView *self, gboolean is_loading)
+{
+       MODEST_MAIL_HEADER_VIEW_GET_IFACE (self)->set_loading (self, is_loading);
+}
+
+void
+modest_mail_header_view_set_branding (ModestMailHeaderView *self, const gchar *brand_name, const GdkPixbuf *brand_icon)
+{
+       MODEST_MAIL_HEADER_VIEW_GET_IFACE (self)->set_branding (self, brand_name, brand_icon);
+}
+
 const GtkWidget *
 modest_mail_header_view_add_custom_header (ModestMailHeaderView *self,
                                           const gchar *label,