* modest-widget-memory.c:
[modest] / src / modest-tny-account-store.h
index 17b29c3..8e93e61 100644 (file)
@@ -37,6 +37,7 @@
 #include <tny-account-store.h>
 #include <tny-session-camel.h>
 #include <tny-shared.h>
+#include <modest-account-mgr.h>
 
 /* other include files */
 
@@ -63,7 +64,12 @@ struct _ModestTnyAccountStoreClass {
 
        void (*password_requested) (ModestTnyAccountStore *self,
                                    const gchar *account_name,
+                                   gchar **password,
+                                   gboolean *cancel,
                                    gpointer user_data);
+       void (*account_update)    (ModestTnyAccountStore *self,
+                                  const gchar *account_name,
+                                  gpointer user_data);
 };
 
 /* member functions */
@@ -71,9 +77,9 @@ struct _ModestTnyAccountStoreClass {
 /**
  * modest_tny_account_store_get_type:
  *
- * Returns: GType of account store
+ * Returns: GType of the account store
  */
-GType        modest_tny_account_store_get_type    (void) G_GNUC_CONST;
+GType  modest_tny_account_store_get_type   (void) G_GNUC_CONST;
 
 /**
  * modest_tny_account_store_new:
@@ -81,40 +87,22 @@ GType        modest_tny_account_store_get_type    (void) G_GNUC_CONST;
  *
  * creates new (tinymail) account store for account manager modest_acc_mgr
  *
- * Returns: GObject of newly created account store
+ * Returns: newly created account store or NULL in case of error
  */
-GObject*    modest_tny_account_store_new         (ModestAccountMgr *modest_acc_mgr);
+ModestTnyAccountStore*    modest_tny_account_store_new (ModestAccountMgr *account_mgr);
 
-/**
- * modest_tny_account_store_get_account_mgr:
- * @self: a TnyAccountStore instance
- *
- * retrieve the account manager associated with this account store.
- *
- * Returns: the account manager for @self.
- */
-ModestAccountMgr *modest_tny_account_store_get_accout_mgr(ModestTnyAccountStore *self);
 
 /**
- * tny_account_store_get_session:
+ * tny_account_store_get_session
  * @self: a TnyAccountStore instance
+ * 
+ * get the tny-camel-session for this account store. Note that this function
+ * does NOT have the modest_ prefix, as tinymail requires the symbol to be like this...
  *
- * retrieve current tinymail camel session
- *
- * Returns: current tinymail camel session
+ * Returns: a tny-camel-session
  */
-TnySessionCamel* tny_account_store_get_session (TnyAccountStore *self);
+TnySessionCamel*    tny_account_store_get_session    (TnyAccountStore *self);
 
-/**
- * tny_account_store_set_get_pass_func:
- * @self: a TnyAccountStore instance
- * key: a key
- * func: a function
- *
- * set the password function to function
- */
-void
-modest_tny_account_store_set_get_pass_func (ModestTnyAccountStore *, ModestTnyGetPassFunc);
 
 G_END_DECLS