/usr/include/libspreadsheet-1.12/spreadsheet/sheet-object-graph.h is in gnumeric 1.12.28-1.
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 | /* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
#ifndef _GNM_SHEET_OBJECT_GRAPH_H_
# define _GNM_SHEET_OBJECT_GRAPH_H_
#include "sheet-object.h"
#include "gnumeric-fwd.h"
#include <goffice/goffice.h>
G_BEGIN_DECLS
#define GNM_SO_GRAPH_TYPE (sheet_object_graph_get_type ())
#define GNM_IS_SO_GRAPH(o) (G_TYPE_CHECK_INSTANCE_TYPE((o), GNM_SO_GRAPH_TYPE))
#define GNM_SO_GRAPH(o) (G_TYPE_CHECK_INSTANCE_CAST((o), GNM_SO_GRAPH_TYPE, SheetObjectGraph))
GType sheet_object_graph_get_type (void);
SheetObject *sheet_object_graph_new (GogGraph *graph);
GogGraph *sheet_object_graph_get_gog (SheetObject *sog);
void sheet_object_graph_set_gog (SheetObject *sog, GogGraph *graph);
void sheet_object_graph_guru (WBCGtk *wbcg, GogGraph *graph,
GClosure *closure);
void sheet_object_graph_ensure_size (SheetObject *sog);
G_END_DECLS
#endif /* _GNM_SHEET_OBJECT_GRAPH_H_ */
|