X-Git-Url: http://git.maemo.org/git/?a=blobdiff_plain;f=src%2Fwidgets%2Fmodest-account-view.h;h=aa16dd2d9958f2e8e26f11fd095675a6350353ae;hb=0fddd206931f6b2a9934bd86cd935c142ea72ca7;hp=c3f476c64ec5b1db9a9b7ddc703e9ed8f7f2971a;hpb=f6ae525c79d3665c68a050b4037ea8105b490f05;p=modest diff --git a/src/widgets/modest-account-view.h b/src/widgets/modest-account-view.h index c3f476c..aa16dd2 100644 --- a/src/widgets/modest-account-view.h +++ b/src/widgets/modest-account-view.h @@ -48,20 +48,34 @@ typedef struct _ModestAccountViewClass ModestAccountViewClass; struct _ModestAccountView { GtkTreeView parent; - /* insert public members, if any */ }; struct _ModestAccountViewClass { GtkTreeViewClass parent_class; - /* insert signal callback declarations, eg. */ - /* void (* my_event) (ModestAccountView* obj); */ }; -/* member functions */ + +/** + * modest_account_view_get_type + * + * Gets the #GType for the account view class + * + * Returns: the #GType + **/ GType modest_account_view_get_type (void) G_GNUC_CONST; + +/** + * modest_account_view_new: + * @account_view: a #ModestAccountView + * + * Create a new acccount view widget = ie, a list with accounts + * + * Returns: a new account view widget, or NULL in case of error + **/ ModestAccountView* modest_account_view_new (ModestAccountMgr *account_mgr); + /** * modest_account_view_get_selected_account: * @account_view: a #ModestAccountView @@ -71,7 +85,7 @@ ModestAccountView* modest_account_view_new (ModestAccountMgr *account_ * Returns: the name of the selected account or NULL if none is * selected **/ -const gchar* modest_account_view_get_selected_account (ModestAccountView *account_view); +gchar* modest_account_view_get_selected_account (ModestAccountView *account_view); G_END_DECLS