]> git.0d.be Git - empathy.git/commitdiff
add stub EmpathyNotifyManager (#601691)
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Thu, 12 Nov 2009 12:05:14 +0000 (12:05 +0000)
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Fri, 13 Nov 2009 11:37:15 +0000 (11:37 +0000)
libempathy-gtk/Makefile.am
libempathy-gtk/empathy-notify-manager.c [new file with mode: 0644]
libempathy-gtk/empathy-notify-manager.h [new file with mode: 0644]

index e3e5b847cd0059f6c07a8dfcee4145d2a0dcae10..d5b05e4e3d4f0a992661695e2117c8a297020073 100644 (file)
@@ -53,6 +53,7 @@ libempathy_gtk_handwritten_source =                   \
        empathy-kludge-label.c                  \
        empathy-log-window.c                    \
        empathy-new-message-dialog.c            \
+       empathy-notify-manager.c                \
        empathy-presence-chooser.c              \
        empathy-protocol-chooser.c              \
        empathy-share-my-desktop.c              \
@@ -95,6 +96,7 @@ libempathy_gtk_headers =                      \
        empathy-kludge-label.h                  \
        empathy-log-window.h                    \
        empathy-new-message-dialog.h            \
+       empathy-notify-manager.h                \
        empathy-presence-chooser.h              \
        empathy-protocol-chooser.h              \
        empathy-share-my-desktop.h              \
diff --git a/libempathy-gtk/empathy-notify-manager.c b/libempathy-gtk/empathy-notify-manager.c
new file mode 100644 (file)
index 0000000..6d2648f
--- /dev/null
@@ -0,0 +1,112 @@
+/* * Copyright (C) 2009 Collabora Ltd.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+ *
+ * Authors: Guillaume Desmottes <guillaume.desmottes@collabora.co.uk>
+ */
+
+#include <config.h>
+#include <string.h>
+
+#include <libnotify/notification.h>
+#include <libnotify/notify.h>
+
+#include <libempathy/empathy-utils.h>
+
+#define DEBUG_FLAG EMPATHY_DEBUG_OTHER
+#include <libempathy/empathy-debug.h>
+
+#include "empathy-notify-manager.h"
+
+#define GET_PRIV(obj) EMPATHY_GET_PRIV (obj, EmpathyNotifyManager)
+
+typedef struct
+{
+  gboolean dispose_has_run;
+
+} EmpathyNotifyManagerPriv;
+
+G_DEFINE_TYPE (EmpathyNotifyManager, empathy_notify_manager, G_TYPE_OBJECT);
+
+static EmpathyNotifyManager *notify_manager = NULL;
+
+static GObject *
+notify_manager_constructor (GType type,
+    guint n_construct_params,
+    GObjectConstructParam *construct_params)
+{
+  GObject *retval;
+  EmpathyNotifyManagerPriv *priv;
+
+  if (notify_manager != NULL)
+    return g_object_ref (notify_manager);
+
+  retval = G_OBJECT_CLASS (empathy_notify_manager_parent_class)->constructor
+    (type, n_construct_params, construct_params);
+
+  notify_manager = EMPATHY_NOTIFY_MANAGER (retval);
+  g_object_add_weak_pointer (retval, (gpointer) &notify_manager);
+
+  priv = GET_PRIV (notify_manager);
+
+  return retval;
+}
+
+static void
+notify_manager_dispose (GObject *object)
+{
+  EmpathyNotifyManagerPriv *priv = GET_PRIV (object);
+
+  if (priv->dispose_has_run)
+    return;
+
+  priv->dispose_has_run = TRUE;
+
+  G_OBJECT_CLASS (empathy_notify_manager_parent_class)->dispose (object);
+}
+
+static void
+notify_manager_finalize (GObject *object)
+{
+  G_OBJECT_CLASS (empathy_notify_manager_parent_class)->finalize (object);
+}
+
+static void
+empathy_notify_manager_class_init (EmpathyNotifyManagerClass *klass)
+{
+  GObjectClass *object_class = G_OBJECT_CLASS (klass);
+
+  object_class->dispose = notify_manager_dispose;
+  object_class->finalize = notify_manager_finalize;
+  object_class->constructor = notify_manager_constructor;
+
+  g_type_class_add_private (object_class, sizeof (EmpathyNotifyManagerPriv));
+}
+
+static void
+empathy_notify_manager_init (EmpathyNotifyManager *self)
+{
+  EmpathyNotifyManagerPriv *priv = G_TYPE_INSTANCE_GET_PRIVATE (self,
+    EMPATHY_TYPE_NOTIFY_MANAGER, EmpathyNotifyManagerPriv);
+
+  self->priv = priv;
+}
+
+EmpathyNotifyManager *
+empathy_notify_manager_dup_singleton (void)
+{
+  return EMPATHY_NOTIFY_MANAGER (g_object_new (EMPATHY_TYPE_NOTIFY_MANAGER,
+        NULL));
+}
diff --git a/libempathy-gtk/empathy-notify-manager.h b/libempathy-gtk/empathy-notify-manager.h
new file mode 100644 (file)
index 0000000..dff4238
--- /dev/null
@@ -0,0 +1,56 @@
+/*
+ * Copyright (C) 2009 Collabora Ltd.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+ *
+ * Authors: Guillaume Desmottes <guillaume.desmottes@collabora.co.uk>
+ */
+
+#ifndef __EMPATHY_NOTIFY_MANAGER_H__
+#define __EMPATHY_NOTIFY_MANAGER_H__
+
+#include <glib-object.h>
+
+G_BEGIN_DECLS
+
+#define EMPATHY_TYPE_NOTIFY_MANAGER         (empathy_notify_manager_get_type ())
+#define EMPATHY_NOTIFY_MANAGER(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), EMPATHY_TYPE_NOTIFY_MANAGER, EmpathyNotifyManager))
+#define EMPATHY_NOTIFY_MANAGER_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST((k), EMPATHY_TYPE_NOTIFY_MANAGER, EmpathyNotifyManagerClass))
+#define EMPATHY_IS_NOTIFY_MANAGER(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), EMPATHY_TYPE_NOTIFY_MANAGER))
+#define EMPATHY_IS_NOTIFY_MANAGER_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), EMPATHY_TYPE_NOTIFY_MANAGER))
+#define EMPATHY_NOTIFY_MANAGER_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EMPATHY_TYPE_NOTIFY_MANAGER, EmpathyNotifyManagerClass))
+
+typedef struct _EmpathyNotifyManager      EmpathyNotifyManager;
+typedef struct _EmpathyNotifyManagerClass EmpathyNotifyManagerClass;
+
+struct _EmpathyNotifyManager
+{
+  GObject parent;
+  gpointer priv;
+};
+
+struct _EmpathyNotifyManagerClass
+{
+ GObjectClass parent_class;
+};
+
+GType empathy_notify_manager_get_type (void) G_GNUC_CONST;
+
+/* Get the notify_manager singleton */
+EmpathyNotifyManager * empathy_notify_manager_dup_singleton (void);
+
+G_END_DECLS
+
+#endif /* __EMPATHY_NOTIFY_MANAGER_H__ */