mirror of
https://github.com/rkd77/elinks.git
synced 2024-10-14 05:53:36 -04:00
09cf904814
It partially includes changes made in following commits: document/html: struct text_attrib_style -> struct text_style commite133941206
document: struct format_attr -> struct text_style_format commit070d335796
document: Unify text style -> screen attribute handling commitb66d2bec67
document: Move text_style-related stuff to dedicated format.* commitdb9431465f
19 lines
578 B
C
19 lines
578 B
C
#ifndef EL__DOCUMENT_RENDERER_H
|
|
#define EL__DOCUMENT_RENDERER_H
|
|
|
|
#include "document/document.h"
|
|
|
|
struct conv_table;
|
|
struct document_options;
|
|
struct document_view;
|
|
struct session;
|
|
struct view_state;
|
|
struct screen_char;
|
|
|
|
void render_document(struct view_state *, struct document_view *, struct document_options *);
|
|
void render_document_frames(struct session *ses, int no_cache);
|
|
struct conv_table *get_convert_table(unsigned char *head, int to_cp, int default_cp, int *from_cp, enum cp_status *cp_status, int ignore_server_cp);
|
|
void sort_links(struct document *document);
|
|
|
|
#endif
|