]> Pileus Git - grits/blob - src/gis-opengl.h
Remove legacy WMS and disable wms_test
[grits] / src / gis-opengl.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 __GIS_OPENGL_H__
19 #define __GIS_OPENGL_H__
20
21 #include <gtk/gtk.h>
22 #include <gtk/gtkgl.h>
23 #include <glib-object.h>
24
25 /* Type macros */
26 #define GIS_TYPE_OPENGL            (gis_opengl_get_type())
27 #define GIS_OPENGL(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj),   GIS_TYPE_OPENGL, GisOpenGL))
28 #define GIS_IS_OPENGL(obj)         (G_TYPE_CHECK_INSTANCE_TYPE((obj),   GIS_TYPE_OPENGL))
29 #define GIS_OPENGL_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST   ((klass), GIS_TYPE_OPENGL, GisOpenGLClass))
30 #define GIS_IS_OPENGL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE   ((klass), GIS_TYPE_OPENGL))
31 #define GIS_OPENGL_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj),   GIS_TYPE_OPENGL, GisOpenGLClass))
32
33 typedef struct _GisOpenGL      GisOpenGL;
34 typedef struct _GisOpenGLClass GisOpenGLClass;
35
36 #include "gis-view.h"
37 #include "gis-world.h"
38 #include "gis-plugin.h"
39 #include "roam.h"
40
41 struct _GisOpenGL {
42         GtkDrawingArea parent_instance;
43
44         /* instance members */
45         GisWorld   *world;
46         GisView    *view;
47         GisPlugins *plugins;
48         RoamSphere *sphere;
49         guint       sm_source;
50
51         /* for testing */
52         gboolean    wireframe;
53 };
54
55 struct _GisOpenGLClass {
56         GtkDrawingAreaClass parent_class;
57
58         /* class members */
59 };
60
61 GType gis_opengl_get_type(void);
62
63 /* Methods */
64 GisOpenGL *gis_opengl_new(GisWorld *world, GisView *view, GisPlugins *plugins);
65
66 void gis_opengl_center_position(GisOpenGL *opengl,
67                 gdouble lat, gdouble lon, gdouble elev);
68
69 void gis_opengl_redraw(GisOpenGL *opengl);
70
71 void gis_opengl_begin(GisOpenGL *opengl);
72 void gis_opengl_end(GisOpenGL *opengl);
73 void gis_opengl_flush(GisOpenGL *opengl);
74
75 #endif