/usr/include/libgoffice-0.8/goffice/data/go-data-impl.h is in libgoffice-0.8-dev 0.8.17-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 | /* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* go-data-impl.h :
*
* Copyright (C) 2003-2004 Jody Goldberg (jody@gnome.org)
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of version 2 of the GNU General Public
* License as published by the Free Software Foundation.
*
* 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 St, Fifth Floor, Boston, MA 02110-1301
* USA
*/
#ifndef GO_DATA_IMPL_H
#define GO_DATA_IMPL_H
#include <goffice/data/goffice-data.h>
#include <goffice/data/go-data.h>
#include <goffice/utils/go-format.h>
#include <glib-object.h>
G_BEGIN_DECLS
typedef enum {
GO_DATA_CACHE_IS_VALID = 1 << 0,
GO_DATA_IS_EDITABLE = 1 << 1,
GO_DATA_SIZE_CACHED = 1 << 2
} GODataFlags;
struct _GOData {
GObject base;
gint32 flags; /* dunno what to do with these yet */
};
typedef struct {
GObjectClass base;
GOData * (*dup) (GOData const *src);
gboolean (*eq) (GOData const *a, GOData const *b);
GOFormat * (*preferred_fmt) (GOData const *dat);
GODateConventions const *(*date_conv) (GOData const *dat);
char * (*serialize) (GOData const *dat, gpointer user);
gboolean (*unserialize) (GOData *dat, char const *str, gpointer user);
void (*emit_changed) (GOData *dat);
unsigned int (*get_n_dimensions) (GOData *data);
void (*get_sizes) (GOData *data, unsigned int *sizes);
double * (*get_values) (GOData *data);
void (*get_bounds) (GOData *data, double *minimum, double *maximum);
double (*get_value) (GOData *data, unsigned int *coordinates);
char * (*get_string) (GOData *data, unsigned int *coordinates);
/* signals */
void (*changed) (GOData *dat);
} GODataClass;
struct _GODataScalar {
GOData base;
double value;
};
typedef struct {
GODataClass base;
double (*get_value) (GODataScalar *scalar);
char const *(*get_str) (GODataScalar *scalar);
} GODataScalarClass;
#define GO_DATA_VECTOR_LEN_CACHED GO_DATA_SIZE_CACHED
struct _GODataVector {
GOData base;
int len; /* negative if dirty, includes missing values */
double *values; /* NULL = inititialized/unsupported, nan = missing */
double minimum, maximum;
};
typedef struct {
GODataClass base;
void (*load_len) (GODataVector *vec);
void (*load_values) (GODataVector *vec);
double (*get_value) (GODataVector *vec, unsigned i);
char *(*get_str) (GODataVector *vec, unsigned i);
} GODataVectorClass;
#define GO_DATA_MATRIX_SIZE_CACHED GO_DATA_SIZE_CACHED
struct _GODataMatrix {
GOData base;
GODataMatrixSize size; /* negative if dirty, includes missing values */
double *values; /* NULL = uninitialized/unsupported, nan = missing */
double minimum, maximum;
};
typedef struct {
GODataClass base;
void (*load_size) (GODataMatrix *vec);
void (*load_values) (GODataMatrix *vec);
double (*get_value) (GODataMatrix *mat, unsigned i, unsigned j);
char *(*get_str) (GODataMatrix *mat, unsigned i, unsigned j);
} GODataMatrixClass;
G_END_DECLS
#endif /* GO_DATA_IMPL_H */
|