]> git.0d.be Git - empathy.git/blobdiff - libempathy-gtk/empathy-contact-selector.h
Add en_GB in gitignore
[empathy.git] / libempathy-gtk / empathy-contact-selector.h
index e825eb9df450a7db45da27a8a0c684be6f117eaa..19ca8cef8609c2b9dd1d20d525a1f010d2cbbdd3 100644 (file)
@@ -29,6 +29,7 @@ G_BEGIN_DECLS
 #include <gtk/gtk.h>
 
 #include <libempathy/empathy-contact.h>
+#include <libempathy-gtk/empathy-contact-list-store.h>
 
 #define EMPATHY_TYPE_CONTACT_SELECTOR (empathy_contact_selector_get_type ())
 #define EMPATHY_CONTACT_SELECTOR(object) (G_TYPE_CHECK_INSTANCE_CAST \
@@ -48,6 +49,7 @@ typedef struct _EmpathyContactSelectorClass EmpathyContactSelectorClass;
 struct _EmpathyContactSelector
 {
   GtkComboBox parent;
+  gpointer priv;
 };
 
 struct _EmpathyContactSelectorClass
@@ -56,11 +58,10 @@ struct _EmpathyContactSelectorClass
 };
 
 GType empathy_contact_selector_get_type (void) G_GNUC_CONST;
-EmpathyContactSelector *
-empathy_contact_selector_new (EmpathyContactListStore *store);
 
-EmpathyContact *
-empathy_contact_selector_get_selected (EmpathyContactSelector *selector);
+GtkWidget * empathy_contact_selector_new (EmpathyContactList *contact_list);
+
+EmpathyContact * empathy_contact_selector_dup_selected (EmpathyContactSelector *selector);
 
 G_END_DECLS