aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy/empathy-contact-manager.h
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@src.gnome.org>2007-05-19 05:50:47 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2007-05-19 05:50:47 +0800
commit20ce0c962a960e39216b06bdf2198dfd83319278 (patch)
tree7c68fd6c1fe32771ae80c60351247ff810c395e1 /libempathy/empathy-contact-manager.h
parent8af020a730b144f60c61a55be9e1542e588cf150 (diff)
downloadgsoc2013-empathy-20ce0c962a960e39216b06bdf2198dfd83319278.tar
gsoc2013-empathy-20ce0c962a960e39216b06bdf2198dfd83319278.tar.gz
gsoc2013-empathy-20ce0c962a960e39216b06bdf2198dfd83319278.tar.bz2
gsoc2013-empathy-20ce0c962a960e39216b06bdf2198dfd83319278.tar.lz
gsoc2013-empathy-20ce0c962a960e39216b06bdf2198dfd83319278.tar.xz
gsoc2013-empathy-20ce0c962a960e39216b06bdf2198dfd83319278.tar.zst
gsoc2013-empathy-20ce0c962a960e39216b06bdf2198dfd83319278.zip
EmpathyContactList is now an interface implemented by
* libempathy-gtk/gossip-private-chat.h: * libempathy-gtk/gossip-contact-list.c: * libempathy-gtk/gossip-chat.c: * libempathy-gtk/gossip-chat.h: * libempathy-gtk/gossip-chat-window.c: * libempathy-gtk/Makefile.am: * libempathy-gtk/gossip-chat-view.c: * libempathy-gtk/gossip-private-chat.c: * src/empathy-chat-main.c: * libempathy/gossip-utils.c: * libempathy/gossip-contact.h: * libempathy/empathy-tp-chat.c: * libempathy/gossip-utils.h: * libempathy/empathy-contact-manager.c: * libempathy/empathy-contact-manager.h: * libempathy/empathy-tp-contact-list.c: * libempathy/empathy-tp-contact-list.h: * libempathy/empathy-tp-chatroom.c: * libempathy/empathy-tp-chatroom.h: * libempathy/empathy-contact-list.c: * libempathy/empathy-contact-list.h: * libempathy/Makefile.am: * libempathy/gossip-contact.c: EmpathyContactList is now an interface implemented by EmpathyTpContactList, EmpathyContactManager and EmpathyTpChatroom. GossipContactList use that interface to display a treeview. svn path=/trunk/; revision=72
Diffstat (limited to 'libempathy/empathy-contact-manager.h')
-rw-r--r--libempathy/empathy-contact-manager.h15
1 files changed, 3 insertions, 12 deletions
diff --git a/libempathy/empathy-contact-manager.h b/libempathy/empathy-contact-manager.h
index 95876dbf3..db893b486 100644
--- a/libempathy/empathy-contact-manager.h
+++ b/libempathy/empathy-contact-manager.h
@@ -28,7 +28,7 @@
#include <libmissioncontrol/mc-account.h>
#include "gossip-contact.h"
-#include "empathy-contact-list.h"
+#include "empathy-tp-contact-list.h"
G_BEGIN_DECLS
@@ -53,26 +53,17 @@ struct _EmpathyContactManagerClass {
GType empathy_contact_manager_get_type (void) G_GNUC_CONST;
EmpathyContactManager *empathy_contact_manager_new (void);
-void empathy_contact_manager_setup (EmpathyContactManager *manager);
-EmpathyContactList * empathy_contact_manager_get_list (EmpathyContactManager *manager,
+EmpathyTpContactList * empathy_contact_manager_get_list (EmpathyContactManager *manager,
McAccount *account);
-GossipContact * empathy_contact_manager_get_own (EmpathyContactManager *manager,
+GossipContact * empathy_contact_manager_get_user (EmpathyContactManager *manager,
McAccount *account);
-GossipContact * empathy_contact_manager_find (EmpathyContactManager *manager,
- const gchar *id);
GossipContact * empathy_contact_manager_create (EmpathyContactManager *manager,
McAccount *account,
const gchar *id);
-void empathy_contact_manager_add (EmpathyContactManager *manager,
- GossipContact *contact,
- const gchar *message);
-void empathy_contact_manager_remove (EmpathyContactManager *manager,
- GossipContact *contact);
void empathy_contact_manager_rename_group (EmpathyContactManager *manager,
const gchar *old_group,
const gchar *new_group);
GList * empathy_contact_manager_get_groups (EmpathyContactManager *manager);
-GList * empathy_contact_manager_get_contacts (EmpathyContactManager *manager);
G_END_DECLS