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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
/* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* xlsx-utils.h : utilities shared between xlsx import and export
*
* Copyright (C) 2006-2007 Jody Goldberg (jody@gnome.org)
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of version 2 of the GNU General Public
* License as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
* USA
*/
/*****************************************************************************/
#ifndef GNM_XLSX_UTILS_H
#define GNM_XLSX_UTILS_H
#include <gnumeric.h>
enum {
XL_NS_SS,
XL_NS_SS_DRAW,
XL_NS_CHART,
XL_NS_DRAW,
XL_NS_DOC_REL,
XL_NS_PKG_REL
};
#define XLSX_MaxCol 16384
#define XLSX_MaxRow 1048576
GnmConventions *xlsx_conventions_new (void);
void xlsx_conventions_free (GnmConventions *conv);
Workbook *xlsx_conventions_add_extern_ref (GnmConventions *conv,
char const *path);
GnmConventions *xlsx_conventions_new (void);
void xlsx_conventions_free (GnmConventions *conv);
GOFormat *xlsx_pivot_date_fmt (void);
#endif /* GNM_XLSX_UTILS_H */
|