1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-28 01:35:32 +00:00
elinks/src/document/format.h

40 lines
814 B
C
Raw Normal View History

#ifndef EL__DOCUMENT_FORMAT_H
#define EL__DOCUMENT_FORMAT_H
#include "util/color.h"
struct document_options;
struct screen_char;
enum text_style_format {
AT_BOLD = 1,
AT_ITALIC = 2,
AT_UNDERLINE = 4,
AT_FIXED = 8,
AT_GRAPHICS = 16,
AT_PREFORMATTED = 32,
/* AT_NO_ENTITIES means the parser has already expanded
* entities and numeric character references, so the put_chars
* function of the renderer must not do that again. */
AT_NO_ENTITIES = 64,
};
2007-10-12 14:24:41 +00:00
struct text_style_color {
color_T foreground;
color_T background;
2007-10-12 14:24:41 +00:00
};
struct text_style {
enum text_style_format attr;
2007-10-12 14:24:41 +00:00
struct text_style_color color;
};
#define INIT_TEXT_STYLE(attr, fg, bg) { attr, {fg, bg}}
void get_screen_char_template(struct screen_char *template, struct document_options *options, struct text_style style);
#endif