X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Fui%2Fgui%2Fpsppire-case-file.h;h=7603b482ff29ecb9854f23976616e124ad663e2a;hb=a84eb76b976646ae9b0315ae6b856bf0f71da567;hp=478f935afbcbd251ac3c8cee4802f1c5319b86a2;hpb=bc02bc027697df3207f827de722c26d8cc87e824;p=pspp-builds.git diff --git a/src/ui/gui/psppire-case-file.h b/src/ui/gui/psppire-case-file.h index 478f935a..7603b482 100644 --- a/src/ui/gui/psppire-case-file.h +++ b/src/ui/gui/psppire-case-file.h @@ -1,21 +1,18 @@ -/* - PSPPIRE --- A Graphical User Interface for PSPP - Copyright (C) 2006 Free Software Foundation +/* PSPPIRE - a graphical user interface for PSPP. + Copyright (C) 2006 Free Software Foundation - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - 02110-1301, USA. */ + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ #ifndef __CASE_FILE_H__ @@ -26,6 +23,7 @@ #include #include +#include @@ -48,14 +46,15 @@ typedef struct _PsppireCaseFile PsppireCaseFile; typedef struct _PsppireCaseFileClass PsppireCaseFileClass; struct ccase; -struct flexifile; -struct casefile; +struct casereader; struct _PsppireCaseFile { GObject parent; - struct casefile *flexifile; + /* */ + struct datasheet *datasheet; + gboolean accessible; }; @@ -68,17 +67,16 @@ struct _PsppireCaseFileClass /* -- PsppireCaseFile --- */ GType psppire_case_file_get_type (void); -PsppireCaseFile *psppire_case_file_new (gint var_cnt); -PsppireCaseFile* psppire_case_file_new_from_flexifile (struct flexifile *ff); - +PsppireCaseFile *psppire_case_file_new (const struct casereader *); gboolean psppire_case_file_insert_case (PsppireCaseFile *cf, struct ccase *c, gint row); gint psppire_case_file_get_case_count (const PsppireCaseFile *cf); -const union value * psppire_case_file_get_value (const PsppireCaseFile *cf, - gint c, gint idx); +union value * psppire_case_file_get_value (const PsppireCaseFile *cf, + casenumber, size_t idx, + union value *, int width); struct fmt_spec; @@ -97,13 +95,17 @@ gboolean psppire_case_file_delete_cases (PsppireCaseFile *cf, gint n_rows, gboolean psppire_case_file_insert_values (PsppireCaseFile *cf, gint n_values, gint before); -struct sort_criteria; -void psppire_case_file_sort (PsppireCaseFile *cf, const struct sort_criteria *); +struct case_ordering; + +void psppire_case_file_sort (PsppireCaseFile *cf, struct case_ordering *); gboolean psppire_case_file_get_case (const PsppireCaseFile *cf, gint casenum, struct ccase *c); +struct casereader * psppire_case_file_make_reader (PsppireCaseFile *cf); + + G_END_DECLS #endif /* __PSPPIRE_CASE_FILE_H__ */