--- /dev/null
+/*
+ * Copyright (C) 2007 Andrea Zagli <azagli@inwind.it>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __GRPT_OBJECTS_TREE_H__
+#define __GRPT_OBJECTS_TREE_H__
+
+#include <glib-object.h>
+#include <libreptool.h>
+
+#include "canvas.h"
+#include "canvasitem.h"
+
+
+G_BEGIN_DECLS
+
+
+#define GRPT_TYPE_OBJECTS_TREE (grpt_objects_tree_get_type ())
+#define GRPT_OBJECTS_TREE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GRPT_TYPE_OBJECTS_TREE, GRptObjectsTree))
+#define GRPT_OBJECTS_TREE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GRPT_TYPE_OBJECTS_TREE, GRptObjectsTreeClass))
+#define GRPT_IS_OBJECTS_TREE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GRPT_TYPE_OBJECTS_TREE))
+#define GRPT_IS_OBJECTS_TREE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GRPT_TYPE_OBJECTS_TREE))
+#define GRPT_OBJECTS_TREE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GRPT_TYPE_OBJECTS_TREE, GRptObjectsTreeClass))
+
+
+typedef struct _GRptObjectsTree GRptObjectsTree;
+typedef struct _GRptObjectsTreeClass GRptObjectsTreeClass;
+
+struct _GRptObjectsTree
+ {
+ GObject parent;
+ };
+
+struct _GRptObjectsTreeClass
+ {
+ GObjectClass parent_class;
+ };
+
+GType grpt_objects_tree_get_type (void) G_GNUC_CONST;
+
+GRptObjectsTree *grpt_objects_tree_new (GRptCanvas *grpt_canvas);
+
+void grpt_objects_tree_set_canvas (GRptObjectsTree *grpt_objects_tree,
+ GRptCanvas *grpt_canvas);
+
+void grpt_objects_tree_add_object_to_section (GRptObjectsTree *grpt_objects_tree,
+ GRptCanvasItem *canvas_item,
+ RptReportSection section);
+void grpt_objects_tree_remove_object (GRptObjectsTree *grpt_objects_tree,
+ GRptCanvasItem *canvas_item);
+
+void grpt_objects_tree_destroy (GRptObjectsTree *grpt_objects_tree);
+
+
+G_END_DECLS
+
+
+#endif /* __GRPT_OBJECTS_TREE_H__ */