#include "..\TWB\colors.h" #include "..\TWB\anchors.h" #include "..\TWB\parce_tag.h" #include "..\TWB\absolute_url.h" char line[500]; #include "..\TWB\unicode_tags.h" enum { ALIGN_LEFT, ALIGN_CENTER, ALIGN_RIGHT}; struct _style { bool b, u, s, h, pre, blq, li, li_tab, button, image, align; dword bg_color; }; struct TWebBrowser { llist list; _style style; DrawBufer DrawBuf; dword draw_y, stolbec; int zoom; dword o_bufpointer; void SetPageDefaults(); void AddCharToTheLine(); void ParseHtml(); void SetStyle(); void DrawStyle(); void DrawPage(); void DrawScroller(); void NewLine(); bool CheckForLineBreak(); void BufEncode(); } WB1; dword link_color_inactive; dword link_color_active; dword page_bg; bool link, cur_encoding, t_html, t_body; #include "..\TWB\img_cache.h" #include "..\TWB\links.h" dword bufpointer=0; dword bufsize=0; int body_magrin=6; int basic_line_h=22; char header[150]; char oldtag[100]; scroll_bar scroll_wv = { 15,200,398,44,0,2,115,15,0,0xeeeeee,0xBBBbbb,0xeeeeee,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1}; //============================================================================================ void TWebBrowser::DrawStyle() { dword start_x, line_length, stolbec_len; if (!header) { strncpy(#header, #line, sizeof(header)-1); line = 0; return; } if (t_html) && (!t_body) return; if (line) { start_x = stolbec * list.font_w + body_magrin + list.x; stolbec_len = strlen(#line) * zoom; line_length = stolbec_len * list.font_w; if (debug_mode) { DrawBuf.DrawBar(start_x, draw_y, line_length, list.item_h, 0xDDDddd); } if (style.bg_color!=page_bg) { DrawBuf.DrawBar(start_x, draw_y, line_length, list.item_h, style.bg_color); } if (style.image) { DrawBuf.DrawBar(start_x, draw_y, line_length, list.item_h-1, 0xF9DBCB); } if (style.button) { DrawBuf.DrawBar(start_x, draw_y, line_length, list.item_h - calc(zoom*2), 0xCCCccc); DrawBuf.DrawBar(start_x, draw_y + list.item_h - calc(zoom*2), line_length, zoom, 0x999999); } DrawBuf.WriteText(start_x, draw_y, list.font_type, text_colors[text_color_index], #line); if (style.b) DrawBuf.WriteText(start_x+1, draw_y, list.font_type, text_colors[text_color_index], #line); if (style.s) DrawBuf.DrawBar(start_x, list.item_h / 2 - zoom + draw_y, line_length, zoom, text_colors[text_color_index]); if (style.u) DrawBuf.DrawBar(start_x, list.item_h - zoom - zoom + draw_y, line_length, zoom, text_colors[text_color_index]); if (link) { if (line[0]==' ') && (line[1]==NULL) {} else { DrawBuf.DrawBar(start_x, draw_y + list.item_h - calc(zoom*2), line_length, zoom, link_color_inactive); PageLinks.AddText(start_x, draw_y + list.y, line_length, list.item_h - calc(zoom*2), UNDERLINE, zoom); } } stolbec += stolbec_len; if (debug_mode) debug(#line); line = NULL; } } //============================================================================================ void TWebBrowser::SetPageDefaults() { style.b = style.u = style.s = style.h = style.blq = t_html = t_body = style.pre = style.li = link = text_color_index = text_colors[0] = style.li_tab = false; style.align = ALIGN_LEFT; link_color_inactive = 0x0000FF; link_color_active = 0xFF0000; page_bg = 0xFFFFFF; style.bg_color = page_bg; DrawBuf.Fill(0, page_bg); PageLinks.Clear(); anchors.clear(); strncpy(#header, #version, sizeof(header)-1); cur_encoding = CH_NULL; draw_y = body_magrin; stolbec = 0; line = 0; zoom = 1; if (o_bufpointer) free(o_bufpointer); o_bufpointer = 0; } //============================================================================================ void TWebBrowser::AddCharToTheLine(unsigned char _char) { dword line_len; if (_char<=15) _char=' '; line_len = strlen(#line); if (!style.pre) && (_char == ' ') { if (line[line_len-1]==' ') return; //no double spaces if (!stolbec) && (!line) return; //no paces at the beginning of the line } if (line_len < sizeof(line)) chrcat(#line, _char); CheckForLineBreak(); } //============================================================================================ void TWebBrowser::ParseHtml(){ word bukva[2]; char unicode_symbol[10]; dword unicode_symbol_result; dword j; bool ignor_param=false; int tab_len; dword bufpos; SetPageDefaults(); if (strstri(bufpointer, "
';') && (j<8); j++) { bukva = ESBYTE[bufpos+j]; chrcat(#unicode_symbol, bukva); } if (bukva = GetUnicodeSymbol(#unicode_symbol)) { bufpos += j; CheckForLineBreak(); } else { AddCharToTheLine('&'); } break; case '<': bufpos++; if (!strncmp(bufpos,"!--",3)) { bufpos+=3; while (strncmp(bufpos,"-->",3)!=0) && (bufpos < bufpointer + bufsize) { bufpos++; } bufpos+=2; break; } tag.reset(); if (ESBYTE[bufpos] == '/') { tag.opened = false; bufpos++; } ignor_param=false; while (ESBYTE[bufpos] !='>') && (bufpos < bufpointer + bufsize) //ïîëó÷àåì òåã è åãî ïàðàìåòðû { bukva = ESBYTE[bufpos]; if (bukva == '\9') || (bukva == '\x0a') || (bukva == '\x0d') bukva = ' '; if (!ignor_param) && (bukva <>' ') { if (strlen(#tag.name)+1