90 lines
2.7 KiB
C
Raw Normal View History

2014-06-08 17:40:59 +01:00
/*
* libxlsxwriter
*
2024-02-26 18:47:32 +00:00
* SPDX-License-Identifier: BSD-2-Clause
2025-02-11 00:03:36 +00:00
* Copyright 2014-2025, John McNamara, jmcnamara@cpan.org.
2014-06-08 17:40:59 +01:00
*
* styles - A libxlsxwriter library for creating Excel XLSX styles files.
*
*/
#ifndef __LXW_STYLES_H__
#define __LXW_STYLES_H__
#include <stdint.h>
#include <ctype.h>
2014-06-08 17:40:59 +01:00
#include "format.h"
/*
* Struct to represent a styles.
*/
typedef struct lxw_styles {
FILE *file;
uint32_t font_count;
uint32_t xf_count;
uint32_t dxf_count;
uint32_t num_format_count;
uint32_t border_count;
uint32_t fill_count;
struct lxw_formats *xf_formats;
struct lxw_formats *dxf_formats;
2019-12-10 00:10:13 +00:00
uint8_t has_hyperlink;
uint16_t hyperlink_font_id;
uint8_t has_comments;
2014-06-08 17:40:59 +01:00
} lxw_styles;
/* *INDENT-OFF* */
#ifdef __cplusplus
extern "C" {
#endif
/* *INDENT-ON* */
lxw_styles *lxw_styles_new(void);
void lxw_styles_free(lxw_styles *styles);
void lxw_styles_assemble_xml_file(lxw_styles *self);
void lxw_styles_write_string_fragment(lxw_styles *self, const char *string);
void lxw_styles_write_rich_font(lxw_styles *styles, lxw_format *format);
2014-06-08 17:40:59 +01:00
/* Declarations required for unit testing. */
#ifdef TESTING
STATIC void _styles_xml_declaration(lxw_styles *self);
STATIC void _write_style_sheet(lxw_styles *self);
2017-07-26 23:22:42 +01:00
STATIC void _write_font_size(lxw_styles *self, double font_size);
2014-06-08 17:40:59 +01:00
STATIC void _write_font_color_theme(lxw_styles *self, uint8_t theme);
STATIC void _write_font_name(lxw_styles *self, const char *font_name,
uint8_t is_rich_string);
2014-06-08 17:40:59 +01:00
STATIC void _write_font_family(lxw_styles *self, uint8_t font_family);
STATIC void _write_font_scheme(lxw_styles *self, const char *font_scheme);
STATIC void _write_font(lxw_styles *self, lxw_format *format, uint8_t is_dxf,
uint8_t is_rich_string);
2014-06-08 17:40:59 +01:00
STATIC void _write_fonts(lxw_styles *self);
STATIC void _write_default_fill(lxw_styles *self, const char *pattern);
STATIC void _write_fills(lxw_styles *self);
STATIC void _write_border(lxw_styles *self, lxw_format *format,
uint8_t is_dxf);
2014-06-08 17:40:59 +01:00
STATIC void _write_borders(lxw_styles *self);
2019-12-10 00:10:13 +00:00
STATIC void _write_style_xf(lxw_styles *self, uint8_t has_hyperlink,
uint16_t font_id);
2014-06-08 17:40:59 +01:00
STATIC void _write_cell_style_xfs(lxw_styles *self);
STATIC void _write_xf(lxw_styles *self, lxw_format *format);
STATIC void _write_cell_xfs(lxw_styles *self);
2019-12-10 00:10:13 +00:00
STATIC void _write_cell_style(lxw_styles *self, char *name, uint8_t xf_id,
uint8_t builtin_id);
2014-06-08 17:40:59 +01:00
STATIC void _write_cell_styles(lxw_styles *self);
STATIC void _write_dxfs(lxw_styles *self);
STATIC void _write_table_styles(lxw_styles *self);
#endif /* TESTING */
/* *INDENT-OFF* */
#ifdef __cplusplus
}
#endif
/* *INDENT-ON* */
#endif /* __LXW_STYLES_H__ */