Fix #530740 – Use GtkBuilder instead of libglade
[anjuta-extras.git] / plugins / profiler / gprof-function-call-tree-view.h
blob08b9346102de74dbffeda5b639f7f8b67945b222
1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
2 /*
3 * gprof-function-call-tree-view.h
4 * Copyright (C) James Liggett 2006 <jrliggett@cox.net>
5 *
6 * gprof-function-call-tree-view.h is free software.
7 *
8 * You may redistribute it and/or modify it under the terms of the
9 * GNU General Public License, as published by the Free Software
10 * Foundation; either version 2, or (at your option) any later version.
12 * plugin.c is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
15 * See the GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with plugin.c. See the file "COPYING". If not,
19 * write to: The Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor,
21 * Boston, MA 02110-1301, USA.
24 #ifndef _GPROF_FUNCTION_CALL_TREE_VIEW_H
25 #define _GPROF_FUNCTION_CALL_TREE_VIEW_H
27 #include <config.h>
28 #include <glib.h>
29 #include <glib-object.h>
30 #include <gtk/gtk.h>
31 #include "gprof-view.h"
33 G_BEGIN_DECLS
35 typedef struct _GProfFunctionCallTreeView GProfFunctionCallTreeView;
36 typedef struct _GProfFunctionCallTreeViewClass GProfFunctionCallTreeViewClass;
37 typedef struct _GProfFunctionCallTreeViewPriv GProfFunctionCallTreeViewPriv;
39 #define GPROF_FUNCTION_CALL_TREE_VIEW_TYPE (gprof_function_call_tree_view_get_type ())
40 #define GPROF_FUNCTION_CALL_TREE_VIEW(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GPROF_FUNCTION_CALL_TREE_VIEW_TYPE, GProfFunctionCallTreeView))
41 #define GPROF_FUNCTION_CALL_TREE_VIEW_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GPROF_FUNCTION_CALL_TREE_VIEW_TYPE, GProfFunctionCallTreeViewClass))
42 #define IS_GPROF_FUNCTION_CALL_TREE_VIEW(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GPROF_FUNCTION_CALL_TREE_VIEW_TYPE))
43 #define IS_GPROF_FUNCTION_CALL_TREE_VIEW_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GPROF_FUNCTION_CALL_TREE_VIEW_TYPE))
45 struct _GProfFunctionCallTreeView
47 GProfView parent;
48 GProfFunctionCallTreeViewPriv *priv;
51 struct _GProfFunctionCallTreeViewClass
53 GProfViewClass parent_class;
56 GType gprof_function_call_tree_view_get_type (void);
58 GProfFunctionCallTreeView * gprof_function_call_tree_view_new (GProfProfileData *profile_data,
59 IAnjutaSymbolManager *symbol_manager,
60 IAnjutaDocumentManager *document_manager);
62 void gprof_function_call_tree_view_refresh (GProfView *view);
63 GtkWidget *gprof_function_call_tree_view_get_widget (GProfView *view);
65 #endif