diff options
author | Xavier Claessens <xclaesse@gmail.com> | 2007-09-09 03:15:34 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2007-09-09 03:15:34 +0800 |
commit | d3e46f8c3570d2486eeab6255899daaaf308b036 (patch) | |
tree | bac0e9570e62a84efa9dbc317976f5a8fadb63b2 /libempathy/empathy-contact.h | |
parent | c84cf8d5e36241d2ccb48589496f4d54752a5c54 (diff) | |
download | gsoc2013-empathy-d3e46f8c3570d2486eeab6255899daaaf308b036.tar gsoc2013-empathy-d3e46f8c3570d2486eeab6255899daaaf308b036.tar.gz gsoc2013-empathy-d3e46f8c3570d2486eeab6255899daaaf308b036.tar.bz2 gsoc2013-empathy-d3e46f8c3570d2486eeab6255899daaaf308b036.tar.lz gsoc2013-empathy-d3e46f8c3570d2486eeab6255899daaaf308b036.tar.xz gsoc2013-empathy-d3e46f8c3570d2486eeab6255899daaaf308b036.tar.zst gsoc2013-empathy-d3e46f8c3570d2486eeab6255899daaaf308b036.zip |
Adding capabilities contact property.
2007-09-08 Xavier Claessens <xclaesse@gmail.com>
* libempathy/empathy-contact.c:
* libempathy/empathy-contact.h:
* libempathy/empathy-contact-factory.c: Adding capabilities contact
property.
svn path=/trunk/; revision=291
Diffstat (limited to 'libempathy/empathy-contact.h')
-rw-r--r-- | libempathy/empathy-contact.h | 70 |
1 files changed, 39 insertions, 31 deletions
diff --git a/libempathy/empathy-contact.h b/libempathy/empathy-contact.h index 87a26f0dd..d062885bc 100644 --- a/libempathy/empathy-contact.h +++ b/libempathy/empathy-contact.h @@ -53,37 +53,45 @@ struct _EmpathyContactClass { GObjectClass parent_class; }; -GType empathy_contact_get_type (void) G_GNUC_CONST; -EmpathyContact * empathy_contact_new (McAccount *account); -EmpathyContact * empathy_contact_new_full (McAccount *account, - const gchar *id, - const gchar *name); -const gchar * empathy_contact_get_id (EmpathyContact *contact); -void empathy_contact_set_id (EmpathyContact *contact, - const gchar *id); -const gchar * empathy_contact_get_name (EmpathyContact *contact); -void empathy_contact_set_name (EmpathyContact *contact, - const gchar *name); -EmpathyAvatar * empathy_contact_get_avatar (EmpathyContact *contact); -void empathy_contact_set_avatar (EmpathyContact *contact, - EmpathyAvatar *avatar); -McAccount * empathy_contact_get_account (EmpathyContact *contact); -void empathy_contact_set_account (EmpathyContact *contact, - McAccount *account); -EmpathyPresence * empathy_contact_get_presence (EmpathyContact *contact); -void empathy_contact_set_presence (EmpathyContact *contact, - EmpathyPresence *presence); -guint empathy_contact_get_handle (EmpathyContact *contact); -void empathy_contact_set_handle (EmpathyContact *contact, - guint handle); -gboolean empathy_contact_is_user (EmpathyContact *contact); -void empathy_contact_set_is_user (EmpathyContact *contact, - gboolean is_user); -gboolean empathy_contact_is_online (EmpathyContact *contact); -const gchar * empathy_contact_get_status (EmpathyContact *contact); -gboolean empathy_contact_equal (gconstpointer v1, - gconstpointer v2); -guint empathy_contact_hash (gconstpointer key); +typedef enum { + EMPATHY_CAPABILITIES_AUDIO = 1 << 0, + EMPATHY_CAPABILITIES_VIDEO = 1 << 1, +} EmpathyCapabilities; + +GType empathy_contact_get_type (void) G_GNUC_CONST; +EmpathyContact * empathy_contact_new (McAccount *account); +EmpathyContact * empathy_contact_new_full (McAccount *account, + const gchar *id, + const gchar *name); +const gchar * empathy_contact_get_id (EmpathyContact *contact); +void empathy_contact_set_id (EmpathyContact *contact, + const gchar *id); +const gchar * empathy_contact_get_name (EmpathyContact *contact); +void empathy_contact_set_name (EmpathyContact *contact, + const gchar *name); +EmpathyAvatar * empathy_contact_get_avatar (EmpathyContact *contact); +void empathy_contact_set_avatar (EmpathyContact *contact, + EmpathyAvatar *avatar); +McAccount * empathy_contact_get_account (EmpathyContact *contact); +void empathy_contact_set_account (EmpathyContact *contact, + McAccount *account); +EmpathyPresence * empathy_contact_get_presence (EmpathyContact *contact); +void empathy_contact_set_presence (EmpathyContact *contact, + EmpathyPresence *presence); +guint empathy_contact_get_handle (EmpathyContact *contact); +void empathy_contact_set_handle (EmpathyContact *contact, + guint handle); +EmpathyCapabilities empathy_contact_get_capabilities (EmpathyContact *contact); +void empathy_contact_set_capabilities (EmpathyContact *contact, + EmpathyCapabilities capabilities); +gboolean empathy_contact_is_user (EmpathyContact *contact); +void empathy_contact_set_is_user (EmpathyContact *contact, + gboolean is_user); +gboolean empathy_contact_is_online (EmpathyContact *contact); +const gchar * empathy_contact_get_status (EmpathyContact *contact); +gboolean empathy_contact_equal (gconstpointer v1, + gconstpointer v2); +guint empathy_contact_hash (gconstpointer key); G_END_DECLS |