File: ms-chart.h

package info (click to toggle)
gnumeric 1.10.17-1.1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 96,532 kB
  • sloc: ansic: 266,961; xml: 52,455; sh: 10,491; makefile: 2,872; perl: 2,507; yacc: 1,326; python: 205
file content (26 lines) | stat: -rw-r--r-- 750 bytes parent folder | download | duplicates (7)
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 ts=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/**
 * 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 */