aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-contact-widget.h
diff options
context:
space:
mode:
authorXavier Claessens <xavier.claessens@collabora.co.uk>2012-07-29 19:24:57 +0800
committerXavier Claessens <xavier.claessens@collabora.co.uk>2012-07-30 14:56:45 +0800
commit37dcd4e5a120fd481a04443af2a0f3ffed8ea084 (patch)
tree6d4653c942aa1dff81afbac862e62a51c8081754 /libempathy-gtk/empathy-contact-widget.h
parentbbffdd1e25000b5883adbf788b471efd7ff6af01 (diff)
downloadgsoc2013-empathy-37dcd4e5a120fd481a04443af2a0f3ffed8ea084.tar
gsoc2013-empathy-37dcd4e5a120fd481a04443af2a0f3ffed8ea084.tar.gz
gsoc2013-empathy-37dcd4e5a120fd481a04443af2a0f3ffed8ea084.tar.bz2
gsoc2013-empathy-37dcd4e5a120fd481a04443af2a0f3ffed8ea084.tar.lz
gsoc2013-empathy-37dcd4e5a120fd481a04443af2a0f3ffed8ea084.tar.xz
gsoc2013-empathy-37dcd4e5a120fd481a04443af2a0f3ffed8ea084.tar.zst
gsoc2013-empathy-37dcd4e5a120fd481a04443af2a0f3ffed8ea084.zip
EmpathyContactWidget: remove all remaining flags
It can now be used only in one scenario: add a new contact dialog https://bugzilla.gnome.org/show_bug.cgi?id=680449
Diffstat (limited to 'libempathy-gtk/empathy-contact-widget.h')
-rw-r--r--libempathy-gtk/empathy-contact-widget.h31
1 files changed, 1 insertions, 30 deletions
diff --git a/libempathy-gtk/empathy-contact-widget.h b/libempathy-gtk/empathy-contact-widget.h
index 6979d161d..6f8045d3e 100644
--- a/libempathy-gtk/empathy-contact-widget.h
+++ b/libempathy-gtk/empathy-contact-widget.h
@@ -70,36 +70,7 @@ GType empathy_contact_widget_get_type (void);
EMPATHY_TYPE_CONTACT_WIDGET, \
EmpathyContactWidgetClass))
-/**
- * EmpathyContactWidgetFlags:
- * @EMPATHY_CONTACT_WIDGET_EDIT_NONE: Don't show any widgets to edit any details
- * of the contact. This should be the option for widgets that merely display
- * information about a contact.
- * @EMPATHY_CONTACT_WIDGET_EDIT_ALIAS: Show a #GtkEntry allowing changes to the
- * contact's alias.
- * @EMPATHY_CONTACT_WIDGET_EDIT_ACCOUNT: Show an #EmpathyAccountChooser allowing
- * changes to the contact's account.
- * @EMPATHY_CONTACT_WIDGET_EDIT_ID: Show a #GtkEntry allowing changes to the
- * contact's identifier.
- * @EMPATHY_CONTACT_WIDGET_EDIT_GROUPS: Show a widget to change the groups the
- * contact is in.
- * @EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP: Make widgets more designed for a tooltip.
- * For example, make widgets not selectable.
- *
- * Flags used when creating an #EmpathyContactWidget to specify which features
- * should be available.
- */
-typedef enum
-{
- EMPATHY_CONTACT_WIDGET_EDIT_NONE = 0,
- EMPATHY_CONTACT_WIDGET_EDIT_ALIAS = 1 << 0,
- EMPATHY_CONTACT_WIDGET_EDIT_ACCOUNT = 1 << 2,
- EMPATHY_CONTACT_WIDGET_EDIT_ID = 1 << 3,
- EMPATHY_CONTACT_WIDGET_EDIT_GROUPS = 1 << 4,
-} EmpathyContactWidgetFlags;
-
-GtkWidget * empathy_contact_widget_new (EmpathyContact *contact,
- EmpathyContactWidgetFlags flags);
+GtkWidget * empathy_contact_widget_new (EmpathyContact *contact);
EmpathyContact *empathy_contact_widget_get_contact (GtkWidget *widget);
void empathy_contact_widget_set_contact (GtkWidget *widget,
EmpathyContact *contact);