]> Pileus Git - grits/blob - src/plugins/test.c
47eadd5ad50071b6131ee14a474b7e00e441f500
[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 /**
19  * SECTION:test
20  * @short_description: Testing plugin
21  *
22  * #GisPluginTest is a testing plugin used during development and as an example
23  * for how to create a plugin.
24  */
25
26 #include <gtk/gtkgl.h>
27 #include <GL/gl.h>
28 #include <GL/glu.h>
29
30 #include <gis.h>
31
32 #include "test.h"
33
34 /***********
35  * Methods *
36  ***********/
37 /**
38  * gis_plugin_test_new:
39  * @viewer: the #GisViewer to use for drawing
40  *
41  * Create a new instance of the testing plugin.
42  *
43  * Returns: the new #GisPluginTest
44  */
45 GisPluginTest *gis_plugin_test_new(GisViewer *viewer)
46 {
47         g_debug("GisPluginTest: new");
48         GisPluginTest *test = g_object_new(GIS_TYPE_PLUGIN_TEST, NULL);
49         test->viewer = g_object_ref(viewer);
50
51         GisMarker *marker = gis_marker_new("St. Charles");
52         gis_point_set_lle(gis_object_center(marker), 38.841847, -90.491982, 0);
53         GIS_OBJECT(marker)->lod = EARTH_R/4;
54         test->marker = gis_viewer_add(test->viewer, GIS_OBJECT(marker), GIS_LEVEL_OVERLAY, 0);
55
56         return test;
57 }
58
59
60 /****************
61  * GObject code *
62  ****************/
63 /* Plugin init */
64 static void gis_plugin_test_plugin_init(GisPluginInterface *iface);
65 G_DEFINE_TYPE_WITH_CODE(GisPluginTest, gis_plugin_test, G_TYPE_OBJECT,
66                 G_IMPLEMENT_INTERFACE(GIS_TYPE_PLUGIN,
67                         gis_plugin_test_plugin_init));
68 static void gis_plugin_test_plugin_init(GisPluginInterface *iface)
69 {
70         g_debug("GisPluginTest: plugin_init");
71         /* Add methods to the interface */
72 }
73 /* Class/Object init */
74 static void gis_plugin_test_init(GisPluginTest *test)
75 {
76         g_debug("GisPluginTest: init");
77 }
78 static void gis_plugin_test_dispose(GObject *_test)
79 {
80         g_debug("GisPluginTest: dispose");
81         GisPluginTest *test = GIS_PLUGIN_TEST(_test);
82         if (test->viewer) {
83                 gis_viewer_remove(test->viewer, test->marker);
84                 g_object_unref(test->viewer);
85                 test->viewer = NULL;
86         }
87         G_OBJECT_CLASS(gis_plugin_test_parent_class)->finalize(_test);
88 }
89 static void gis_plugin_test_class_init(GisPluginTestClass *klass)
90 {
91         g_debug("GisPluginTest: class_init");
92         GObjectClass *gobject_class = G_OBJECT_CLASS(klass);
93         gobject_class->dispose = gis_plugin_test_dispose;
94 }