/usr/include/libspreadsheet-1.12/spreadsheet/gnm-graph-window.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 | /* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
#ifndef _GNM_GRAPH_WINDOW_H_
# define _GNM_GRAPH_WINDOW_H_
#include <gtk/gtk.h>
#include <goffice/goffice.h>
G_BEGIN_DECLS
#define GNM_TYPE_GRAPH_WINDOW (gnm_graph_window_get_type ())
#define GNM_GRAPH_WINDOW(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GNM_TYPE_GRAPH_WINDOW, GnmGraphWindow))
#define GNM_IS_GRAPH_WINDOW(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GNM_TYPE_GRAPH_WINDOW))
typedef struct _GnmGraphWindow GnmGraphWindow;
typedef struct _GnmGraphWindowClass GnmGraphWindowClass;
GType gnm_graph_window_get_type (void);
GtkWidget *gnm_graph_window_new (GogGraph *graph,
double graph_width,
double graph_height);
G_END_DECLS
#endif /* _GNM_GRAPH_WINDOW_H_ */
|