Added API to ModestAccountProtocol to fetch icons
[modest] / src / modest-account-protocol.c
index ef8c3ee..70d8d24 100644 (file)
@@ -96,7 +96,12 @@ static ModestPairList *modest_account_protocol_get_from_list_default (ModestAcco
                                                                      const gchar *account_id);
 static gchar *modest_account_protocol_get_signature_default (ModestAccountProtocol *self,
                                                             const gchar *account_id,
-                                                            const gchar *mailbox);
+                                                            const gchar *mailbox,
+                                                            gboolean *has_signature);
+static const GdkPixbuf *modest_account_protocol_get_icon_default (ModestAccountProtocol *self,
+                                                                 ModestAccountProtocolIconType icon_type, 
+                                                                 GObject *object, 
+                                                                 guint icon_size);
 
 
 /* globals */
@@ -191,6 +196,8 @@ modest_account_protocol_class_init (ModestAccountProtocolClass *klass)
                modest_account_protocol_get_from_list_default;
        account_class->get_signature =
                modest_account_protocol_get_signature_default;
+       account_class->get_icon =
+               modest_account_protocol_get_icon_default;
 }
 
 static void
@@ -663,17 +670,39 @@ modest_account_protocol_get_from_list_default (ModestAccountProtocol *self,
 gchar *
 modest_account_protocol_get_signature (ModestAccountProtocol *self,
                                       const gchar *account_id,
-                                      const gchar *mailbox)
+                                      const gchar *mailbox,
+                                      gboolean *has_signature)
 {
-       return MODEST_ACCOUNT_PROTOCOL_GET_CLASS (self)->get_signature (self, account_id, mailbox);
+       return MODEST_ACCOUNT_PROTOCOL_GET_CLASS (self)->get_signature (self, account_id, mailbox, has_signature);
 }
+
 static gchar *
 modest_account_protocol_get_signature_default (ModestAccountProtocol *self,
                                               const gchar *account_id,
-                                              const gchar *mailbox)
+                                              const gchar *mailbox,
+                                              gboolean *has_signature)
 {
        g_return_val_if_fail (MODEST_ACCOUNT_PROTOCOL (self), NULL);
+       if (has_signature)
+               *has_signature = FALSE;
 
        return NULL;
 }
 
+const GdkPixbuf*
+modest_account_protocol_get_icon (ModestAccountProtocol *self,
+                                 ModestAccountProtocolIconType icon_type,
+                                 GObject *object,
+                                 guint icon_size)
+{
+       return MODEST_ACCOUNT_PROTOCOL_GET_CLASS (self)->get_icon (self, icon_type, object, icon_size);
+}
+
+static const GdkPixbuf * 
+modest_account_protocol_get_icon_default (ModestAccountProtocol *self, ModestAccountProtocolIconType icon_type, 
+                                         GObject *object, guint icon_size)
+{
+       g_return_val_if_fail (MODEST_ACCOUNT_PROTOCOL (self), NULL);
+
+       return NULL;
+}