/usr/include/libspreadsheet-1.12/spreadsheet/cell.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 101 | /* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
#ifndef _GNM_CELL_H_
# define _GNM_CELL_H_
#include "gnumeric.h"
#include "dependent.h"
G_BEGIN_DECLS
typedef enum {
/* MUST BE > 0xFFF,FFFF to avoid conflict with GnmDependentFlags */
/* GnmCell is linked into the sheet */
GNM_CELL_IN_SHEET_LIST = 0x10000000,
/* Is the top left corner of a merged region */
GNM_CELL_IS_MERGED = 0x20000000,
/* Cells expression was changed, recalc before rendering */
GNM_CELL_HAS_NEW_EXPR = 0x40000000
} GnmCellFlags;
/* Definition of a GnmCell */
#define GNM_DEP_TO_CELL(dep) ((GnmCell *)(dep))
#define GNM_CELL_TO_DEP(cell) (&(cell)->base)
struct _GnmCell {
GnmDependent base;
/* Mandatory state information */
GnmCellPos pos;
GnmValue *value; /* computed or entered (Must be non NULL) */
};
GType gnm_cell_get_type (void);
/*
* GnmCell state checking
*/
#define gnm_cell_needs_recalc(cell) ((cell)->base.flags & DEPENDENT_NEEDS_RECALC)
#define gnm_cell_expr_is_linked(cell) ((cell)->base.flags & DEPENDENT_IS_LINKED)
#define gnm_cell_has_expr(cell) ((cell)->base.texpr != NULL)
#define gnm_cell_is_merged(cell) ((cell)->base.flags & GNM_CELL_IS_MERGED)
gboolean gnm_cell_is_empty (GnmCell const *cell);
gboolean gnm_cell_is_blank (GnmCell const *cell); /* empty, or "" */
GnmValue *gnm_cell_is_error (GnmCell const *cell);
gboolean gnm_cell_is_number (GnmCell const *cell);
gboolean gnm_cell_is_zero (GnmCell const *cell);
gboolean gnm_cell_is_array (GnmCell const *cell);
gboolean gnm_cell_is_nonsingleton_array (GnmCell const *cell);
GnmExprArrayCorner const *
gnm_cell_is_array_corner (GnmCell const *cell);
gboolean gnm_cell_array_bound (GnmCell const *cell, GnmRange *res);
/*
* Utilities to assign the contents of a cell
*/
void gnm_cell_set_text (GnmCell *c, char const *text);
void gnm_cell_assign_value (GnmCell *c, GnmValue *v);
void gnm_cell_set_value (GnmCell *c, GnmValue *v);
void gnm_cell_set_expr_and_value(GnmCell *c,
GnmExprTop const *texpr, GnmValue *v,
gboolean link_expr);
void gnm_cell_set_expr (GnmCell *c, GnmExprTop const *texpr);
void gnm_cell_set_expr_unsafe (GnmCell *cell, GnmExprTop const *texpr);
void gnm_cell_set_array_formula (Sheet *sheet,
int cola, int rowa, int colb, int rowb,
GnmExprTop const *texpr);
GOUndo *gnm_cell_set_array_formula_undo (GnmSheetRange *sr,
GnmExprTop const *texpr);
gboolean gnm_cell_set_array (Sheet *sheet,
const GnmRange *r,
GnmExprTop const *texpr);
void gnm_cell_cleanout (GnmCell *cell);
void gnm_cell_convert_expr_to_value (GnmCell *cell);
/*
* Manipulate GnmCell attributes
*/
GnmStyle const *gnm_cell_get_style (GnmCell const *cell);
GOFormat const *gnm_cell_get_format (GnmCell const *cell);
GOFormat const *gnm_cell_get_format_given_style (GnmCell const *cell, GnmStyle const *style);
void gnm_cell_set_format (GnmCell *cell, char const *format);
GnmRenderedValue *gnm_cell_get_rendered_value (GnmCell const *cell);
GnmRenderedValue *gnm_cell_fetch_rendered_value (GnmCell const *cell,
gboolean allow_variable_width);
GnmRenderedValue *gnm_cell_render_value (GnmCell const *cell,
gboolean allow_variable_width);
void gnm_cell_unrender (GnmCell const *cell);
int gnm_cell_rendered_height (GnmCell const * cell);
int gnm_cell_rendered_width (GnmCell const * cell); /* excludes offset */
int gnm_cell_rendered_offset (GnmCell const * cell);
GOColor gnm_cell_get_render_color (GnmCell const * cell);
char * gnm_cell_get_entered_text (GnmCell const * cell);
char * gnm_cell_get_text_for_editing (GnmCell const * cell, Sheet *sheet,
gboolean *quoted, int *cursor_pos);
char * gnm_cell_get_rendered_text (GnmCell *cell);
G_END_DECLS
#endif /* _GNM_CELL_H_ */
|