]> Pileus Git - grits/blob - src/plugin-radar.h
Download progress bars
[grits] / src / plugin-radar.h
1 /*
2  * Copyright (C) 2009 Andy Spencer <spenceal@rose-hulman.edu>
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 <libsoup/soup.h>
23 #include <rsl.h>
24
25 /* TODO: convert */
26 typedef struct {
27         char *name;
28         guint8 data[256][4];
29 } colormap_t;
30 extern colormap_t colormaps[];
31
32 #define AWEATHER_TYPE_RADAR            (aweather_radar_get_type ())
33 #define AWEATHER_RADAR(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj),   AWEATHER_TYPE_RADAR, AWeatherRadar))
34 #define AWEATHER_IS_RADAR(obj)         (G_TYPE_CHECK_INSTANCE_TYPE((obj),   AWEATHER_TYPE_RADAR))
35 #define AWEATHER_RADAR_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST   ((klass), AWEATHER_TYPE_RADAR, AWeatherRadarClass))
36 #define AWEATHER_IS_RADAR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE   ((klass), AWEATHER_TYPE_RADAR))
37 #define AWEATHER_RADAR_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj),   AWEATHER_TYPE_RADAR, AWeatherRadarClass))
38
39 typedef struct _AWeatherRadar        AWeatherRadar;
40 typedef struct _AWeatherRadarClass   AWeatherRadarClass;
41
42 struct _AWeatherRadar {
43         GObject parent_instance;
44
45         /* instance members */
46         AWeatherGui *gui;
47         GtkWidget   *config_body;
48         GtkWidget   *progress_bar;
49         GtkWidget   *progress_label;
50         SoupSession *soup;
51
52         /* Private data for loading radars */
53         Radar       *cur_radar;
54         Sweep       *cur_sweep;
55         colormap_t  *cur_colormap;
56         guint        cur_sweep_tex;
57 };
58
59 struct _AWeatherRadarClass {
60         GObjectClass parent_class;
61 };
62
63 GType aweather_radar_get_type();
64
65 /* Methods */
66 AWeatherRadar *aweather_radar_new(AWeatherGui *gui);
67
68 #endif