Imported Upstream version 0.6.2.17
[psensor-pkg-debian.git] / src / ui_notify.c
1 /*
2  * Copyright (C) 2010-2012 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("last_notification %d", last_notification_tv.tv_sec);
43
44         if (gettimeofday(&t, NULL) != 0) {
45                 log_printf(LOG_ERR,  _("gettimeofday failed"));
46                 return;
47         }
48
49         if (!last_notification_tv.tv_sec
50             || t.tv_sec - last_notification_tv.tv_sec >= 60)
51                 last_notification_tv = t;
52         else
53                 return ;
54
55         if (notify_is_initted() == FALSE)
56                 notify_init("psensor");
57
58         if (notify_is_initted() == TRUE) {
59                 name = strdup(sensor->name);
60
61                 /*
62                  * Since libnotify 0.7 notify_notification_new has
63                  * only 3 parameters.
64                  */
65 #if NOTIFY_CHECK_VERSION(0, 7, 0)
66                 notif = notify_notification_new
67                         (_("Temperature alert"), name, NULL);
68 #else
69                 notif = notify_notification_new(_("Temperature alert"),
70                                                 name,
71                                                 NULL,
72                                                 GTK_WIDGET(ui->main_window));
73 #endif
74                 log_debug("notif_notification_new %s", sensor->name);
75
76                 notify_notification_show(notif, NULL);
77
78                 g_object_unref(notif);
79         } else {
80                 log_printf(LOG_ERR, "notify not initted");
81         }
82 }