name is release by notification_new
[psensor.git] / src / ui_notify.c
1 /*
2  * Copyright (C) 2010-2011 jeanfi@gmail.com
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of the
7  * License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17  * 02110-1301 USA
18  */
19 #include <stdlib.h>
20 #include <string.h>
21 #include <sys/time.h>
22
23 #include <libnotify/notify.h>
24
25 /* Macro defined since libnotify 0.5.2 */
26 #ifndef NOTIFY_CHECK_VERSION
27 #define NOTIFY_CHECK_VERSION(x, y, z) 0
28 #endif
29
30 #include "ui.h"
31 #include "ui_notify.h"
32
33 /* Time of the last notification. */
34 static struct timeval last_notification_tv;
35
36 void ui_notify(struct psensor *sensor, struct ui_psensor *ui)
37 {
38         struct timeval t;
39         char *name;
40         NotifyNotification *notif;
41
42         log_debug("ui_notify() last_notification %d",
43                   last_notification_tv.tv_sec);
44
45         if (gettimeofday(&t, NULL) != 0) {
46                 log_printf(LOG_ERR,  _("gettimeofday failed"));
47                 return;
48         }
49
50         if (!last_notification_tv.tv_sec
51             || t.tv_sec - last_notification_tv.tv_sec >= 60)
52                 last_notification_tv = t;
53         else
54                 return ;
55
56         if (notify_is_initted() == FALSE)
57                 notify_init("psensor");
58
59         if (notify_is_initted() == TRUE) {
60                 name = strdup(sensor->name);
61
62                 /*
63                  * Since libnotify 0.7 notify_notification_new has
64                  * only 3 parameters.
65                  */
66 #if NOTIFY_CHECK_VERSION(0, 7, 0)
67                 notif = notify_notification_new
68                         (_("Temperature alert"), name, NULL);
69 #else
70                 notif = notify_notification_new(_("Temperature alert"),
71                                                 name,
72                                                 NULL,
73                                                 GTK_WIDGET(ui->main_window));
74 #endif
75                 log_debug("ui_notify() notif_notification_new %s",
76                           sensor->name);
77
78                 notify_notification_show(notif, NULL);
79
80                 g_object_unref(notif);
81         } else {
82                 log_printf(LOG_ERR, "notify not initted");
83         }
84 }