]> Pileus Git - grits/blob - src/gis/gis-opengl.h
Splitting GIS into a shared library, and a lot more
[grits] / src / gis / 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 <config.h>
22 #include <gtk/gtk.h>
23 #include <gtk/gtkgl.h>
24 #include <glib-object.h>
25
26 /* Type macros */
27 #define GIS_TYPE_OPENGL            (gis_opengl_get_type())
28 #define GIS_OPENGL(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj),   GIS_TYPE_OPENGL, GisOpenGL))
29 #define GIS_IS_OPENGL(obj)         (G_TYPE_CHECK_INSTANCE_TYPE((obj),   GIS_TYPE_OPENGL))
30 #define GIS_OPENGL_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST   ((klass), GIS_TYPE_OPENGL, GisOpenGLClass))
31 #define GIS_IS_OPENGL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE   ((klass), GIS_TYPE_OPENGL))
32 #define GIS_OPENGL_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj),   GIS_TYPE_OPENGL, GisOpenGLClass))
33
34 typedef struct _GisOpenGL      GisOpenGL;
35 typedef struct _GisOpenGLClass GisOpenGLClass;
36
37 #include "gis-view.h"
38 #include "gis-world.h"
39 #include "gis-plugin.h"
40
41 #define d2r(deg) (((deg)*M_PI)/180.0)
42 #define r2d(rad) (((rad)*180.0)/M_PI)
43
44 struct _GisOpenGL {
45         GObject parent_instance;
46
47         /* instance members */
48         GisWorld       *world;
49         GisView        *view;
50         GisPlugins     *plugins;
51         GtkDrawingArea *drawing;
52 };
53
54 struct _GisOpenGLClass {
55         GObjectClass parent_class;
56         
57         /* class members */
58 };
59
60 GType gis_opengl_get_type(void);
61
62 /* Methods */
63 GisOpenGL *gis_opengl_new(GisWorld *world, GisView *view, GtkDrawingArea *drawing);
64
65 void       gis_opengl_redraw(GisOpenGL *gis);
66 void       gis_opengl_begin(GisOpenGL *gis);
67 void       gis_opengl_end(GisOpenGL *gis);
68 void       gis_opengl_flush(GisOpenGL *gis);
69
70 #endif