summaryrefslogtreecommitdiff
path: root/src/xfpm-notify.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/xfpm-notify.c')
-rw-r--r--src/xfpm-notify.c97
1 files changed, 97 insertions, 0 deletions
diff --git a/src/xfpm-notify.c b/src/xfpm-notify.c
new file mode 100644
index 00000000..586fe7ed
--- /dev/null
+++ b/src/xfpm-notify.c
@@ -0,0 +1,97 @@
+/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*-
+ *
+ * * Copyright (C) 2008 Ali <ali.slackware@gmail.com>
+ *
+ * Licensed under the GNU General Public License Version 2
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program 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 General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#include "xfpm-common.h"
+#include "xfpm-notify.h"
+
+#ifdef HAVE_LIBNOTIFY
+static NotifyNotification *
+xfpm_notify_create_notification(const char *title,const char *message,
+ const gchar *icon_name,GtkStatusIcon *icon)
+{
+ NotifyNotification *n;
+ if ( icon != NULL )
+ {
+ n = notify_notification_new_with_status_icon(title,message,NULL,icon);
+ }
+ else
+ {
+ n = notify_notification_new(title,message,NULL,NULL);
+ }
+ if ( icon_name != NULL ) {
+ GdkPixbuf *pixbuf = xfpm_load_icon(icon_name,48);
+ if (pixbuf)
+ {
+ notify_notification_set_icon_from_pixbuf(n,pixbuf);
+ g_object_unref(G_OBJECT(pixbuf));
+ }
+ }
+ return n;
+}
+
+static gboolean
+xfpm_notify_send_notification(gpointer data)
+{
+ NotifyNotification *n = data;
+ notify_notification_show(n,NULL);
+ return FALSE;
+}
+
+NotifyNotification *
+xfpm_notify_new(const gchar *title,const gchar *message,
+ guint timeout,NotifyUrgency urgency,
+ GtkStatusIcon *icon,const gchar *icon_name)
+{
+
+ NotifyNotification *n;
+ n = xfpm_notify_create_notification(title,message,icon_name,icon);
+
+ notify_notification_set_urgency(n,urgency);
+ notify_notification_set_timeout(n,timeout);
+ return n;
+
+}
+
+void xfpm_notify_add_action(NotifyNotification *n,
+ const gchar *action_id,
+ const gchar *action_label,
+ NotifyActionCallback notify_callback,
+ gpointer user_data)
+{
+ notify_notification_add_action(n,action_id,action_label,
+ (NotifyActionCallback)notify_callback,
+ user_data,NULL);
+}
+
+void xfpm_notify_show_notification(NotifyNotification *n,guint timeout_to_show)
+{
+ if ( timeout_to_show != 0 )
+ {
+ g_timeout_add_seconds(timeout_to_show,
+ xfpm_notify_send_notification,
+ n);
+ }
+ else
+ {
+ xfpm_notify_send_notification(n);
+ }
+}
+#endif