]> Pileus Git - aweather/blob - src/plugins/level2.h
3577ed52bab0c9f1d41d0ff5dbdd0f0b8d84a8c2
[aweather] / src / plugins / level2.h
1 /*
2  * Copyright (C) 2009-2010 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 __AWEATHER_LEVEL2_H__
19 #define __AWEATHER_LEVEL2_H__
20
21 #include <gis.h>
22 #include "aweather-colormap.h"
23
24 /* Level2 */
25 #define AWEATHER_TYPE_LEVEL2 (aweather_level2_get_type())
26
27 GOBJECT_HEAD(
28         AWEATHER, LEVEL2,
29         AWeather, Level2,
30         aweather, level2);
31
32 struct _AWeatherLevel2 {
33         GisCallback       parent;
34         GisViewer        *viewer;
35         Radar            *radar;
36         AWeatherColormap *colormap;
37
38         /* Private */
39         Sweep            *sweep;
40         AWeatherColormap *sweep_colors;
41         guint             sweep_tex;
42 };
43
44 struct _AWeatherLevel2Class {
45         GisCallbackClass parent_class;
46 };
47
48 AWeatherLevel2 *aweather_level2_new(GisViewer *viewer,
49                 AWeatherColormap *colormap, Radar *radar);
50
51 AWeatherLevel2 *aweather_level2_new_from_file(GisViewer *viewer,
52                 AWeatherColormap *colormap,
53                 const gchar *file, const gchar *site);
54
55 void aweather_level2_set_sweep(AWeatherLevel2 *level2,
56                 int type, float elev);
57
58 #endif