summaryrefslogtreecommitdiff
path: root/src/xfpm-notify.c
blob: 586fe7ed623a18f50ad40859628e1e9609be2233 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
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