diff options
author | Xavier Claessens <xclaesse@gmail.com> | 2007-06-07 02:21:00 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2007-06-07 02:21:00 +0800 |
commit | 51f7f13d735f8db9ead25711641f2974c18b2737 (patch) | |
tree | 1ead7bbe3e4321ed9a48b03962a6345ef9a434ef /libempathy-gtk/empathy-contact-widget.h | |
parent | a79ee78e13ce6c890925e8fab0cc70c30c80cc8a (diff) | |
download | gsoc2013-empathy-51f7f13d735f8db9ead25711641f2974c18b2737.tar gsoc2013-empathy-51f7f13d735f8db9ead25711641f2974c18b2737.tar.gz gsoc2013-empathy-51f7f13d735f8db9ead25711641f2974c18b2737.tar.bz2 gsoc2013-empathy-51f7f13d735f8db9ead25711641f2974c18b2737.tar.lz gsoc2013-empathy-51f7f13d735f8db9ead25711641f2974c18b2737.tar.xz gsoc2013-empathy-51f7f13d735f8db9ead25711641f2974c18b2737.tar.zst gsoc2013-empathy-51f7f13d735f8db9ead25711641f2974c18b2737.zip |
EmpatchContactWidget has 2 modes: editable or not.
2007-06-06 Xavier Claessens <xclaesse@gmail.com>
* libempathy-gtk/empathy-contact-widget.glade:
* libempathy-gtk/empathy-contact-widget.c:
* libempathy-gtk/empathy-contact-widget.h:
* libempathy-gtk/empathy-subscription-dialog.c: EmpatchContactWidget
has 2 modes: editable or not.
svn path=/trunk/; revision=127
Diffstat (limited to 'libempathy-gtk/empathy-contact-widget.h')
-rw-r--r-- | libempathy-gtk/empathy-contact-widget.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libempathy-gtk/empathy-contact-widget.h b/libempathy-gtk/empathy-contact-widget.h index c61d97335..4b7102e8f 100644 --- a/libempathy-gtk/empathy-contact-widget.h +++ b/libempathy-gtk/empathy-contact-widget.h @@ -29,8 +29,10 @@ G_BEGIN_DECLS -GtkWidget * empathy_contact_widget_new (GossipContact *contact); -void empathy_contact_widget_save (GtkWidget *widget); +GtkWidget * empathy_contact_widget_new (GossipContact *contact, + gboolean editable); +void empathy_contact_widget_save (GtkWidget *widget); +GossipContact *empathy_contact_widget_get_contact (GtkWidget *widget); G_END_DECLS #endif /* __EMPATHY_CONTACT_WIDGET_H__ */ |