diff options
author | Xavier Claessens <xclaesse@gmail.com> | 2007-06-06 23:03:06 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2007-06-06 23:03:06 +0800 |
commit | c063bac41998b5106743a47426b737ab7c59640d (patch) | |
tree | 5df8c2dc46ede948a234291709eff25ce44e3f55 /libempathy-gtk/empathy-status-icon.c | |
parent | 976d656a08ded1864324b6060ef035ffcb0b833b (diff) | |
download | gsoc2013-empathy-c063bac41998b5106743a47426b737ab7c59640d.tar gsoc2013-empathy-c063bac41998b5106743a47426b737ab7c59640d.tar.gz gsoc2013-empathy-c063bac41998b5106743a47426b737ab7c59640d.tar.bz2 gsoc2013-empathy-c063bac41998b5106743a47426b737ab7c59640d.tar.lz gsoc2013-empathy-c063bac41998b5106743a47426b737ab7c59640d.tar.xz gsoc2013-empathy-c063bac41998b5106743a47426b737ab7c59640d.tar.zst gsoc2013-empathy-c063bac41998b5106743a47426b737ab7c59640d.zip |
New widget: EmpathyContactWidget. It displays information about a contact,
2007-06-06 Xavier Claessens <xclaesse@gmail.com>
* libempathy-gtk/empathy-status-icon.c:
* libempathy-gtk/empathy-contact-widget.glade:
* libempathy-gtk/empathy-contact-widget.c:
* libempathy-gtk/empathy-contact-widget.h:
* libempathy-gtk/Makefile.am: New widget: EmpathyContactWidget. It
displays information about a contact, it can be used in any kind of
dialog which needs to display contact information like alias, groups,
avatar, etc. If the contact is the selfcontact information are editable.
* libempathy/empathy-tp-contact-list.c: Do not take care of subscription
changes.
* libempathy/gossip-contact.c: Use
gossip_presence_state_get_default_status (MC_PRESENCE_OFFLINE)
when there is no presence.
svn path=/trunk/; revision=124
Diffstat (limited to 'libempathy-gtk/empathy-status-icon.c')
-rw-r--r-- | libempathy-gtk/empathy-status-icon.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-status-icon.c b/libempathy-gtk/empathy-status-icon.c index 5c364083b..17fa9e5dc 100644 --- a/libempathy-gtk/empathy-status-icon.c +++ b/libempathy-gtk/empathy-status-icon.c @@ -39,6 +39,7 @@ #include <libempathy/empathy-idle.h> #include "empathy-status-icon.h" +#include "empathy-contact-widget.h" #include "gossip-presence-chooser.h" #include "gossip-preferences.h" #include "gossip-ui-utils.h" @@ -463,6 +464,8 @@ status_icon_event_subscribe_cb (StatusIconEvent *event) contact = GOSSIP_CONTACT (event->user_data); + //empathy_subscription_dialog_show (contact); + g_object_unref (contact); } |