File: ms-chart.h

package info (click to toggle)
gnumeric 1.12.57-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 111,496 kB
  • sloc: ansic: 296,601; xml: 56,363; perl: 6,615; sh: 5,288; makefile: 2,981; yacc: 1,341; python: 389
file content (25 lines) | stat: -rw-r--r-- 654 bytes parent folder | download | duplicates (4)
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
/**
 * ms-chart.h: MS Excel Chart support for Gnumeric
 *
 * Author:
 *    Jody Goldberg (jody@gnome.org)
 *
 * (C) 1999-2005 Jody Goldberg
 **/

#ifndef GNM_MS_CHART_H
#define GNM_MS_CHART_H

#include "excel.h"
#include "ms-excel-read.h"
#include "ms-container.h"

gboolean ms_excel_chart_read     (BiffQuery *q, MSContainer *container,
				  SheetObject *sog, Sheet *full_page);
gboolean ms_excel_chart_read_BOF (BiffQuery *q, MSContainer *container,
				  SheetObject *sog);

void ms_excel_chart_write	   (ExcelWriteState *ewb, SheetObject *so);
void ms_excel_chart_extract_styles (ExcelWriteState *ewb, SheetObject *so);

#endif /* GNM_MS_CHART_H */