Logistic Regression: Added categorical variable support
[pspp] / src / ui / gui / psppire-var-sheet.h
1 /* PSPPIRE - a graphical user interface for PSPP.
2    Copyright (C) 2008, 2012 Free Software Foundation, Inc.
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 #ifndef __PSPPIRE_VAR_SHEET_H__
18 #define __PSPPIRE_VAR_SHEET_H__
19
20
21 #include <glib.h>
22 #include <glib-object.h>
23 #include <gtk-contrib/psppire-sheet.h>
24 #include "missing-val-dialog.h"
25
26
27 G_BEGIN_DECLS
28
29 #define PSPPIRE_VAR_SHEET_TYPE            (psppire_var_sheet_get_type ())
30 #define PSPPIRE_VAR_SHEET(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), PSPPIRE_VAR_SHEET_TYPE, PsppireVarSheet))
31 #define PSPPIRE_VAR_SHEET_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), PSPPIRE_VAR_SHEET_TYPE, PsppireVarSheetClass))
32 #define PSPPIRE_IS_VAR_SHEET(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PSPPIRE_VAR_SHEET_TYPE))
33 #define PSPPIRE_IS_VAR_SHEET_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), PSPPIRE_VAR_SHEET_TYPE))
34
35
36 typedef struct _PsppireVarSheet       PsppireVarSheet;
37 typedef struct _PsppireVarSheetClass  PsppireVarSheetClass;
38
39 struct _PsppireVarSheet
40 {
41   PsppireSheet parent;
42
43   gboolean dispose_has_run;
44   gboolean may_create_vars;
45 };
46
47
48 struct _PsppireVarSheetClass
49 {
50   PsppireSheetClass parent_class;
51
52   GtkListStore *alignment_list;
53   GtkListStore *measure_list;
54
55   void (*var_sheet)(PsppireVarSheet*);
56 };
57
58
59 GType          psppire_var_sheet_get_type        (void);
60 GtkWidget*     psppire_var_sheet_new             (void);
61
62 G_END_DECLS
63
64
65
66
67 #endif /* __PSPPIRE_VAR_SHEET_H__ */