/usr/include/libspreadsheet-1.12/spreadsheet/position.h is in gnumeric 1.12.32-1+b1.
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 | /* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
#ifndef _GNM_POSITION_H_
# define _GNM_POSITION_H_
#include "gnumeric.h"
G_BEGIN_DECLS
GType gnm_cell_pos_get_type (void); /* boxed type */
struct _GnmEvalPos {
GnmCellPos eval;
Sheet *sheet;
GnmDependent *dep; /* optionally NULL */
GnmExprArrayCorner const *array; /* non-NULL if top level is array */
};
struct _GnmParsePos {
GnmCellPos eval;
Sheet *sheet;
Workbook *wb;
};
/*
* Used for getting a valid Sheet *from a GnmCellRef
* Syntax is GnmCellRef, valid Sheet *
*/
#define eval_sheet(a,b) (((a) != NULL) ? (a) : (b))
/* Initialization routines for Evaluation Positions */
GType gnm_eval_pos_get_type (void); /* Boxed type */
GnmEvalPos *eval_pos_init (GnmEvalPos *ep, Sheet *s, int col, int row);
GnmEvalPos *eval_pos_init_pos (GnmEvalPos *ep, Sheet *s, GnmCellPos const *pos);
GnmEvalPos *eval_pos_init_dep (GnmEvalPos *ep, GnmDependent const *dep);
GnmEvalPos *eval_pos_init_cell (GnmEvalPos *ep, GnmCell const *cell);
GnmEvalPos *eval_pos_init_editpos (GnmEvalPos *ep, SheetView const *sv);
GnmEvalPos *eval_pos_init_sheet (GnmEvalPos *ep, Sheet const *sheet);
#define eval_pos_is_array_context(ep) ((ep)->array != NULL)
/* Initialization routines for Parse Positions */
GType gnm_parse_pos_get_type (void); /* Boxed type */
GnmParsePos *parse_pos_init (GnmParsePos *pp, Workbook *wb,
Sheet const *sheet, int col, int row);
GnmParsePos *parse_pos_init_dep (GnmParsePos *pp, GnmDependent const *dep);
GnmParsePos *parse_pos_init_cell (GnmParsePos *pp, GnmCell const *cell);
GnmParsePos *parse_pos_init_evalpos (GnmParsePos *pp, GnmEvalPos const *pos);
GnmParsePos *parse_pos_init_editpos (GnmParsePos *pp, SheetView const *sv);
GnmParsePos *parse_pos_init_sheet (GnmParsePos *pp, Sheet const *sheet);
/*****************************************************************************/
struct _GnmCellRef {
Sheet *sheet;
int col, row;
unsigned char col_relative;
unsigned char row_relative;
};
struct _GnmRangeRef {
GnmCellRef a, b;
};
GType gnm_cellref_get_type (void); /* Boxed type */
GnmCellRef *gnm_cellref_init (GnmCellRef *ref, Sheet *sheet,
int col, int row, gboolean rel);
gboolean gnm_cellref_equal (GnmCellRef const *a, GnmCellRef const *b);
guint gnm_cellref_hash (GnmCellRef const *cr);
void gnm_cellref_make_abs (GnmCellRef *dest, GnmCellRef const *src,
GnmEvalPos const *ep);
void gnm_cellref_set_col_ar (GnmCellRef *cr, GnmParsePos const *pp,
gboolean abs_rel);
void gnm_cellref_set_row_ar (GnmCellRef *cr, GnmParsePos const *pp,
gboolean abs_rel);
int gnm_cellref_get_col (GnmCellRef const *cr, GnmEvalPos const *ep);
int gnm_cellref_get_row (GnmCellRef const *cr, GnmEvalPos const *ep);
GType gnm_rangeref_get_type (void); /* Boxed type */
gboolean gnm_rangeref_equal (GnmRangeRef const *a, GnmRangeRef const *b);
guint gnm_rangeref_hash (GnmRangeRef const *cr);
GnmRangeRef *gnm_rangeref_dup (GnmRangeRef const *cr);
void gnm_rangeref_normalize_pp (GnmRangeRef const *rr,
GnmParsePos const *pp,
Sheet **start_sheet, Sheet **end_sheet,
GnmRange *dest);
void gnm_rangeref_normalize (GnmRangeRef const *rr,
GnmEvalPos const *ep,
Sheet **start_sheet, Sheet **end_sheet,
GnmRange *dest);
guint gnm_cellpos_hash (GnmCellPos const *key);
gint gnm_cellpos_equal (GnmCellPos const *a, GnmCellPos const *b);
void gnm_cellpos_init_cellref_ss (GnmCellPos *res, GnmCellRef const *cell_ref,
GnmCellPos const *pos,
GnmSheetSize const *ss);
void gnm_cellpos_init_cellref (GnmCellPos *cp, GnmCellRef const *cr,
GnmCellPos const *pos, Sheet const *base_sheet);
G_END_DECLS
#endif /* _GNM_POSITION_H_ */
|