From: Andrea Zagli Date: Sun, 10 Jun 2007 09:11:50 +0000 (+0000) Subject: Missing src/objects_tree.h from svn tree. X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=c82e5d9426c3095b657b490bcba67b862e753953;p=reptool%2Fgreptool Missing src/objects_tree.h from svn tree. git-svn-id: svn+ssh://saetta.homelinux.org/svn/greptool/trunk@5 76169498-11ee-428b-941f-28d7a79d5cb2 --- diff --git a/src/objects_tree.h b/src/objects_tree.h new file mode 100644 index 0000000..64ad644 --- /dev/null +++ b/src/objects_tree.h @@ -0,0 +1,72 @@ +/* + * Copyright (C) 2007 Andrea Zagli + * + * 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 +#include + +#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__ */