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