aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2012-05-11 21:21:02 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2012-06-14 15:21:45 +0800
commit44ca1d97c09703fd2738b6169d36aea69280dbb2 (patch)
tree99863f34f4d42f63c56afa4949b7da5c579a5266
parenta4314139d588a7bee5e7c7da31a3b865b5b9b1e8 (diff)
downloadgsoc2013-empathy-44ca1d97c09703fd2738b6169d36aea69280dbb2.tar
gsoc2013-empathy-44ca1d97c09703fd2738b6169d36aea69280dbb2.tar.gz
gsoc2013-empathy-44ca1d97c09703fd2738b6169d36aea69280dbb2.tar.bz2
gsoc2013-empathy-44ca1d97c09703fd2738b6169d36aea69280dbb2.tar.lz
gsoc2013-empathy-44ca1d97c09703fd2738b6169d36aea69280dbb2.tar.xz
gsoc2013-empathy-44ca1d97c09703fd2738b6169d36aea69280dbb2.tar.zst
gsoc2013-empathy-44ca1d97c09703fd2738b6169d36aea69280dbb2.zip
create roster-view skeleton
-rw-r--r--libempathy-gtk/Makefile.am2
-rw-r--r--libempathy-gtk/empathy-roster-view.c147
-rw-r--r--libempathy-gtk/empathy-roster-view.h58
3 files changed, 207 insertions, 0 deletions
diff --git a/libempathy-gtk/Makefile.am b/libempathy-gtk/Makefile.am
index e1ceceabc..d681b6d6c 100644
--- a/libempathy-gtk/Makefile.am
+++ b/libempathy-gtk/Makefile.am
@@ -78,6 +78,7 @@ libempathy_gtk_handwritten_source = \
empathy-password-dialog.c \
empathy-presence-chooser.c \
empathy-protocol-chooser.c \
+ empathy-roster-view.c \
empathy-search-bar.c \
empathy-share-my-desktop.c \
empathy-smiley-manager.c \
@@ -146,6 +147,7 @@ libempathy_gtk_headers = \
empathy-password-dialog.h \
empathy-presence-chooser.h \
empathy-protocol-chooser.h \
+ empathy-roster-view.h \
empathy-search-bar.h \
empathy-share-my-desktop.h \
empathy-smiley-manager.h \
diff --git a/libempathy-gtk/empathy-roster-view.c b/libempathy-gtk/empathy-roster-view.c
new file mode 100644
index 000000000..1baefe22b
--- /dev/null
+++ b/libempathy-gtk/empathy-roster-view.c
@@ -0,0 +1,147 @@
+
+#include "config.h"
+
+#include "empathy-roster-view.h"
+
+G_DEFINE_TYPE (EmpathyRosterView, empathy_roster_view, EGG_TYPE_LIST_BOX)
+
+enum
+{
+ PROP_MANAGER = 1,
+ N_PROPS
+};
+
+/*
+enum
+{
+ LAST_SIGNAL
+};
+
+static guint signals[LAST_SIGNAL];
+*/
+
+struct _EmpathyRosterViewPriv
+{
+ EmpathyIndividualManager *manager;
+};
+
+static void
+empathy_roster_view_get_property (GObject *object,
+ guint property_id,
+ GValue *value,
+ GParamSpec *pspec)
+{
+ EmpathyRosterView *self = EMPATHY_ROSTER_VIEW (object);
+
+ switch (property_id)
+ {
+ case PROP_MANAGER:
+ g_value_set_object (value, self->priv->manager);
+ break;
+ default:
+ G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
+ break;
+ }
+}
+
+static void
+empathy_roster_view_set_property (GObject *object,
+ guint property_id,
+ const GValue *value,
+ GParamSpec *pspec)
+{
+ EmpathyRosterView *self = EMPATHY_ROSTER_VIEW (object);
+
+ switch (property_id)
+ {
+ case PROP_MANAGER:
+ g_assert (self->priv->manager == NULL); /* construct only */
+ self->priv->manager = g_value_dup_object (value);
+ break;
+ default:
+ G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
+ break;
+ }
+}
+
+static void
+empathy_roster_view_constructed (GObject *object)
+{
+ EmpathyRosterView *self = EMPATHY_ROSTER_VIEW (object);
+ void (*chain_up) (GObject *) =
+ ((GObjectClass *) empathy_roster_view_parent_class)->constructed;
+
+ if (chain_up != NULL)
+ chain_up (object);
+
+ g_assert (EMPATHY_IS_INDIVIDUAL_MANAGER (self->priv->manager));
+}
+
+static void
+empathy_roster_view_dispose (GObject *object)
+{
+ EmpathyRosterView *self = EMPATHY_ROSTER_VIEW (object);
+ void (*chain_up) (GObject *) =
+ ((GObjectClass *) empathy_roster_view_parent_class)->dispose;
+
+ g_clear_object (&self->priv->manager);
+
+ if (chain_up != NULL)
+ chain_up (object);
+}
+
+static void
+empathy_roster_view_finalize (GObject *object)
+{
+ //EmpathyRosterView *self = EMPATHY_ROSTER_VIEW (object);
+ void (*chain_up) (GObject *) =
+ ((GObjectClass *) empathy_roster_view_parent_class)->finalize;
+
+ if (chain_up != NULL)
+ chain_up (object);
+}
+
+static void
+empathy_roster_view_class_init (
+ EmpathyRosterViewClass *klass)
+{
+ GObjectClass *oclass = G_OBJECT_CLASS (klass);
+ GParamSpec *spec;
+
+ oclass->get_property = empathy_roster_view_get_property;
+ oclass->set_property = empathy_roster_view_set_property;
+ oclass->constructed = empathy_roster_view_constructed;
+ oclass->dispose = empathy_roster_view_dispose;
+ oclass->finalize = empathy_roster_view_finalize;
+
+ spec = g_param_spec_object ("manager", "Manager",
+ "EmpathyIndividualManager",
+ EMPATHY_TYPE_INDIVIDUAL_MANAGER,
+ G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS);
+ g_object_class_install_property (oclass, PROP_MANAGER, spec);
+
+ g_type_class_add_private (klass, sizeof (EmpathyRosterViewPriv));
+}
+
+static void
+empathy_roster_view_init (EmpathyRosterView *self)
+{
+ self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self,
+ EMPATHY_TYPE_ROSTER_VIEW, EmpathyRosterViewPriv);
+}
+
+GtkWidget *
+empathy_roster_view_new (EmpathyIndividualManager *manager)
+{
+ g_return_val_if_fail (EMPATHY_IS_INDIVIDUAL_MANAGER (manager), NULL);
+
+ return g_object_new (EMPATHY_TYPE_ROSTER_VIEW,
+ "manager", manager,
+ NULL);
+}
+
+EmpathyIndividualManager *
+empathy_roster_view_get_manager (EmpathyRosterView *self)
+{
+ return self->priv->manager;
+}
diff --git a/libempathy-gtk/empathy-roster-view.h b/libempathy-gtk/empathy-roster-view.h
new file mode 100644
index 000000000..2567e75d2
--- /dev/null
+++ b/libempathy-gtk/empathy-roster-view.h
@@ -0,0 +1,58 @@
+
+#ifndef __EMPATHY_ROSTER_VIEW_H__
+#define __EMPATHY_ROSTER_VIEW_H__
+
+#include <libempathy-gtk/egg-list-box/egg-list-box.h>
+#include <libempathy/empathy-individual-manager.h>
+
+G_BEGIN_DECLS
+
+typedef struct _EmpathyRosterView EmpathyRosterView;
+typedef struct _EmpathyRosterViewClass EmpathyRosterViewClass;
+typedef struct _EmpathyRosterViewPriv EmpathyRosterViewPriv;
+
+struct _EmpathyRosterViewClass
+{
+ /*<private>*/
+ EggListBoxClass parent_class;
+};
+
+struct _EmpathyRosterView
+{
+ /*<private>*/
+ EggListBox parent;
+ EmpathyRosterViewPriv *priv;
+};
+
+GType empathy_roster_view_get_type (void);
+
+/* TYPE MACROS */
+#define EMPATHY_TYPE_ROSTER_VIEW \
+ (empathy_roster_view_get_type ())
+#define EMPATHY_ROSTER_VIEW(obj) \
+ (G_TYPE_CHECK_INSTANCE_CAST((obj), \
+ EMPATHY_TYPE_ROSTER_VIEW, \
+ EmpathyRosterView))
+#define EMPATHY_ROSTER_VIEW_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_CAST((klass), \
+ EMPATHY_TYPE_ROSTER_VIEW, \
+ EmpathyRosterViewClass))
+#define EMPATHY_IS_ROSTER_VIEW(obj) \
+ (G_TYPE_CHECK_INSTANCE_TYPE((obj), \
+ EMPATHY_TYPE_ROSTER_VIEW))
+#define EMPATHY_IS_ROSTER_VIEW_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_TYPE((klass), \
+ EMPATHY_TYPE_ROSTER_VIEW))
+#define EMPATHY_ROSTER_VIEW_GET_CLASS(obj) \
+ (G_TYPE_INSTANCE_GET_CLASS ((obj), \
+ EMPATHY_TYPE_ROSTER_VIEW, \
+ EmpathyRosterViewClass))
+
+GtkWidget * empathy_roster_view_new (EmpathyIndividualManager *manager);
+
+EmpathyIndividualManager * empathy_roster_view_get_manager (
+ EmpathyRosterView *self);
+
+G_END_DECLS
+
+#endif /* #ifndef __EMPATHY_ROSTER_VIEW_H__*/