]> git.0d.be Git - empathy.git/commitdiff
create roster-view skeleton
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Fri, 11 May 2012 13:21:02 +0000 (15:21 +0200)
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Thu, 14 Jun 2012 07:21:45 +0000 (09:21 +0200)
libempathy-gtk/Makefile.am
libempathy-gtk/empathy-roster-view.c [new file with mode: 0644]
libempathy-gtk/empathy-roster-view.h [new file with mode: 0644]

index e1ceceabc000ee373cd2efd45c50ba465aef615a..d681b6d6ce578770e00ac4d984c771b98b90f1b4 100644 (file)
@@ -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 (file)
index 0000000..1baefe2
--- /dev/null
@@ -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 (file)
index 0000000..2567e75
--- /dev/null
@@ -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__*/