1 /* PSPPIRE - a graphical user interface for PSPP.
2 Copyright (C) 2009 Free Software Foundation
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
18 #ifndef __PSPPIRE_VAR_VIEW_H__
19 #define __PSPPIRE_VAR_VIEW_H__
23 #include <glib-object.h>
24 #include <gtk/gtktreeview.h>
28 #define PSPPIRE_VAR_VIEW_TYPE (psppire_var_view_get_type ())
29 #define PSPPIRE_VAR_VIEW(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), PSPPIRE_VAR_VIEW_TYPE, PsppireVarView))
30 #define PSPPIRE_VAR_VIEW_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \
31 PSPPIRE_VAR_VIEW_TYPE, PsppireVarViewClass))
32 #define PSPPIRE_IS_VAR_VIEW(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), \
33 PSPPIRE_VAR_VIEW_TYPE))
34 #define PSPPIRE_IS_VAR_VIEW_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \
35 PSPPIRE_VAR_VIEW_TYPE))
38 typedef struct _PsppireVarView PsppireVarView;
39 typedef struct _PsppireVarViewClass PsppireVarViewClass;
43 struct _PsppireVarView
52 struct _PsppireVarViewClass
54 GtkTreeViewClass parent_class;
58 GType psppire_var_view_get_type (void);
60 gint psppire_var_view_append_names (PsppireVarView *vv, gint column, GString *string);
62 gboolean psppire_var_view_get_iter_first (PsppireVarView *vv, GtkTreeIter *iter);
64 gboolean psppire_var_view_get_iter_next (PsppireVarView *vv, GtkTreeIter *iter);
66 const struct variable * psppire_var_view_get_variable (PsppireVarView *vv, gint column, GtkTreeIter *iter);
72 #endif /* __PSPPIRE_VAR_VIEW_H__ */