diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-11-12 20:05:14 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-11-13 19:37:15 +0800 |
commit | 4c0ea57b6d3a4c77a27326c83ebaaffec194dd18 (patch) | |
tree | ef83fea5c62ce6dc454d1e4bc0b73b985e680c52 | |
parent | e02025bf48c753213d2a5af7cc2c38823f2d13dc (diff) | |
download | gsoc2013-empathy-4c0ea57b6d3a4c77a27326c83ebaaffec194dd18.tar gsoc2013-empathy-4c0ea57b6d3a4c77a27326c83ebaaffec194dd18.tar.gz gsoc2013-empathy-4c0ea57b6d3a4c77a27326c83ebaaffec194dd18.tar.bz2 gsoc2013-empathy-4c0ea57b6d3a4c77a27326c83ebaaffec194dd18.tar.lz gsoc2013-empathy-4c0ea57b6d3a4c77a27326c83ebaaffec194dd18.tar.xz gsoc2013-empathy-4c0ea57b6d3a4c77a27326c83ebaaffec194dd18.tar.zst gsoc2013-empathy-4c0ea57b6d3a4c77a27326c83ebaaffec194dd18.zip |
add stub EmpathyNotifyManager (#601691)
-rw-r--r-- | libempathy-gtk/Makefile.am | 2 | ||||
-rw-r--r-- | libempathy-gtk/empathy-notify-manager.c | 112 | ||||
-rw-r--r-- | libempathy-gtk/empathy-notify-manager.h | 56 |
3 files changed, 170 insertions, 0 deletions
diff --git a/libempathy-gtk/Makefile.am b/libempathy-gtk/Makefile.am index e3e5b847c..d5b05e4e3 100644 --- a/libempathy-gtk/Makefile.am +++ b/libempathy-gtk/Makefile.am @@ -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 index 000000000..6d2648fe6 --- /dev/null +++ b/libempathy-gtk/empathy-notify-manager.c @@ -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) ¬ify_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 index 000000000..dff4238df --- /dev/null +++ b/libempathy-gtk/empathy-notify-manager.h @@ -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__ */ |