]> Pileus Git - grits/blob - src/plugins/test.c
d917092e000b0112f37dbd104708039a38d7d6f1
[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  * #GritsPluginTest 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 <grits.h>
31
32 #include "test.h"
33
34 /***********
35  * Methods *
36  ***********/
37 gboolean _load_marker(gpointer _test)
38 {
39         GritsPluginTest *test = _test;
40         GritsMarker *marker = grits_marker_new("St. Charles");
41         grits_point_set_lle(grits_object_center(marker), 38.841847, -90.491982, 0);
42         GRITS_OBJECT(marker)->lod = EARTH_R;
43         test->marker = grits_viewer_add(test->viewer, GRITS_OBJECT(marker), GRITS_LEVEL_OVERLAY, 0);
44         return FALSE;
45 }
46 /**
47  * grits_plugin_test_new:
48  * @viewer: the #GritsViewer to use for drawing
49  *
50  * Create a new instance of the testing plugin.
51  *
52  * Returns: the new #GritsPluginTest
53  */
54 GritsPluginTest *grits_plugin_test_new(GritsViewer *viewer)
55 {
56         g_debug("GritsPluginTest: new");
57         GritsPluginTest *test = g_object_new(GRITS_TYPE_PLUGIN_TEST, NULL);
58         test->viewer = g_object_ref(viewer);
59         _load_marker(test);
60         return test;
61 }
62
63
64 /****************
65  * GObject code *
66  ****************/
67 /* Plugin init */
68 static void grits_plugin_test_plugin_init(GritsPluginInterface *iface);
69 G_DEFINE_TYPE_WITH_CODE(GritsPluginTest, grits_plugin_test, G_TYPE_OBJECT,
70                 G_IMPLEMENT_INTERFACE(GRITS_TYPE_PLUGIN,
71                         grits_plugin_test_plugin_init));
72 static void grits_plugin_test_plugin_init(GritsPluginInterface *iface)
73 {
74         g_debug("GritsPluginTest: plugin_init");
75         /* Add methods to the interface */
76 }
77 /* Class/Object init */
78 static void grits_plugin_test_init(GritsPluginTest *test)
79 {
80         g_debug("GritsPluginTest: init");
81 }
82 static void grits_plugin_test_dispose(GObject *_test)
83 {
84         g_debug("GritsPluginTest: dispose");
85         GritsPluginTest *test = GRITS_PLUGIN_TEST(_test);
86         if (test->viewer) {
87                 grits_viewer_remove(test->viewer, test->marker);
88                 g_object_unref(test->viewer);
89                 test->viewer = NULL;
90         }
91         G_OBJECT_CLASS(grits_plugin_test_parent_class)->dispose(_test);
92 }
93 static void grits_plugin_test_class_init(GritsPluginTestClass *klass)
94 {
95         g_debug("GritsPluginTest: class_init");
96         GObjectClass *gobject_class = G_OBJECT_CLASS(klass);
97         gobject_class->dispose = grits_plugin_test_dispose;
98 }