Updated Spanish translation
[anjuta-git-plugin.git] / plugins / valgrind / vggeneralprefs.h
bloba49dd22585ffc9406c64f4657f095fae0d8c5956
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)
6 * Copyright (C) Massimo Cora' 2005 <maxcvs@gmail.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
25 #ifndef __VG_GENERAL_PREFS_H__
26 #define __VG_GENERAL_PREFS_H__
28 #include <libgnomeui/gnome-file-entry.h>
30 #include "vgtoolprefs.h"
32 #ifdef __cplusplus
33 extern "C" {
34 #pragma }
35 #endif /* __cplusplus */
37 #define VG_TYPE_GENERAL_PREFS (vg_general_prefs_get_type ())
38 #define VG_GENERAL_PREFS(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), VG_TYPE_GENERAL_PREFS, VgGeneralPrefs))
39 #define VG_GENERAL_PREFS_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), VG_TYPE_GENERAL_PREFS, VgGeneralPrefsClass))
40 #define VG_IS_GENERAL_PREFS(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), VG_TYPE_GENERAL_PREFS))
41 #define VG_IS_GENERAL_PREFS_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), VG_TYPE_GENERAL_PREFS))
42 #define VG_GENERAL_PREFS_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), VG_TYPE_GENERAL_PREFS, VgGeneralPrefsClass))
44 typedef struct _VgGeneralPrefs VgGeneralPrefs;
45 typedef struct _VgGeneralPrefsClass VgGeneralPrefsClass;
47 struct _VgGeneralPrefs {
48 VgToolPrefs parent_object;
50 GtkToggleButton *demangle;
51 GtkSpinButton *num_callers;
52 GtkToggleButton *error_limit;
53 GtkToggleButton *sloppy_malloc;
54 /*GtkOptionMenu *alignment;*/ /* 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096 */
55 GtkToggleButton *trace_children;
56 GtkToggleButton *track_fds;
57 GtkToggleButton *time_stamp;
58 GtkToggleButton *run_libc_freeres;
61 struct _VgGeneralPrefsClass {
62 VgToolPrefsClass parent_class;
67 GType vg_general_prefs_get_type (void);
69 #ifdef __cplusplus
71 #endif /* __cplusplus */
73 #endif /* __VG_GENERAL_PREFS_H__ */