]> Pileus Git - grits/blob - src/plugins/test.c
2cbc140065e5780d04d68173450d6448957912a2
[grits] / src / plugins / test.c
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 #include <gtk/gtkgl.h>
19 #include <GL/gl.h>
20 #include <GL/glu.h>
21
22 #include <gis.h>
23
24 #include "test.h"
25
26 /***********
27  * Methods *
28  ***********/
29 GisPluginTest *gis_plugin_test_new(GisViewer *viewer)
30 {
31         g_debug("GisPluginTest: new");
32         GisPluginTest *self = g_object_new(GIS_TYPE_PLUGIN_TEST, NULL);
33         self->viewer = g_object_ref(viewer);
34
35         GisMarker *marker = gis_marker_new("St. Charles");
36         gis_point_set_lle(gis_object_center(GIS_OBJECT(marker)), 38.841847, -90.491982, 0);
37         GIS_OBJECT(marker)->lod = EARTH_R/4;
38         self->marker = gis_viewer_add(self->viewer, GIS_OBJECT(marker), GIS_LEVEL_OVERLAY, 0);
39
40         return self;
41 }
42
43
44 /****************
45  * GObject code *
46  ****************/
47 /* Plugin init */
48 static void gis_plugin_test_plugin_init(GisPluginInterface *iface);
49 G_DEFINE_TYPE_WITH_CODE(GisPluginTest, gis_plugin_test, G_TYPE_OBJECT,
50                 G_IMPLEMENT_INTERFACE(GIS_TYPE_PLUGIN,
51                         gis_plugin_test_plugin_init));
52 static void gis_plugin_test_plugin_init(GisPluginInterface *iface)
53 {
54         g_debug("GisPluginTest: plugin_init");
55         /* Add methods to the interface */
56 }
57 /* Class/Object init */
58 static void gis_plugin_test_init(GisPluginTest *self)
59 {
60         g_debug("GisPluginTest: init");
61 }
62 static void gis_plugin_test_dispose(GObject *_self)
63 {
64         g_debug("GisPluginTest: dispose");
65         GisPluginTest *self = GIS_PLUGIN_TEST(_self);
66         if (self->viewer) {
67                 gis_viewer_remove(self->viewer, self->marker);
68                 g_object_unref(self->viewer);
69                 self->viewer = NULL;
70         }
71         G_OBJECT_CLASS(gis_plugin_test_parent_class)->finalize(_self);
72 }
73 static void gis_plugin_test_class_init(GisPluginTestClass *klass)
74 {
75         g_debug("GisPluginTest: class_init");
76         GObjectClass *gobject_class = G_OBJECT_CLASS(klass);
77         gobject_class->dispose = gis_plugin_test_dispose;
78 }