/usr/include/libspreadsheet-1.12/spreadsheet/cell-draw.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 | /* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
#ifndef _GNM_CELL_DRAW_H_
# define _GNM_CELL_DRAW_H_
#include "gnumeric.h"
G_BEGIN_DECLS
gboolean cell_calc_layout (GnmCell const *cell, GnmRenderedValue *rv, int y_direction,
int width, int height, int h_center,
GOColor *res_color, gint *res_x, gint *res_y);
void cell_finish_layout (GnmCell *cell, GnmRenderedValue *rv,
int col_width,
gboolean inhibit_overflow);
void cell_draw (GnmCell const *cell, cairo_t* cr,
int x, int y, int height, int width, int h_center,
gboolean show_extension_markers);
G_END_DECLS
#endif /* _GNM_CELL_DRAW_H_ */
|