]> Pileus Git - aweather/blob - src/plugins/radar.h
Convert GtkBox and GtkScale to GTK 3 version
[aweather] / src / plugins / radar.h
1 /*
2  * Copyright (C) 2009-2011 Andy Spencer <andy753421@gmail.com>
3  * 
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  * 
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU 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, see <http://www.gnu.org/licenses/>.
16  */
17
18 #ifndef __RADAR_H__
19 #define __RADAR_H__
20
21 #include <glib-object.h>
22 #include <rsl.h>
23
24 #include <grits.h>
25 #include "radar-info.h"
26 #include "level2.h"
27
28 #define GRITS_TYPE_PLUGIN_RADAR            (grits_plugin_radar_get_type ())
29 #define GRITS_PLUGIN_RADAR(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj),   GRITS_TYPE_PLUGIN_RADAR, GritsPluginRadar))
30 #define GRITS_IS_PLUGIN_RADAR(obj)         (G_TYPE_CHECK_INSTANCE_TYPE((obj),   GRITS_TYPE_PLUGIN_RADAR))
31 #define GRITS_PLUGIN_RADAR_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST   ((klass), GRITS_TYPE_PLUGIN_RADAR, GritsPluginRadarClass))
32 #define GRITS_IS_PLUGIN_RADAR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE   ((klass), GRITS_TYPE_PLUGIN_RADAR))
33 #define GRITS_PLUGIN_RADAR_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj),   GRITS_TYPE_PLUGIN_RADAR, GritsPluginRadarClass))
34
35 typedef struct _GritsPluginRadar      GritsPluginRadar;
36 typedef struct _GritsPluginRadarClass GritsPluginRadarClass;
37
38 typedef struct _RadarConus RadarConus;
39 typedef struct _RadarSite  RadarSite;
40
41 struct _GritsPluginRadar {
42         GObject parent_instance;
43
44         /* instance members */
45         GritsViewer *viewer;
46         GritsPrefs  *prefs;
47         GtkWidget   *config;
48         guint        tab_id;
49         AWeatherColormap *colormap;
50         GritsCallback    *hud;
51
52         GHashTable  *sites;
53         GritsHttp   *sites_http;
54
55         RadarConus  *conus;
56         GritsHttp   *conus_http;
57 };
58
59 struct _GritsPluginRadarClass {
60         GObjectClass parent_class;
61 };
62
63 GType grits_plugin_radar_get_type();
64
65 /* Methods */
66 GritsPluginRadar *grits_plugin_radar_new(GritsViewer *viewer, GritsPrefs *prefs);
67
68 /* Misc. RSL helpers */
69 #define RSL_FOREACH_VOL(radar, volume, count, index) \
70         guint count = 0; \
71         for (guint index = 0; index < radar->h.nvolumes; index++) { \
72                 Volume *volume = radar->v[index]; \
73                 if (volume == NULL) continue; \
74                 count++;
75
76 #define RSL_FOREACH_SWEEP(volume, sweep, count, index) \
77         guint count = 0; \
78         for (guint index = 0; index < volume->h.nsweeps; index++) { \
79                 Sweep *sweep = volume->sweep[index]; \
80                 if (sweep == NULL || sweep->h.elev == 0) continue; \
81                 count++;
82
83 #define RSL_FOREACH_RAY(sweep, ray, count, index) \
84         guint count = 0; \
85         for (guint index = 0; index < sweep->h.nrays; index++) { \
86                 Ray *ray = sweep->ray[index]; \
87                 if (ray == NULL) continue; \
88                 count++;
89
90 #define RSL_FOREACH_BIN(ray, bin, count, index) \
91         guint count = 0; \
92         for (guint index = 0; index < ray->h.nbins; index++) { \
93                 Range bin = ray->range[index]; \
94                 count++;
95
96 #define RSL_FOREACH_END }
97
98 #endif