mirror of
https://github.com/jmcnamara/libxlsxwriter
synced 2025-03-28 21:13:14 +00:00
245 lines
6.8 KiB
C
245 lines
6.8 KiB
C
/*
|
|
* libxlsxwriter
|
|
*
|
|
* Copyright 2014, John McNamara, jmcnamara@cpan.org. See LICENSE.txt.
|
|
*/
|
|
|
|
/**
|
|
* @page workbook_page The Workbook object
|
|
*
|
|
* The Workbook is the main object exposed by the libxlsxwriter library. It
|
|
* represents the entire spreadsheet as you see it in Excel and internally it
|
|
* represents the Excel file as it is written on disk.
|
|
*
|
|
* See @ref workbook.h for full details of the functionality.
|
|
*
|
|
* @file workbook.h
|
|
*
|
|
* @brief Functions related to creating an Excel xlsx workbook.
|
|
*
|
|
* The Workbook is the main object exposed by the libxlsxwriter library. It
|
|
* represents the entire spreadsheet as you see it in Excel and internally it
|
|
* represents the Excel file as it is written on disk.
|
|
*
|
|
* @code
|
|
* #include "xlsxwriter.h"
|
|
*
|
|
* int main() {
|
|
*
|
|
* lxw_workbook *workbook = new_workbook("filename.xlsx");
|
|
* lxw_worksheet *worksheet = workbook_add_worksheet(workbook, NULL);
|
|
*
|
|
* worksheet_write_string(worksheet, 0, 0, "Hello Excel", NULL);
|
|
*
|
|
* return workbook_close(workbook);
|
|
* }
|
|
* @endcode
|
|
*
|
|
* @image html workbook01.png
|
|
*
|
|
*/
|
|
#ifndef __LXW_WORKBOOK_H__
|
|
#define __LXW_WORKBOOK_H__
|
|
|
|
#include <stdint.h>
|
|
#include "xlsxwriter/third_party/queue.h"
|
|
|
|
#include "worksheet.h"
|
|
#include "shared_strings.h"
|
|
#include "hash_table.h"
|
|
#include "common.h"
|
|
|
|
/* Define the queue.h TAILQ structs for the workbook list. */
|
|
STAILQ_HEAD(lxw_worksheets, lxw_worksheet);
|
|
|
|
/**
|
|
* @brief Errors conditions encountered when closing the Workbook and writing
|
|
* the Excel file to disk.
|
|
*/
|
|
enum lxw_close_error {
|
|
/** No error */
|
|
LXW_CLOSE_ERROR_NONE,
|
|
/** Error encountered when creating file zip container */
|
|
LXW_CLOSE_ERROR_ZIP
|
|
/* TODO. Need to add/document more. */
|
|
};
|
|
|
|
/**
|
|
* @brief Struct to represent an Excel workbook.
|
|
*
|
|
* The members of the lxw_workbook struct aren't modified directly. Instead
|
|
* the workbook properties are set by calling the functions shown in
|
|
* workbook.h.
|
|
*/
|
|
typedef struct lxw_workbook {
|
|
|
|
FILE *file;
|
|
struct lxw_worksheets *worksheets;
|
|
struct lxw_formats *formats;
|
|
lxw_sst *sst;
|
|
lxw_doc_properties *properties;
|
|
const char *filename;
|
|
|
|
uint16_t num_sheets;
|
|
uint16_t first_sheet;
|
|
uint16_t active_tab;
|
|
uint16_t num_xf_formats;
|
|
uint16_t num_format_count;
|
|
|
|
uint16_t font_count;
|
|
uint16_t border_count;
|
|
uint16_t fill_count;
|
|
|
|
lxw_hash_table *xf_format_indices;
|
|
|
|
} lxw_workbook;
|
|
|
|
|
|
/* *INDENT-OFF* */
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
/* *INDENT-ON* */
|
|
|
|
/**
|
|
* @brief Create a new workbook object.
|
|
*
|
|
* @param filename The name of the new Excel file to create.
|
|
*
|
|
* @return A lxw_workbook instance.
|
|
*
|
|
* The `%new_workbook()` constructor is used to create a new Excel workbook
|
|
* with a given filename:
|
|
*
|
|
* @code
|
|
* lxw_workbook *workbook = new_workbook("filename.xlsx");
|
|
* @endcode
|
|
*
|
|
* When specifying a filename it is recommended that you use an `.xlsx`
|
|
* extension or Excel will generate a warning when opening the file.
|
|
*
|
|
*/
|
|
lxw_workbook *new_workbook(const char *filename);
|
|
|
|
/**
|
|
* @brief Add a new worksheet to a workbook:
|
|
*
|
|
* @param workbook Pointer to a lxw_workbook instance.
|
|
* @param sheetname Optional worksheet name, defaults to Sheet1, etc.
|
|
*
|
|
* @return A lxw_worksheet instance.
|
|
*
|
|
* The `%workbook_add_worksheet()` method adds a new worksheet to a workbook:
|
|
*
|
|
* At least one worksheet should be added to a new workbook: The @ref
|
|
* worksheet.h "Worksheet" object is used to write data and configure a
|
|
* worksheet in the workbook.
|
|
*
|
|
* The `sheetname` parameter is optional. If it is `NULL` the default
|
|
* Excel convention will be followed, i.e. Sheet1, Sheet2, etc.:
|
|
*
|
|
* @code
|
|
* worksheet = workbook_add_worksheet(workbook, NULL ); // Sheet1
|
|
* worksheet = workbook_add_worksheet(workbook, "Foglio2"); // Foglio2
|
|
* worksheet = workbook_add_worksheet(workbook, "Data"); // Data
|
|
* worksheet = workbook_add_worksheet(workbook, NULL ); // Sheet4
|
|
*
|
|
* @endcode
|
|
*
|
|
* @image html workbook02.png
|
|
*
|
|
* The worksheet name must be a valid Excel worksheet name, i.e. it must be
|
|
* less than 32 character and it cannot contain any of the characters:
|
|
*
|
|
* / \ [ ] : * ?
|
|
*
|
|
* In addition, you cannot use the same, case insensitive, `sheetname` for more
|
|
* than one worksheet.
|
|
*
|
|
*/
|
|
lxw_worksheet *workbook_add_worksheet(lxw_workbook *workbook,
|
|
const char *sheetname);
|
|
|
|
/**
|
|
* @brief Create a new @ref format.h "Format" object to formats cells in
|
|
* worksheets.
|
|
*
|
|
* @param workbook Pointer to a lxw_workbook instance.
|
|
*
|
|
* @return A lxw_format instance.
|
|
*
|
|
* The `workbook_add_format()` function can be used to create new @ref
|
|
* format.h "Format" objects which are used to apply formatting to a cell.
|
|
*
|
|
* @code
|
|
* // Create the Format.
|
|
* lxw_format *format = workbook_add_format(workbook);
|
|
*
|
|
* // Set some of the format properties.
|
|
* format_set_bold(format);
|
|
* format_set_font_color(format, LXW_COLOR_RED);
|
|
*
|
|
* // Use the format to change the text format in a cell.
|
|
* worksheet_write_string(worksheet, 0, 0, "Hello", format);
|
|
* @endcode
|
|
*
|
|
* See @ref format.h "the Format object" and @ref working_with_formats
|
|
* sections for more details about Format properties and how to set them.
|
|
*
|
|
*/
|
|
lxw_format *workbook_add_format(lxw_workbook *workbook);
|
|
|
|
/**
|
|
* @brief Close the Workbook object and write the XLSX file.
|
|
*
|
|
* @param workbook Pointer to a lxw_workbook instance.
|
|
*
|
|
* @return A #lxw_close_error.
|
|
*
|
|
* The `%workbook_close()` function closes a Workbook object, writes the Excel
|
|
* file to disk, frees any memory allocated internally to the Workbook and
|
|
* frees the object itself.
|
|
*
|
|
* @code
|
|
* workbook_close(workbook);
|
|
* @endcode
|
|
*
|
|
* The `%workbook_close()` function returns any #lxw_close_error error codes
|
|
* encountered when creating the Excel file. The error code can be returned
|
|
* from the program main or the calling function:
|
|
*
|
|
* @code
|
|
* return workbook_close(workbook);
|
|
* @endcode
|
|
*
|
|
*/
|
|
uint8_t workbook_close(lxw_workbook *workbook);
|
|
|
|
void _free_workbook(lxw_workbook *workbook);
|
|
void _workbook_assemble_xml_file(lxw_workbook *self);
|
|
|
|
/* Declarations required for unit testing. */
|
|
#ifdef TESTING
|
|
|
|
STATIC void _workbook_xml_declaration(lxw_workbook *self);
|
|
STATIC void _workbook_xml_declaration(lxw_workbook *self);
|
|
STATIC void _write_workbook(lxw_workbook *self);
|
|
STATIC void _write_file_version(lxw_workbook *self);
|
|
STATIC void _write_workbook_pr(lxw_workbook *self);
|
|
STATIC void _write_book_views(lxw_workbook *self);
|
|
STATIC void _write_workbook_view(lxw_workbook *self);
|
|
STATIC void _write_sheet(lxw_workbook *self,
|
|
const char *name, uint32_t sheet_id, uint8_t hidden);
|
|
STATIC void _write_sheets(lxw_workbook *self);
|
|
STATIC void _write_calc_pr(lxw_workbook *self);
|
|
|
|
#endif /* TESTING */
|
|
|
|
/* *INDENT-OFF* */
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
/* *INDENT-ON* */
|
|
|
|
#endif /* __LXW_WORKBOOK_H__ */
|