val-labs-dialog: Convert to a GObject.
[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 #include "var-type-dialog.h"
26
27
28 G_BEGIN_DECLS
29
30 #define PSPPIRE_VAR_SHEET_TYPE            (psppire_var_sheet_get_type ())
31 #define PSPPIRE_VAR_SHEET(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), PSPPIRE_VAR_SHEET_TYPE, PsppireVarSheet))
32 #define PSPPIRE_VAR_SHEET_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), PSPPIRE_VAR_SHEET_TYPE, PsppireVarSheetClass))
33 #define PSPPIRE_IS_VAR_SHEET(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PSPPIRE_VAR_SHEET_TYPE))
34 #define PSPPIRE_IS_VAR_SHEET_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), PSPPIRE_VAR_SHEET_TYPE))
35
36
37 typedef struct _PsppireVarSheet       PsppireVarSheet;
38 typedef struct _PsppireVarSheetClass  PsppireVarSheetClass;
39
40 struct _PsppireVarSheet
41 {
42   PsppireSheet parent;
43
44   gboolean dispose_has_run;
45   gboolean may_create_vars;
46
47   struct missing_val_dialog *missing_val_dialog ;
48 };
49
50
51 struct _PsppireVarSheetClass
52 {
53   PsppireSheetClass parent_class;
54
55   GtkListStore *alignment_list;
56   GtkListStore *measure_list;
57
58   void (*var_sheet)(PsppireVarSheet*);
59 };
60
61
62 GType          psppire_var_sheet_get_type        (void);
63 GtkWidget*     psppire_var_sheet_new             (void);
64
65 G_END_DECLS
66
67
68
69
70 #endif /* __PSPPIRE_VAR_SHEET_H__ */