644bb0be9123e27c43a8ec57d29b91435000723a
[pspp-builds.git] / src / ui / gui / psppire-case-file.h
1 /* 
2     PSPPIRE --- A Graphical User Interface for PSPP
3     Copyright (C) 2006  Free Software Foundation
4     Written by John Darrington
5
6     This program is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with this program; if not, write to the Free Software
18     Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19     02110-1301, USA. */
20
21
22 #ifndef __CASE_FILE_H__
23 #define __CASE_FILE_H__
24
25
26 #include <glib-object.h>
27 #include <glib.h>
28
29 #include <libpspp/str.h>
30
31
32
33 G_BEGIN_DECLS
34
35
36 /* --- type macros --- */
37 #define G_TYPE_PSPPIRE_CASE_FILE              (psppire_case_file_get_type ())
38 #define PSPPIRE_CASE_FILE(object)           (G_TYPE_CHECK_INSTANCE_CAST ((object), G_TYPE_PSPPIRE_CASE_FILE, PsppireCaseFile))
39 #define PSPPIRE_CASE_FILE_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), G_TYPE_PSPPIRE_CASE_FILE, PsppireCaseFileClass))
40 #define G_IS_PSPPIRE_CASE_FILE(object)        (G_TYPE_CHECK_INSTANCE_TYPE ((object), G_TYPE_PSPPIRE_CASE_FILE))
41 #define G_IS_PSPPIRE_CASE_FILE_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), G_TYPE_PSPPIRE_CASE_FILE))
42 #define PSPPIRE_CASE_FILE_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), G_TYPE_PSPPIRE_CASE_FILE, PsppireCaseFileClass))
43
44
45
46
47 /* --- typedefs & structures --- */
48 typedef struct _PsppireCaseFile    PsppireCaseFile;
49 typedef struct _PsppireCaseFileClass PsppireCaseFileClass;
50
51 struct ccase;
52 struct casefilefile;
53
54 struct _PsppireCaseFile
55 {
56   GObject             parent;
57
58   struct casefile *flexifile;
59 };
60
61
62 struct _PsppireCaseFileClass
63 {
64   GObjectClass parent_class;
65 };
66
67
68 /* -- PsppireCaseFile --- */
69 GType          psppire_case_file_get_type (void);
70
71 PsppireCaseFile *psppire_case_file_new (gint var_cnt);
72
73 gboolean psppire_case_file_append_case(PsppireCaseFile *cf, 
74                                              struct ccase *c);
75
76 gboolean psppire_case_file_insert_case(PsppireCaseFile *cf, struct ccase *c, gint row);
77
78 gint psppire_case_file_get_case_count(const PsppireCaseFile *cf);
79
80
81 const union value * psppire_case_file_get_value(const PsppireCaseFile *cf, 
82                                               gint c, gint idx);
83
84 struct fmt_spec;
85
86 gboolean psppire_case_file_data_in(PsppireCaseFile *cf, gint c, gint idx,
87                                    struct substring input,
88                                    const struct fmt_spec *);
89
90 gboolean psppire_case_file_set_value(PsppireCaseFile *cf, gint casenum, 
91                                      gint idx, union value *v, gint width);
92
93 void psppire_case_file_clear(PsppireCaseFile *cf);
94
95
96 gboolean psppire_case_file_delete_cases(PsppireCaseFile *cf, gint n_rows, 
97                                         gint first);
98
99 gboolean psppire_case_file_insert_values(PsppireCaseFile *cf, gint n_values, gint before);
100
101 struct sort_criteria;
102 void psppire_case_file_sort(PsppireCaseFile *cf, const struct sort_criteria *);
103
104 gboolean psppire_case_file_get_case(const PsppireCaseFile *cf, gint casenum, 
105                                     struct ccase *c);
106
107
108 G_END_DECLS
109
110 #endif /* __PSPPIRE_CASE_FILE_H__ */