aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-contact-list-store.h
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@src.gnome.org>2008-01-21 05:42:01 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2008-01-21 05:42:01 +0800
commiteccbc4d73eca63fd700d89f9bc31dcad7cb17edc (patch)
treecfd7bf74bd1a88d930f879b6e103716070edaab9 /libempathy-gtk/empathy-contact-list-store.h
parentdf2045d6031f276b60ad5a15b7acd7bb0257a598 (diff)
downloadgsoc2013-empathy-eccbc4d73eca63fd700d89f9bc31dcad7cb17edc.tar
gsoc2013-empathy-eccbc4d73eca63fd700d89f9bc31dcad7cb17edc.tar.gz
gsoc2013-empathy-eccbc4d73eca63fd700d89f9bc31dcad7cb17edc.tar.bz2
gsoc2013-empathy-eccbc4d73eca63fd700d89f9bc31dcad7cb17edc.tar.lz
gsoc2013-empathy-eccbc4d73eca63fd700d89f9bc31dcad7cb17edc.tar.xz
gsoc2013-empathy-eccbc4d73eca63fd700d89f9bc31dcad7cb17edc.tar.zst
gsoc2013-empathy-eccbc4d73eca63fd700d89f9bc31dcad7cb17edc.zip
Add a property to have or not groups on EmpathyContactListStore
svn path=/trunk/; revision=586
Diffstat (limited to 'libempathy-gtk/empathy-contact-list-store.h')
-rw-r--r--libempathy-gtk/empathy-contact-list-store.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-contact-list-store.h b/libempathy-gtk/empathy-contact-list-store.h
index 214f5be60..0dd6e43ac 100644
--- a/libempathy-gtk/empathy-contact-list-store.h
+++ b/libempathy-gtk/empathy-contact-list-store.h
@@ -73,7 +73,8 @@ struct _EmpathyContactListStoreClass {
};
GType empathy_contact_list_store_get_type (void) G_GNUC_CONST;
-EmpathyContactListStore * empathy_contact_list_store_new (EmpathyContactList *list_iface);
+EmpathyContactListStore * empathy_contact_list_store_new (EmpathyContactList *list_iface,
+ gboolean show_groups);
EmpathyContactList * empathy_contact_list_store_get_list_iface (EmpathyContactListStore *store);
gboolean empathy_contact_list_store_get_show_offline (EmpathyContactListStore *store);
void empathy_contact_list_store_set_show_offline (EmpathyContactListStore *store,
@@ -81,6 +82,9 @@ void empathy_contact_list_store_set_show_offline (Empath
gboolean empathy_contact_list_store_get_show_avatars (EmpathyContactListStore *store);
void empathy_contact_list_store_set_show_avatars (EmpathyContactListStore *store,
gboolean show_avatars);
+gboolean empathy_contact_list_store_get_show_groups (EmpathyContactListStore *store);
+void empathy_contact_list_store_set_show_groups (EmpathyContactListStore *store,
+ gboolean show_groups);
gboolean empathy_contact_list_store_get_is_compact (EmpathyContactListStore *store);
void empathy_contact_list_store_set_is_compact (EmpathyContactListStore *store,
gboolean is_compact);