c8aceaba8c41db9cb72bea700fef9ed9e3e3dfed
[monky] / src / weather.h
1 /* -*- mode: c; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: t -*-
2  *
3  * Conky, a system monitor, based on torsmo
4  *
5  * Any original torsmo code is licensed under the BSD license
6  *
7  * All code written since the fork of torsmo is licensed under the GPL
8  *
9  * Please see COPYING for details
10  *
11  * Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen
12  * Copyright (c) 2005-2009 Brenden Matthews, Philip Kovacs, et. al.
13  *      (see AUTHORS)
14  * All rights reserved.
15  *
16  * This program is free software: you can redistribute it and/or modify
17  * it under the terms of the GNU General Public License as published by
18  * the Free Software Foundation, either version 3 of the License, or
19  * (at your option) any later version.
20  *
21  * This program is distributed in the hope that it will be useful,
22  * but WITHOUT ANY WARRANTY; without even the implied warranty of
23  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24  * GNU General Public License for more details.
25  * You should have received a copy of the GNU General Public License
26  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
27  *
28  */
29
30 #ifndef WEATHER_H_
31 #define WEATHER_H_
32
33 #include "config.h"
34
35 /* WEATHER data */
36 typedef struct PWEATHER_ {
37         char lastupd[32];
38 #ifdef XOAP
39         char xoap_t[32];
40         /*
41          * TODO:
42          * Is it worth investigating about using icons from weather.com?
43          * We could use them for data from noaa as well.
44          * They can display nicely with cimlib_add_image (with appropriate
45          * #ifdefs on imlib2 and x11), and an additional input argoment for position.
46
47          char icon[3];
48
49          */
50 #endif /* XOAP */
51         int temp;
52         int dew;
53         int cc;
54         int bar;
55         int wind_s;
56         int wind_d;
57         int hmid;
58         int wc;
59 } PWEATHER;
60
61 /* Prototypes */
62 void weather_free_info(void);
63 void weather_process_info(char *p, int p_max_size, char *uri, char *data_type, int interval);
64 int process_weather_uri(char *uri, char *locID);
65
66 #ifdef XOAP
67 void load_xoap_keys(void);
68 #endif /* XOAP */
69
70
71 #endif /*WEATHER_H_*/