]> Pileus Git - grits/blob - src/aweather-gui.h
Splitting GIS into a shared library, and a lot more
[grits] / src / aweather-gui.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 __AWEATHER_GUI_H__
19 #define __AWEATHER_GUI_H__
20
21 #include <gtk/gtk.h>
22 #include <glib-object.h>
23
24 #include <gis/gis.h>
25
26 /* Type macros */
27 #define AWEATHER_TYPE_GUI            (aweather_gui_get_type())
28 #define AWEATHER_GUI(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj),   AWEATHER_TYPE_GUI, AWeatherGui))
29 #define AWEATHER_IS_GUI(obj)         (G_TYPE_CHECK_INSTANCE_TYPE((obj),   AWEATHER_TYPE_GUI))
30 #define AWEATHER_GUI_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST   ((klass), AWEATHER_TYPE_GUI, AWeatherGuiClass))
31 #define AWEATHER_IS_GUI_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE   ((klass), AWEATHER_TYPE_GUI))
32 #define AWEATHER_GUI_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj),   AWEATHER_TYPE_GUI, AWeatherGuiClass))
33
34 typedef struct _AWeatherGui      AWeatherGui;
35 typedef struct _AWeatherGuiClass AWeatherGuiClass;
36
37 struct _AWeatherGui {
38         GtkWindow parent_instance;
39
40         /* instance members */
41         GtkBuilder   *builder;
42         GisWorld     *world;
43         GisView      *view;
44         GisOpenGL    *opengl;
45         GisPlugins   *plugins;
46         GisPrefs     *prefs;
47         GtkListStore *gtk_plugins;
48 };
49
50 struct _AWeatherGuiClass {
51         GtkWindowClass parent_class;
52         
53         /* class members */
54 };
55
56 GType aweather_gui_get_type(void);
57
58 /* Methods */
59 AWeatherGui *aweather_gui_new();
60
61 GisWorld    *aweather_gui_get_world(AWeatherGui *gui);
62 GisOpenGL   *aweather_gui_get_opengl(AWeatherGui *gui);
63 GisView     *aweather_gui_get_view(AWeatherGui *gui);
64
65 GtkWidget   *aweather_gui_get_widget(AWeatherGui *gui, const gchar *name);
66 GObject     *aweather_gui_get_object(AWeatherGui *gui, const gchar *name);
67
68 void         aweather_gui_attach_plugin(AWeatherGui *self, const gchar *name);
69 void         aweather_gui_deattach_plugin(AWeatherGui *self, const gchar *name);
70
71 #endif