#include "TWB\colors.h" #include "TWB\anchors.h" #include "TWB\parse_tag.h" #include "TWB\special.h" #include "TWB\tag_list.h" #define DEFAULT_BG_COL 0xffEBE8E9; dword link_color_default; dword link_color_active; #include "TWB\links.h" #define BODY_MARGIN 6 #define BASIC_CHAR_W 8 #define BASIC_LINE_H 18 struct STYLE { bool b, u, s, h, font, pre, blq, button, image; LIST tag_list; dword title; dword cur_line_h; void reset(); }; void STYLE::reset() { b = u = s = h = blq = pre = title = false; font = false; cur_line_h = NULL; tag_list.reset(); } struct TWebBrowser { llist list; STYLE style; dword draw_y, draw_x, draw_w, left_gap; dword o_bufpointer; int cur_encoding, custom_encoding; bool link, t_html, t_body; dword bufpointer; dword bufsize; dword is_html; collection img_url; char header[150]; char linebuf[500]; char redirect[URL_SIZE]; void SetStyle(); void RenderTextbuf(); void RenderLine(); bool RenderImage(); void SetPageDefaults(); void ParseHtml(); void Reparse(); void NewLine(); void ChangeEncoding(); void AddCharToTheLine(); void DrawPage(); void tag_a(); void tag_p(); void tag_img(); void tag_div(); void tag_h1234_caption(); void tag_ol_ul_dt(); void tag_li(); void tag_q(); void tag_hr(); void tag_code(); void tag_meta_xml(); void tag_body(); void tag_iframe(); void tag_title(); void tag_font(); void tag_table_reset(); void tag_table(); void tag_td(); void tag_tr(); }; #include "TWB\render.h" #include "TWB\set_style.h" //============================================================================================ void TWebBrowser::SetPageDefaults() { t_html = t_body = link = false; style.reset(); link_color_default = 0x0000FF; link_color_active = 0xFF0000; style.cur_line_h = list.item_h; links.clear(); anchors.clear(); img_url.drop(); text_colors.drop(); text_colors.add(0); bg_colors.drop(); bg_colors.add(DEFAULT_BG_COL); canvas.Fill(0, DEFAULT_BG_COL); header = NULL; draw_y = BODY_MARGIN; draw_x = left_gap = BODY_MARGIN; draw_w = list.w - BODY_MARGIN; linebuf = 0; redirect = '\0'; list.SetFont(8, 14, 10011000b); tag_table_reset(); } //============================================================================================ void TWebBrowser::Reparse() { ParseHtml(bufpointer, bufsize); } //============================================================================================ void TWebBrowser::ParseHtml(dword _bufpointer, _bufsize){ int tab_len; dword bufpos; bufsize = _bufsize; if (list.w!=canvas.bufw) canvas.Init(list.x, list.y, list.w, 400*20); if (bufpointer == _bufpointer) { custom_encoding = cur_encoding; } else { bufpointer = malloc(bufsize); memmov(bufpointer, _bufpointer, bufsize); //hold original buffer o_bufpointer = malloc(bufsize); memmov(o_bufpointer, bufpointer, bufsize); cur_encoding = CH_CP866; if (custom_encoding != -1) { cur_encoding = custom_encoding; bufpointer = ChangeCharset(cur_encoding, "CP866", bufpointer); bufsize = strlen(bufpointer); } } SetPageDefaults(); is_html = true; if (!strstri(bufpointer, "