1
0
Fork 0
libfort/src/options.h

150 lines
4.4 KiB
C
Raw Normal View History

2018-01-17 19:22:57 +01:00
#ifndef OPTIONS_H
#define OPTIONS_H
2018-05-06 15:36:53 +02:00
#include "fort_utils.h"
2018-02-25 09:39:41 +01:00
#include <stdint.h>
#include <limits.h>
2018-01-17 19:22:57 +01:00
2018-05-06 16:04:34 +02:00
struct fort_column_options {
2018-01-17 19:22:57 +01:00
int col_min_width;
2018-04-01 12:27:02 +02:00
enum ft_text_alignment align;
2018-01-17 19:22:57 +01:00
};
extern fort_column_options_t g_column_options;
fort_column_options_t create_column_options(void);
2018-01-17 19:22:57 +01:00
2018-02-25 17:25:00 +01:00
#define OPTION_IS_SET(ft_opts, option) ((ft_opts) & (option))
#define OPTION_SET(ft_opts, option) ((ft_opts) |=(option))
#define OPTION_UNSET(ft_opts, option) ((ft_opts) &= ~((uint32_t)option))
2018-01-17 19:22:57 +01:00
2018-05-06 16:04:34 +02:00
struct fort_cell_options {
2018-04-17 19:14:50 +02:00
size_t cell_row;
size_t cell_col;
2018-02-25 09:39:41 +01:00
uint32_t options;
2018-04-16 21:33:05 +02:00
unsigned int col_min_width;
2018-04-01 12:27:02 +02:00
enum ft_text_alignment align;
2018-04-16 21:33:05 +02:00
unsigned int cell_padding_top;
unsigned int cell_padding_bottom;
unsigned int cell_padding_left;
unsigned int cell_padding_right;
unsigned int cell_empty_string_height;
2018-04-01 12:27:02 +02:00
enum ft_row_type row_type;
2018-02-25 09:39:41 +01:00
};
typedef struct fort_cell_options fort_cell_options_t;
typedef vector_t fort_cell_opt_container_t;
fort_cell_opt_container_t *create_cell_opt_container(void);
2018-02-25 09:39:41 +01:00
void destroy_cell_opt_container(fort_cell_opt_container_t *cont);
2018-05-06 16:04:34 +02:00
const fort_cell_options_t *cget_cell_opt(const fort_cell_opt_container_t *cont, size_t row, size_t col);
fort_cell_options_t *get_cell_opt_and_create_if_not_exists(fort_cell_opt_container_t *cont, size_t row, size_t col);
2018-04-17 19:14:50 +02:00
fort_status_t set_cell_option(fort_cell_opt_container_t *cont, size_t row, size_t col, uint32_t option, int value);
2018-02-25 09:39:41 +01:00
fort_status_t unset_cell_option(fort_cell_opt_container_t *cont, unsigned row, unsigned col, uint32_t option);
2018-01-17 19:22:57 +01:00
int get_cell_opt_value_hierarcial(const fort_table_options_t *options, size_t row, size_t column, uint32_t option);
2018-02-27 18:41:57 +01:00
fort_status_t set_default_cell_option(uint32_t option, int value);
2018-01-17 19:22:57 +01:00
/*****************************************************************************
* TABLE BORDER
*****************************************************************************/
/*
* TL TT TT TT TV TT TT TT TV TB TB TB TR <----- TopSeparator
* LL IV IV RR
* LH IH IH IH II IH IH IH II IH IH IH RH <----- InsideSeparator
* LL IV IV RR
* BL BB BB BB BV BB BB BB BV BB BB BB BR <----- BottomSeparator
*/
2018-05-06 16:04:34 +02:00
enum HorSeparatorPos {
2018-01-17 19:22:57 +01:00
TopSeparator,
InsideSeparator,
BottomSeparator
};
2018-05-06 16:04:34 +02:00
enum BorderItemPos {
2018-01-17 19:22:57 +01:00
TL_bip = 0,
TT_bip = 1,
TV_bip = 2,
TR_bip = 3,
LL_bip = 4,
IV_bip = 5,
RR_bip = 6,
LH_bip = 7,
IH_bip = 8,
II_bip = 9,
RH_bip = 10,
BL_bip = 11,
BB_bip = 12,
BV_bip = 13,
BR_bip = 14,
BorderItemPosSize
};
2018-05-06 16:04:34 +02:00
enum SeparatorItemPos {
2018-02-04 14:21:04 +01:00
LH_sip = 0,
IH_sip = 1,
II_sip = 2,
RH_sip = 3,
SepratorItemPosSize
};
2018-01-17 19:22:57 +01:00
2018-05-06 16:04:34 +02:00
struct fort_border_style {
2018-05-02 20:16:41 +02:00
const char *border_chars[BorderItemPosSize];
const char *header_border_chars[BorderItemPosSize];
const char *separator_chars[SepratorItemPosSize];
2018-03-12 20:28:55 +01:00
};
2018-03-12 21:02:59 +01:00
extern struct fort_border_style FORT_BASIC_STYLE;
2018-05-07 22:25:45 +02:00
extern struct fort_border_style FORT_BASIC2_STYLE;
2018-03-12 21:02:59 +01:00
extern struct fort_border_style FORT_SIMPLE_STYLE;
2018-03-14 19:30:27 +01:00
extern struct fort_border_style FORT_PLAIN_STYLE;
2018-03-12 21:02:59 +01:00
extern struct fort_border_style FORT_DOT_STYLE;
2018-03-14 19:30:27 +01:00
extern struct fort_border_style FORT_EMPTY_STYLE;
2018-05-02 20:16:41 +02:00
extern struct fort_border_style FORT_SOLID_STYLE;
2018-05-04 20:25:29 +02:00
extern struct fort_border_style FORT_SOLID_ROUND_STYLE;
2018-05-02 20:16:41 +02:00
extern struct fort_border_style FORT_DOUBLE_STYLE;
2018-05-04 20:25:29 +02:00
extern struct fort_border_style FORT_DOUBLE2_STYLE;
extern struct fort_border_style FORT_BOLD_STYLE;
extern struct fort_border_style FORT_BOLD2_STYLE;
extern struct fort_border_style FORT_FRAME_STYLE;
2018-03-14 19:30:27 +01:00
2018-03-12 21:02:59 +01:00
2018-05-06 16:04:34 +02:00
struct fort_entire_table_options {
2018-04-16 21:33:05 +02:00
unsigned int left_margin;
unsigned int top_margin;
unsigned int right_margin;
unsigned int bottom_margin;
2018-03-25 10:11:08 +02:00
};
2018-03-25 10:38:59 +02:00
typedef struct fort_entire_table_options fort_entire_table_options_t;
2018-03-25 10:11:08 +02:00
extern fort_entire_table_options_t g_entire_table_options;
fort_status_t set_entire_table_option(fort_table_options_t *table_options, uint32_t option, int value);
fort_status_t set_default_entire_table_option(uint32_t option, int value);
2018-03-12 20:28:55 +01:00
2018-05-06 16:04:34 +02:00
struct fort_table_options {
2018-03-12 21:02:59 +01:00
struct fort_border_style border_style;
2018-05-06 16:04:34 +02:00
fort_cell_opt_container_t *cell_options;
2018-03-25 10:11:08 +02:00
fort_entire_table_options_t entire_table_options;
2018-01-17 19:22:57 +01:00
};
extern fort_table_options_t g_table_options;
2018-05-06 16:04:34 +02:00
size_t max_border_elem_strlen(struct fort_table_options *);
2018-01-17 19:22:57 +01:00
2018-05-06 16:04:34 +02:00
fort_table_options_t *create_table_options(void);
fort_table_options_t *copy_table_options(const fort_table_options_t *option);
void destroy_table_options(fort_table_options_t *options);
2018-03-05 19:18:26 +01:00
2018-01-17 19:22:57 +01:00
2018-03-09 10:44:16 +01:00
#endif /* OPTIONS_H */