diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-11-11 23:26:02 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-11-11 23:26:02 +0800 |
commit | 1025757ce5cfcf597acf3c1a813cada46f29fa46 (patch) | |
tree | adce31f72460b7d1c333f6f3d36c97fab3edd486 /libempathy-gtk | |
parent | 2361ab657ab433c9566f289c77e92ced7f468d86 (diff) | |
download | gsoc2013-empathy-1025757ce5cfcf597acf3c1a813cada46f29fa46.tar gsoc2013-empathy-1025757ce5cfcf597acf3c1a813cada46f29fa46.tar.gz gsoc2013-empathy-1025757ce5cfcf597acf3c1a813cada46f29fa46.tar.bz2 gsoc2013-empathy-1025757ce5cfcf597acf3c1a813cada46f29fa46.tar.lz gsoc2013-empathy-1025757ce5cfcf597acf3c1a813cada46f29fa46.tar.xz gsoc2013-empathy-1025757ce5cfcf597acf3c1a813cada46f29fa46.tar.zst gsoc2013-empathy-1025757ce5cfcf597acf3c1a813cada46f29fa46.zip |
AvatarChooser: Add McAccount and EmpathyContactFactory properties
svn path=/trunk/; revision=1675
Diffstat (limited to 'libempathy-gtk')
-rw-r--r-- | libempathy-gtk/empathy-avatar-chooser.c | 98 | ||||
-rw-r--r-- | libempathy-gtk/empathy-avatar-chooser.h | 3 | ||||
-rw-r--r-- | libempathy-gtk/empathy-contact-widget.c | 3 |
3 files changed, 100 insertions, 4 deletions
diff --git a/libempathy-gtk/empathy-avatar-chooser.c b/libempathy-gtk/empathy-avatar-chooser.c index 4a181d3f2..41c01a46f 100644 --- a/libempathy-gtk/empathy-avatar-chooser.c +++ b/libempathy-gtk/empathy-avatar-chooser.c @@ -43,6 +43,9 @@ #define GET_PRIV(obj) EMPATHY_GET_PRIV (obj, EmpathyAvatarChooser) typedef struct { + EmpathyContactFactory *contact_factory; + McAccount *account; + gchar *image_data; gsize image_data_size; gchar *mime_type; @@ -84,6 +87,12 @@ enum { LAST_SIGNAL }; +enum { + PROP_0, + PROP_CONTACT_FACTORY, + PROP_ACCOUNT +}; + static guint signals [LAST_SIGNAL]; G_DEFINE_TYPE (EmpathyAvatarChooser, empathy_avatar_chooser, GTK_TYPE_BUTTON); @@ -102,11 +111,67 @@ static const GtkTargetEntry drop_types[] = { }; static void +empathy_avatar_chooser_get_property (GObject *object, + guint param_id, + GValue *value, + GParamSpec *pspec) +{ + EmpathyAvatarChooserPriv *priv = GET_PRIV (object); + + switch (param_id) { + case PROP_CONTACT_FACTORY: + g_assert (priv->contact_factory != NULL); + g_value_set_object (value, priv->contact_factory); + break; + case PROP_ACCOUNT: + g_value_set_object (value, priv->account); + break; + default: + G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec); + break; + } +} + +static void +empathy_avatar_chooser_set_property (GObject *object, + guint param_id, + const GValue *value, + GParamSpec *pspec) +{ + EmpathyAvatarChooser *self = EMPATHY_AVATAR_CHOOSER (object); + EmpathyAvatarChooserPriv *priv = GET_PRIV (self); + + switch (param_id) { + case PROP_CONTACT_FACTORY: + priv->contact_factory = g_value_get_object (value); + + g_assert (priv->contact_factory != NULL); + g_object_ref (priv->contact_factory); + + break; + case PROP_ACCOUNT: + if (priv->account) + g_object_unref (priv->account); + + priv->account = g_value_get_object (value); + if (priv->account) + g_object_ref (priv->account); + break; + default: + G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec); + break; + } +} + +static void empathy_avatar_chooser_class_init (EmpathyAvatarChooserClass *klass) { GObjectClass *object_class = G_OBJECT_CLASS (klass); + GParamSpec *param_spec; object_class->finalize = avatar_chooser_finalize; + object_class->get_property = empathy_avatar_chooser_get_property; + object_class->set_property = empathy_avatar_chooser_set_property; signals[CHANGED] = g_signal_new ("changed", @@ -117,6 +182,29 @@ empathy_avatar_chooser_class_init (EmpathyAvatarChooserClass *klass) g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); + param_spec = g_param_spec_object ("contact-factory", + "EmpathyContactFactory instance", + "EmpathyContactFactory instance " + "(may not be NULL)", + EMPATHY_TYPE_CONTACT_FACTORY, + G_PARAM_CONSTRUCT_ONLY | + G_PARAM_READWRITE | + G_PARAM_STATIC_STRINGS); + g_object_class_install_property (object_class, + PROP_CONTACT_FACTORY, + param_spec); + + param_spec = g_param_spec_object ("account", + "McAccount", + "McAccount whose avatar should be " + "shown and modified by this widget", + MC_TYPE_ACCOUNT, + G_PARAM_READWRITE | + G_PARAM_STATIC_STRINGS); + g_object_class_install_property (object_class, + PROP_ACCOUNT, + param_spec); + g_type_class_add_private (object_class, sizeof (EmpathyAvatarChooserPriv)); } @@ -159,6 +247,10 @@ avatar_chooser_finalize (GObject *object) priv = GET_PRIV (object); + g_object_unref (priv->contact_factory); + if (priv->account) + g_object_unref (priv->account); + g_free (priv->image_data); g_free (priv->mime_type); @@ -542,9 +634,11 @@ avatar_chooser_clicked_cb (GtkWidget *button, } GtkWidget * -empathy_avatar_chooser_new (void) +empathy_avatar_chooser_new (EmpathyContactFactory *contact_factory) { - return g_object_new (EMPATHY_TYPE_AVATAR_CHOOSER, NULL); + return g_object_new (EMPATHY_TYPE_AVATAR_CHOOSER, + "contact-factory", contact_factory, + NULL); } void diff --git a/libempathy-gtk/empathy-avatar-chooser.h b/libempathy-gtk/empathy-avatar-chooser.h index bdc5b40ae..1e1b2e090 100644 --- a/libempathy-gtk/empathy-avatar-chooser.h +++ b/libempathy-gtk/empathy-avatar-chooser.h @@ -27,6 +27,7 @@ #include <gtk/gtkbutton.h> #include <libempathy/empathy-contact.h> +#include <libempathy/empathy-contact-factory.h> G_BEGIN_DECLS @@ -49,7 +50,7 @@ struct _EmpathyAvatarChooserClass { }; GType empathy_avatar_chooser_get_type (void); -GtkWidget *empathy_avatar_chooser_new (void); +GtkWidget *empathy_avatar_chooser_new (EmpathyContactFactory *contact_factory); void empathy_avatar_chooser_set (EmpathyAvatarChooser *chooser, EmpathyAvatar *avatar); void empathy_avatar_chooser_get_image_data (EmpathyAvatarChooser *chooser, diff --git a/libempathy-gtk/empathy-contact-widget.c b/libempathy-gtk/empathy-contact-widget.c index acd3e19ee..6b70bcaaf 100644 --- a/libempathy-gtk/empathy-contact-widget.c +++ b/libempathy-gtk/empathy-contact-widget.c @@ -497,7 +497,8 @@ contact_widget_contact_setup (EmpathyContactWidget *information) { if (information->flags & EMPATHY_CONTACT_WIDGET_EDIT_AVATAR) { - information->widget_avatar = empathy_avatar_chooser_new (); + information->widget_avatar = empathy_avatar_chooser_new ( + information->factory); g_signal_connect (information->widget_avatar, "changed", G_CALLBACK (contact_widget_avatar_changed_cb), information); |