]> Pileus Git - grits/blob - examples/tester.h
Add GritsTester for debugging GritsObjects
[grits] / examples / tester.h
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 PUReOSE.  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 __GRITS_TESTER_H__
19 #define __GRITS_TESTER_H__
20
21 #include <gtk/gtk.h>
22 #include <glib-object.h>
23
24 #include <objects/grits-object.h>
25
26 /* Type macros */
27 #define GRITS_TYPE_TESTER            (grits_tester_get_type())
28 #define GRITS_TESTER(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj),   GRITS_TYPE_TESTER, GritsTester))
29 #define GRITS_IS_TESTER(obj)         (G_TYPE_CHECK_INSTANCE_TYPE((obj),   GRITS_TYPE_TESTER))
30 #define GRITS_TESTER_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST   ((klass), GRITS_TYPE_TESTER, GritsTesterClass))
31 #define GRITS_IS_TESTER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE   ((klass), GRITS_TYPE_TESTER))
32 #define GRITS_TESTER_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj),   GRITS_TYPE_TESTER, GritsTesterClass))
33
34 typedef struct _GritsTester      GritsTester;
35 typedef struct _GritsTesterClass GritsTesterClass;
36
37 struct _GritsTester {
38         GtkDrawingArea parent_instance;
39
40         /* instance members */
41         gboolean  wireframe;
42         GList    *objects;
43 };
44
45 struct _GritsTesterClass {
46         GtkDrawingAreaClass parent_class;
47 };
48
49 GType grits_tester_get_type(void);
50
51 /* Methods */
52 GritsTester *grits_tester_new();
53 gpointer grits_tester_add(GritsTester *tester, GritsObject *object);
54 GritsObject *grits_tester_remove(GritsTester *tester, gpointer ref);
55
56 #endif