Imported Debian patch 0.8.0.4-1
[psensor-pkg-debian.git] / src / ui_unity.c
1 /*
2  * Copyright (C) 2010-2013 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 <unity.h>
20
21 #include "psensor.h"
22
23 static int initialized;
24 static UnityLauncherEntry *psensor_entry;
25 static unsigned int last_visible = -1;
26
27 void ui_unity_launcher_entry_update(struct psensor **sensors,
28                                     unsigned int show,
29                                     int use_celcius)
30 {
31         double v;
32
33
34         if (!initialized) {
35                 psensor_entry = unity_launcher_entry_get_for_desktop_file
36                         ("psensor.desktop");
37
38                 unity_launcher_entry_set_count(psensor_entry, 0);
39                 initialized = 1;
40         }
41
42         if (last_visible != show) {
43                 if (show)
44                         unity_launcher_entry_set_count_visible(psensor_entry,
45                                                                TRUE);
46                 else
47                         unity_launcher_entry_set_count_visible(psensor_entry,
48                                                                FALSE);
49                 last_visible = show;
50         }
51
52         if (sensors && *sensors) {
53                 v = psensor_get_max_current_value(sensors, SENSOR_TYPE_TEMP);
54
55                 if (!use_celcius)
56                         v = celcius_to_fahrenheit(v);
57
58                 unity_launcher_entry_set_count(psensor_entry, v);
59         }
60 }