2007-08-28 15:05:00 -04:00
|
|
|
/** Format attributes utilities
|
|
|
|
* @file */
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "elinks.h"
|
|
|
|
|
|
|
|
#include "document/format.h"
|
|
|
|
#include "document/options.h"
|
|
|
|
#include "terminal/draw.h"
|
|
|
|
#include "util/color.h"
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
get_screen_char_template(struct screen_char *template,
|
|
|
|
struct document_options *options,
|
|
|
|
struct text_style style)
|
|
|
|
{
|
|
|
|
template->attr = 0;
|
|
|
|
template->data = ' ';
|
|
|
|
|
|
|
|
if (style.attr) {
|
|
|
|
if (style.attr & AT_UNDERLINE) {
|
|
|
|
template->attr |= SCREEN_ATTR_UNDERLINE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (style.attr & AT_BOLD) {
|
|
|
|
template->attr |= SCREEN_ATTR_BOLD;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (style.attr & AT_ITALIC) {
|
|
|
|
template->attr |= SCREEN_ATTR_ITALIC;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (style.attr & AT_GRAPHICS) {
|
|
|
|
template->attr |= SCREEN_ATTR_FRAME;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2007-10-12 10:41:06 -04:00
|
|
|
struct color_pair colors = INIT_COLOR_PAIR(style.color.background, style.color.foreground);
|
2007-08-28 15:05:00 -04:00
|
|
|
set_term_color(template, &colors, options->color_flags, options->color_mode);
|
|
|
|
}
|
|
|
|
}
|