Integrate adding files with the file manager
[anjuta-git-plugin.git] / plugins / valgrind / vghelgrindprefs.h
blobd15af0a8e0bbe3e7e7927e2890315e1763696850
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3 * Authors: Jeffrey Stedfast <fejj@ximian.com>
5 * Copyright 2003 Ximian, Inc. (www.ximian.com)
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program 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. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
24 #ifndef __VG_HELGRIND_PREFS_H__
25 #define __VG_HELGRIND_PREFS_H__
27 #include "vgtoolprefs.h"
29 #ifdef __cplusplus
30 extern "C" {
31 #pragma }
32 #endif /* __cplusplus */
34 #define VG_TYPE_HELGRIND_PREFS (vg_helgrind_prefs_get_type ())
35 #define VG_HELGRIND_PREFS(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), VG_TYPE_HELGRIND_PREFS, VgHelgrindPrefs))
36 #define VG_HELGRIND_PREFS_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), VG_TYPE_HELGRIND_PREFS, VgHelgrindPrefsClass))
37 #define VG_IS_HELGRIND_PREFS(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), VG_TYPE_HELGRIND_PREFS))
38 #define VG_IS_HELGRIND_PREFS_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), VG_TYPE_HELGRIND_PREFS))
39 #define VG_HELGRIND_PREFS_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), VG_TYPE_HELGRIND_PREFS, VgHelgrindPrefsClass))
41 typedef struct _VgHelgrindPrefs VgHelgrindPrefs;
42 typedef struct _VgHelgrindPrefsClass VgHelgrindPrefsClass;
44 struct _VgHelgrindPrefs {
45 VgToolPrefs parent_object;
47 GtkToggleButton *private_stacks;
48 GtkOptionMenu *show_last_access;
51 struct _VgHelgrindPrefsClass {
52 VgToolPrefsClass parent_class;
57 GType vg_helgrind_prefs_get_type (void);
59 #ifdef __cplusplus
61 #endif /* __cplusplus */
63 #endif /* __VG_HELGRIND_PREFS_H__ */