New function psppire_var_view_contains_var
[pspp-builds.git] / src / ui / gui / psppire-var-view.h
1 /* PSPPIRE - a graphical user interface for PSPP.
2    Copyright (C) 2009  Free Software Foundation
3
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.
8
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.
13
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/>. */
16
17
18 #ifndef __PSPPIRE_VAR_VIEW_H__
19 #define __PSPPIRE_VAR_VIEW_H__
20
21
22 #include <glib.h>
23 #include <glib-object.h>
24 #include <gtk/gtktreeview.h>
25
26 G_BEGIN_DECLS
27
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))
36
37
38 typedef struct _PsppireVarView       PsppireVarView;
39 typedef struct _PsppireVarViewClass  PsppireVarViewClass;
40
41 struct variable;
42
43 struct _PsppireVarView
44 {
45   GtkTreeView parent;
46
47   GtkListStore *list;
48   
49   gint *nums;
50
51 };
52
53 struct _PsppireVarViewClass
54 {
55   GtkTreeViewClass parent_class;
56
57 };
58
59 GType      psppire_var_view_get_type        (void);
60
61 gboolean psppire_var_view_contains_var (PsppireVarView *vv, const GValue *v);
62
63 gint psppire_var_view_append_names (PsppireVarView *vv, gint column, GString *string);
64
65 gboolean psppire_var_view_get_iter_first (PsppireVarView *vv, GtkTreeIter *iter);
66
67 gboolean psppire_var_view_get_iter_next (PsppireVarView *vv, GtkTreeIter *iter);
68
69 const struct variable * psppire_var_view_get_variable (PsppireVarView *vv, gint column, GtkTreeIter *iter);
70
71
72
73 G_END_DECLS
74
75 #endif /* __PSPPIRE_VAR_VIEW_H__ */