]> Pileus Git - aweather/blob - src/main.c
Converting Ridge and Radar plugins to use GObject
[aweather] / src / main.c
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 #include <config.h>
19 #include <gtk/gtk.h>
20 #include <gtk/gtkgl.h>
21
22 #include "aweather-gui.h"
23 #include "plugin-radar.h"
24 #include "plugin-ridge.h"
25 #include "plugin-example.h"
26
27 /********
28  * Main *
29  ********/
30 int main(int argc, char *argv[])
31 {
32         gtk_init(&argc, &argv);
33         gtk_gl_init(&argc, &argv);
34
35         /* Set up AWeather */
36         AWeatherGui  *gui  = aweather_gui_new();
37         //AWeatherView *view = aweather_gui_get_view(gui);
38
39         /* Load plugins */
40         aweather_gui_register_plugin(gui, AWEATHER_PLUGIN(aweather_example_new(gui)));
41         aweather_gui_register_plugin(gui, AWEATHER_PLUGIN(aweather_ridge_new(gui)));
42         aweather_gui_register_plugin(gui, AWEATHER_PLUGIN(aweather_radar_new(gui)));
43
44         gtk_widget_show_all(aweather_gui_get_widget(gui, "window"));
45         gtk_main();
46
47         return 0;
48 }