TnyAccountStoreView

TnyAccountStoreView — A type for showing an account store to the user

Synopsis

                    TnyAccountStoreView;
                    TnyAccountStoreViewIface;
void                tny_account_store_view_set_account_store
                                                        (TnyAccountStoreView *self,
                                                         TnyAccountStore *account_store);

Object Hierarchy

  GInterface
   +----TnyAccountStoreView

Prerequisites

TnyAccountStoreView requires GObject.

Description

A abstract type for showing TnyAccountStore to the user.

Details

TnyAccountStoreView

typedef struct _TnyAccountStoreView TnyAccountStoreView;

A view for a TnyAccountStore

free-function: g_object_unref


TnyAccountStoreViewIface

typedef struct {
	GTypeInterface parent;

	void (*set_account_store) (TnyAccountStoreView *self, TnyAccountStore *account_store);
} TnyAccountStoreViewIface;


tny_account_store_view_set_account_store ()

void                tny_account_store_view_set_account_store
                                                        (TnyAccountStoreView *self,
                                                         TnyAccountStore *account_store);

Set the account store of the view.

self :

A TnyAccountStoreView

account_store :

A TnyAccountStore

Since 1.0 audience: application-developer, type-implementer