0100254386adf3dd9085a0d9954555bbfe51fa76
[pspp-builds.git] / src / ui / gui / psppire-data-window.h
1 /* PSPPIRE - a graphical user interface for PSPP.
2    Copyright (C) 2008, 2010  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_DATA_WINDOW_H__
19 #define __PSPPIRE_DATA_WINDOW_H__
20
21
22 #include <glib.h>
23 #include <glib-object.h>
24 #include <gtk/gtk.h>
25
26 #include "ui/gui/psppire-window.h"
27 #include "ui/gui/psppire-data-editor.h"
28
29 struct dataset;
30
31 G_BEGIN_DECLS
32
33 #define PSPPIRE_DATA_WINDOW_TYPE            (psppire_data_window_get_type ())
34 #define PSPPIRE_DATA_WINDOW(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), PSPPIRE_DATA_WINDOW_TYPE, PsppireDataWindow))
35 #define PSPPIRE_DATA_WINDOW_CLASS(class)    (G_TYPE_CHECK_CLASS_CAST ((class), \
36     PSPPIRE_DATA_WINDOW_TYPE, PsppireData_WindowClass))
37 #define PSPPIRE_IS_DATA_WINDOW(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), \
38     PSPPIRE_DATA_WINDOW_TYPE))
39 #define PSPPIRE_IS_DATA_WINDOW_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \
40     PSPPIRE_DATA_WINDOW_TYPE))
41
42
43 typedef struct _PsppireDataWindow       PsppireDataWindow;
44 typedef struct _PsppireDataWindowClass  PsppireDataWindowClass;
45
46
47 struct _PsppireDataWindow
48 {
49   PsppireWindow parent;
50
51   /* <private> */
52   PsppireDataEditor *data_editor;
53   GtkBuilder *builder;
54
55   PsppireVarStore *var_store;
56   struct dataset *dataset;
57   PsppireDataStore *data_store;
58
59   GtkAction *invoke_goto_dialog;
60
61   GtkAction *insert_variable;
62   GtkAction *insert_case;
63   GtkAction *delete_variables;
64   GtkAction *delete_cases;
65
66
67   gboolean save_as_portable;
68 };
69
70 struct _PsppireDataWindowClass
71 {
72   PsppireWindowClass parent_class;
73 };
74
75 GType      psppire_data_window_get_type        (void);
76 GtkWidget* psppire_data_window_new             (struct dataset *);
77 PsppireDataWindow *psppire_default_data_window (void);
78
79 G_END_DECLS
80
81 #endif /* __PSPPIRE_DATA_WINDOW_H__ */