gui: Redo var sheet, data sheet, text import with PsppSheetView.
[pspp] / src / ui / gui / psppire-var-sheet.h
1 /* PSPPIRE - a graphical user interface for PSPP.
2    Copyright (C) 2008, 2011, 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 /* PsppireVarSheet is a PsppSheetView that displays the variables in a
21    dictionary, one variable per row.
22
23    PsppireDataSheet is usually a child of PsppireDataEditor in the widget
24    hierarchy.  Other widgets can also use it. */
25
26 #include <gtk/gtk.h>
27 #include "data/format.h"
28 #include "ui/gui/pspp-sheet-view.h"
29
30
31 G_BEGIN_DECLS
32
33 #define PSPPIRE_TYPE_FMT_USE (psppire_fmt_use_get_type ())
34
35 GType psppire_fmt_use_get_type (void) G_GNUC_CONST;
36 \f
37 #define PSPPIRE_VAR_SHEET_TYPE            (psppire_var_sheet_get_type ())
38 #define PSPPIRE_VAR_SHEET(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), PSPPIRE_VAR_SHEET_TYPE, PsppireVarSheet))
39 #define PSPPIRE_VAR_SHEET_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), PSPPIRE_VAR_SHEET_TYPE, PsppireVarSheetClass))
40 #define PSPPIRE_IS_VAR_SHEET(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PSPPIRE_VAR_SHEET_TYPE))
41 #define PSPPIRE_IS_VAR_SHEET_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), PSPPIRE_VAR_SHEET_TYPE))
42
43
44 typedef struct _PsppireVarSheet       PsppireVarSheet;
45 typedef struct _PsppireVarSheetClass  PsppireVarSheetClass;
46
47 struct _PsppireVarSheet
48 {
49   PsppSheetView parent;
50
51   gboolean may_create_vars;
52   gboolean may_delete_vars;
53   enum fmt_use format_use;
54
55   struct _PsppireDict *dict;
56   struct val_labs_dialog *val_labs_dialog;
57   struct missing_val_dialog *missing_val_dialog;
58   struct var_type_dialog *var_type_dialog;
59
60   gulong scroll_to_bottom_signal;
61   gulong *dict_signals;
62
63   GtkBuilder *builder;
64
65   GtkWidget *container;
66   gulong on_switch_page_handler;
67 };
68
69 struct _PsppireVarSheetClass
70 {
71   PsppSheetViewClass parent_class;
72 };
73
74 GType          psppire_var_sheet_get_type        (void);
75 GtkWidget*     psppire_var_sheet_new             (void);
76
77 struct _PsppireDict *psppire_var_sheet_get_dictionary (PsppireVarSheet *);
78 void psppire_var_sheet_set_dictionary (PsppireVarSheet *,
79                                        struct _PsppireDict *);
80
81 gboolean psppire_var_sheet_get_may_create_vars (PsppireVarSheet *);
82 void psppire_var_sheet_set_may_create_vars (PsppireVarSheet *, gboolean);
83
84 gboolean psppire_var_sheet_get_may_delete_vars (PsppireVarSheet *);
85 void psppire_var_sheet_set_may_delete_vars (PsppireVarSheet *, gboolean);
86
87 void psppire_var_sheet_goto_variable (PsppireVarSheet *, int dict_index);
88
89 GtkUIManager *psppire_var_sheet_get_ui_manager (PsppireVarSheet *);
90
91 G_END_DECLS
92
93 #endif /* __PSPPIRE_VAR_SHEET_H__ */