| Top |  |  |  |  | 
| EContactStore * | e_contact_store_new () | 
| EBookClient * | e_contact_store_get_client () | 
| EContact * | e_contact_store_get_contact () | 
| gboolean | e_contact_store_find_contact () | 
| GSList * | e_contact_store_get_clients () | 
| void | e_contact_store_add_client () | 
| gboolean | e_contact_store_remove_client () | 
| void | e_contact_store_set_query () | 
| EBookQuery * | e_contact_store_peek_query () | 
EContactStore *
e_contact_store_new (void);
e_contact_store_new is deprecated and should not be used in newly-written code.
Creates a new EContactStore.
EBookClient * e_contact_store_get_client (EContactStore *contact_store,GtkTreeIter *iter);
e_contact_store_get_client is deprecated and should not be used in newly-written code.
Gets the EBookClient that provided the contact at iter
.
Since: 3.2
EContact * e_contact_store_get_contact (EContactStore *contact_store,GtkTreeIter *iter);
e_contact_store_get_contact is deprecated and should not be used in newly-written code.
Gets the EContact at iter
.
gboolean e_contact_store_find_contact (EContactStore *contact_store,const gchar *uid,GtkTreeIter *iter);
e_contact_store_find_contact is deprecated and should not be used in newly-written code.
Sets iter
 to point to the contact row matching uid
.
| contact_store | an EContactStore | |
| uid | a unique contact identifier | |
| iter | a destination GtkTreeIter to set | 
GSList *
e_contact_store_get_clients (EContactStore *contact_store);
e_contact_store_get_clients is deprecated and should not be used in newly-written code.
Gets the list of book clients that provide contacts for contact_store
.
Since: 3.2
void e_contact_store_add_client (EContactStore *contact_store,EBookClient *book_client);
e_contact_store_add_client is deprecated and should not be used in newly-written code.
Adds book_client
 to the list of clients that provide contacts for
contact_store
.  The contact_store
 adds a reference to book_client
,
if added.
Since: 3.2
gboolean e_contact_store_remove_client (EContactStore *contact_store,EBookClient *book_client);
e_contact_store_remove_client is deprecated and should not be used in newly-written code.
Removes book_client
 from the list of clients that provide contacts for
contact_store
.
Since: 3.2
void e_contact_store_set_query (EContactStore *contact_store,EBookQuery *book_query);
e_contact_store_set_query is deprecated and should not be used in newly-written code.
Sets book_query
 to be the query used to fetch contacts from the books
assigned to contact_store
.