aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-individual-store.h
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2011-11-04 18:35:46 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2011-11-24 19:22:04 +0800
commit0c7f25a8206c918d4a84405b7d1ab8e994c65d0f (patch)
tree51daf89bbddb0a4ab2f205331ea41b4272d668ad /libempathy-gtk/empathy-individual-store.h
parent9389308505f9c90ba5a1ce0974ef7d870af7c7e6 (diff)
downloadgsoc2013-empathy-0c7f25a8206c918d4a84405b7d1ab8e994c65d0f.tar
gsoc2013-empathy-0c7f25a8206c918d4a84405b7d1ab8e994c65d0f.tar.gz
gsoc2013-empathy-0c7f25a8206c918d4a84405b7d1ab8e994c65d0f.tar.bz2
gsoc2013-empathy-0c7f25a8206c918d4a84405b7d1ab8e994c65d0f.tar.lz
gsoc2013-empathy-0c7f25a8206c918d4a84405b7d1ab8e994c65d0f.tar.xz
gsoc2013-empathy-0c7f25a8206c918d4a84405b7d1ab8e994c65d0f.tar.zst
gsoc2013-empathy-0c7f25a8206c918d4a84405b7d1ab8e994c65d0f.zip
individual-store: expose some attributes and methods as 'protected'
This will be needed when abstracting EmpathyIndividualStore. https://bugzilla.gnome.org/show_bug.cgi?id=663387
Diffstat (limited to 'libempathy-gtk/empathy-individual-store.h')
-rw-r--r--libempathy-gtk/empathy-individual-store.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-individual-store.h b/libempathy-gtk/empathy-individual-store.h
index dc0c0d7ea..8e62b19d7 100644
--- a/libempathy-gtk/empathy-individual-store.h
+++ b/libempathy-gtk/empathy-individual-store.h
@@ -79,6 +79,10 @@ struct _EmpathyIndividualStore
{
GtkTreeStore parent;
EmpathyIndividualStorePriv *priv;
+
+ /* protected */
+ gboolean show_active;
+ guint setup_idle_id;
};
struct _EmpathyIndividualStoreClass
@@ -147,5 +151,17 @@ void individual_store_remove_individual_and_disconnect (
EmpathyIndividualStore *self,
FolksIndividual *individual);
+/* protected */
+
+void empathy_individual_store_disconnect_individual (
+ EmpathyIndividualStore *self,
+ FolksIndividual *individual);
+
+void empathy_individual_store_remove_individual (EmpathyIndividualStore *self,
+ FolksIndividual *individual);
+
+void empathy_individual_store_add_individual (EmpathyIndividualStore *self,
+ FolksIndividual *individual);
+
G_END_DECLS
#endif /* __EMPATHY_INDIVIDUAL_STORE_H__ */