aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorxclaesse <xclaesse@4ee84921-47dd-4033-b63a-18d7a039a3e4>2008-11-11 23:26:02 +0800
committerxclaesse <xclaesse@4ee84921-47dd-4033-b63a-18d7a039a3e4>2008-11-11 23:26:02 +0800
commit6f936f87db92e82e9551651b62a6974e2f8121ab (patch)
treeadce31f72460b7d1c333f6f3d36c97fab3edd486
parent35dc84baa8d733b382a8137a3613b69be2d5f366 (diff)
downloadgsoc2013-empathy-6f936f87db92e82e9551651b62a6974e2f8121ab.tar
gsoc2013-empathy-6f936f87db92e82e9551651b62a6974e2f8121ab.tar.gz
gsoc2013-empathy-6f936f87db92e82e9551651b62a6974e2f8121ab.tar.bz2
gsoc2013-empathy-6f936f87db92e82e9551651b62a6974e2f8121ab.tar.lz
gsoc2013-empathy-6f936f87db92e82e9551651b62a6974e2f8121ab.tar.xz
gsoc2013-empathy-6f936f87db92e82e9551651b62a6974e2f8121ab.tar.zst
gsoc2013-empathy-6f936f87db92e82e9551651b62a6974e2f8121ab.zip
AvatarChooser: Add McAccount and EmpathyContactFactory properties
git-svn-id: svn+ssh://svn.gnome.org/svn/empathy/trunk@1675 4ee84921-47dd-4033-b63a-18d7a039a3e4
-rw-r--r--libempathy-gtk/empathy-avatar-chooser.c98
-rw-r--r--libempathy-gtk/empathy-avatar-chooser.h3
-rw-r--r--libempathy-gtk/empathy-contact-widget.c3
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);