Update Spanish translation
[gnumeric.git] / src / sheet-object-graph.h
blobbcd0aa7ce079a0137b40086d8675f8c8d4db834e
1 #ifndef _GNM_SHEET_OBJECT_GRAPH_H_
2 # define _GNM_SHEET_OBJECT_GRAPH_H_
4 #include <sheet-object.h>
5 #include <gnumeric-fwd.h>
6 #include <goffice/goffice.h>
8 G_BEGIN_DECLS
10 #define GNM_SO_GRAPH_TYPE (sheet_object_graph_get_type ())
11 #define GNM_IS_SO_GRAPH(o) (G_TYPE_CHECK_INSTANCE_TYPE((o), GNM_SO_GRAPH_TYPE))
12 #define GNM_SO_GRAPH(o) (G_TYPE_CHECK_INSTANCE_CAST((o), GNM_SO_GRAPH_TYPE, SheetObjectGraph))
14 GType sheet_object_graph_get_type (void);
15 SheetObject *sheet_object_graph_new (GogGraph *graph);
16 GogGraph *sheet_object_graph_get_gog (SheetObject *sog);
17 void sheet_object_graph_set_gog (SheetObject *sog, GogGraph *graph);
19 void sheet_object_graph_guru (WBCGtk *wbcg, GogGraph *graph,
20 GClosure *closure);
22 void sheet_object_graph_ensure_size (SheetObject *sog);
23 G_END_DECLS
25 #endif /* _GNM_SHEET_OBJECT_GRAPH_H_ */