Subversion Repositories Kolibri OS

Rev

Rev 4666 | Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. #include "..\TWB\links.h"
  2.  
  3. dword bufpointer;
  4. dword o_bufpointer;
  5. dword bufsize;
  6.  
  7. #define URL param
  8.  
  9. scroll_bar scroll_wv = { 17,200,398, 44,17,0,115,15,0,0xeeeeee,0xD2CED0,0x555555,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1};
  10.  
  11. char header[2048];
  12.  
  13. struct TWebBrowser {
  14.         llist list;
  15.         DrawBufer DrawBuf;
  16.         void GetNewUrl();
  17.         void Prepare();
  18.         void Parse();
  19.         void SetTextStyle();
  20.         void DrawPage();
  21.         void DrawScroller();
  22.         void NewLine();
  23. };
  24.  
  25. TWebBrowser WB1;
  26.  
  27. byte b_text, i_text, u_text, s_text, pre_text, blq_text, li_text, li_tab,
  28.         link, ignor_text, cur_encoding, text_align, t_html, t_body;
  29. byte condition_text_active, condition_text_val, condition_href, condition_max;
  30.  
  31. enum { _WIN, _DOS, _KOI, _UTF, _DEFAULT };
  32.  
  33. enum { ALIGN_LEFT, ALIGN_CENTER, ALIGN_RIGHT};
  34.  
  35. dword text_colors[300];
  36. dword text_color_index;
  37. dword link_color_inactive;
  38. dword link_color_active;
  39. dword bg_color;
  40.  
  41. int stroka;
  42. int stolbec;
  43. int tab_len;
  44. int anchor_line_num;
  45.  
  46. char line[500];
  47. char tag[100];
  48. char tagparam[10000];
  49. char parametr[1200];
  50. char options[4096];
  51. char anchor[256];
  52.  
  53. #include "..\TWB\history.h"
  54. #include "..\TWB\colors.h"
  55. #include "..\TWB\unicode_tags.h"
  56. #include "..\TWB\img_cache.h"
  57. #include "..\TWB\parce_tag.h"
  58. #include "..\TWB\table.h"
  59.  
  60.  
  61.  
  62. //=======================================================================
  63.  
  64.  
  65. void TWebBrowser::DrawPage()
  66. {
  67.         int start_x, start_y, line_length, magrin_left=5;
  68.        
  69.         if (!header)
  70.         {
  71.                 strcpy(#header, #line);
  72.                 strcat(#header, " -");
  73.                 strcat(#header, #version);
  74.                 line = 0;
  75.                 return;
  76.         }
  77.         if (t_html) && (!t_body) return;
  78.        
  79.         if (stroka >= 0) && (stroka - 2 < list.visible) && (line) && (!anchor)
  80.         {
  81.                 start_x = stolbec * 6 + list.x + magrin_left;
  82.                 start_y = stroka * 10 + list.y + magrin_left;
  83.                 line_length = strlen(#line) * 6;
  84.  
  85.                 WriteBufText(start_x, 0, 0x88, text_colors[text_color_index], #line, buf_data);
  86.                 IF (b_text)     WriteBufText(start_x+1, 0, 0x88, text_colors[text_color_index], #line, buf_data);
  87.                 IF (i_text) { stolbec++; DrawBuf.Skew(start_x, 0, line_length, list.line_h); }
  88.                 IF (s_text) DrawBuf.DrawBar(start_x, 4, line_length, 1, text_colors[text_color_index]);
  89.                 IF (u_text) DrawBuf.DrawBar(start_x, 8, line_length, 1, text_colors[text_color_index]);
  90.                 IF (link) {
  91.                         UnsafeDefineButton(start_x-2, start_y, line_length + 3, 9, PageLinks.count + 400 + BT_HIDE, 0xB5BFC9);
  92.                         DrawBuf.DrawBar(start_x, 8, line_length, 1, text_colors[text_color_index]);
  93.                         PageLinks.AddText(#line, line_length, list.line_h, UNDERLINE);
  94.                 }
  95.                 stolbec += strlen(#line);
  96.         }
  97. }
  98. //=======================================================================
  99.  
  100.  
  101.  
  102. char *ABSOLUTE_LINKS[]={ "http:", "mailto:", "ftp:", "/sys/", "/kolibrios/", "/rd/", "/bd", "/hd", "/cd", "/tmp", "/usbhd", 0};
  103. void TWebBrowser::GetNewUrl(){
  104.         int i, len;
  105.         char newurl[4096];
  106.        
  107.         for (i=0; ABSOLUTE_LINKS[i]; i++)
  108.         {
  109.                 len=strlen(ABSOLUTE_LINKS[i]);
  110.                 if (!strcmpn(#URL, ABSOLUTE_LINKS[i], len)) return;
  111.         }
  112.                
  113.         IF (!strcmpn(#URL,"./", 2)) strcpy(#URL, #URL+2);
  114.         strcpy(#newurl, BrowserHistory.CurrentUrl());
  115.  
  116.         if (URL[0] == '/')
  117.         {
  118.                 i = strchr(#newurl+8, '/');
  119.                 if (i>0) newurl[i+7]=0;
  120.                 strcpy(#URL, #URL+1);
  121.         }
  122.                
  123.         _CUT_ST_LEVEL_MARK:
  124.                
  125.                 if (newurl[strrchr(#newurl, '/')-2]<>'/')
  126.                 {
  127.                         newurl[strrchr(#newurl, '/')] = 0x00;
  128.                 }
  129.                
  130.                 IF (!strncmp(#URL,"../",3))
  131.                 {
  132.                         strcpy(#URL,#URL+3);
  133.                         newurl[strrchr(#newurl, '/')-1] = 0x00;
  134.                         goto _CUT_ST_LEVEL_MARK;
  135.                 }
  136.                
  137.                 if (newurl[strlen(#newurl)-1]<>'/') strcat(#newurl, "/");
  138.                
  139.                 strcat(#newurl, #URL);
  140.                 strcpy(#URL, #newurl);
  141. }
  142.  
  143. void BufEncode(int set_new_encoding)
  144. {
  145.         int bufpointer_realsize;
  146.         cur_encoding = set_new_encoding;
  147.         if (o_bufpointer==0)
  148.         {
  149.                 bufpointer_realsize = strlen(bufpointer);
  150.                 if (bufpointer_realsize > bufsize)
  151.                 {
  152.                         debug("bufsize: ");
  153.                         debugi(bufsize);
  154.                         debug("bufpointer_realsize: ");
  155.                         debugi(bufpointer_realsize);
  156.                         bufsize = bufpointer_realsize;
  157.                 }
  158.                 o_bufpointer = malloc(bufsize);
  159.                 strcpy(o_bufpointer, bufpointer);
  160.         }
  161.         else
  162.         {
  163.                 strcpy(bufpointer, o_bufpointer);
  164.         }
  165.         if (set_new_encoding==_WIN) wintodos(bufpointer);
  166.         if (set_new_encoding==_UTF) utf8rutodos(bufpointer);
  167.         if (set_new_encoding==_KOI) koitodos(bufpointer);
  168. }
  169.  
  170. void TWebBrowser::Prepare(dword bufpos, in_filesize){
  171.         bufsize = in_filesize;
  172.         bufpointer = bufpos;
  173.         Parse();
  174. }
  175.  
  176.  
  177. void TWebBrowser::Parse(){
  178.         word bukva[2];
  179.         int j, perenos_num;
  180.         byte ignor_param;
  181.         char temp[768];
  182.         dword bufpos = bufpointer;
  183.        
  184.         b_text = i_text = u_text = s_text = blq_text = t_html = t_body =
  185.         li_text = link = ignor_text = text_color_index = text_colors[0] = li_tab =
  186.         condition_text_val = condition_text_active = 0; //îáíóëÿåì òåãè
  187.         condition_max = 255;
  188.         text_align = ALIGN_LEFT;
  189.         link_color_inactive = 0x0000FF;
  190.         link_color_active = 0xFF0000;
  191.         bg_color = 0xFFFFFF;
  192.         DrawBuf.Fill(bg_color);
  193.         PageLinks.Clear();
  194.         strcpy(#header, #version);
  195.         stroka = -list.first;
  196.         stolbec = 0;
  197.         line = 0;
  198.  
  199.         if (pre_text<>2)
  200.         {
  201.                 pre_text=0;
  202.                 if (!strcmp(#URL + strlen(#URL) - 4, ".txt")) pre_text = 1;
  203.                 if (!strcmp(#URL + strlen(#URL) - 4, ".mht")) ignor_text = 1;
  204.         }
  205.        
  206.         for ( ; bufpointer+bufsize > bufpos; bufpos++;)
  207.         {
  208.                 bukva = ESBYTE[bufpos];
  209.                 if (ignor_text) && (bukva!='<') continue;
  210.                 if (condition_text_active) && (condition_text_val != condition_href) && (bukva!='<') continue;
  211.                 switch (bukva)
  212.                 {
  213.                 case 0x0a:
  214.                         if (pre_text)
  215.                         {
  216.                                 bukva = temp = NULL;
  217.                                 goto NEXT_MARK;
  218.                         }
  219.                 case '\9':
  220.                         if (pre_text) //èíà÷å èä¸ì íà 0x0d     
  221.                         {
  222.                                 tab_len=strlen(#line)/8;
  223.                                 tab_len=tab_len*8;
  224.                                 tab_len=8+tab_len-strlen(#line);
  225.                                 for (j=0; j<tab_len; j++;) chrcat(#line,' ');
  226.                                 break;
  227.                         }
  228.                         goto DEFAULT_MARK;             
  229.                 case '=': //quoted printable
  230.                         if (strcmp(#URL + strlen(#URL) - 4, ".mht")<>0) goto DEFAULT_MARK;
  231.  
  232.                         temp[0] = ESBYTE[bufpos+1];
  233.                         temp[1] = ESBYTE[bufpos+2];
  234.                         temp[2] = '\0';
  235.                         if (bukva = Hex2Symb(#temp))
  236.                         {
  237.                                 bufpos+=2;
  238.                                 goto DEFAULT_MARK;
  239.                         }
  240.                         break;
  241.                        
  242.                 case '&': //&nbsp; and so on
  243.                         bufpos++;
  244.                         tag=0;
  245.                         for (j=0; (ESBYTE[bufpos]<>';') && (j<7);   j++, bufpos++;)
  246.                         {
  247.                                 bukva = ESBYTE[bufpos];
  248.                                 chrcat(#tag, bukva);
  249.                         }
  250.                         if (bukva = GetUnicodeSymbol()) goto DEFAULT_MARK;
  251.                         break;
  252.                 case '<':
  253.                         bufpos++; //ïðîìîòàåì ñèìâîë <
  254.                         tag = parametr = tagparam = ignor_param = NULL;
  255.                         if (ESBYTE[bufpos] == '!') //ôèëüòðàöèÿ âíóòðè <!-- -->, äåðçêî
  256.                         {
  257.                                 bufpos++;
  258.                                 if (ESBYTE[bufpos] == '-')
  259.                                 {
  260.                                 HH_:
  261.                                         do
  262.                                         {
  263.                                                 bufpos++;
  264.                                                 if (bufpointer + bufsize <= bufpos) break 2;
  265.                                         }
  266.                                         while (ESBYTE[bufpos] <>'-');
  267.                                        
  268.                                         bufpos++;
  269.                                         if (ESBYTE[bufpos] <>'-') goto HH_;
  270.                                 }
  271.                         }
  272.                         while (ESBYTE[bufpos] !='>') && (bufpos < bufpointer + bufsize) //ïîëó÷àåì òåã è åãî ïàðàìåòðû
  273.                         {
  274.                                 bukva = ESBYTE[bufpos];
  275.                                 if (bukva == '\9') || (bukva == '\x0a') || (bukva == '\x0d') bukva = ' ';
  276.                                 if (!ignor_param) && (bukva <>' ')
  277.                                 {
  278.                                         if (strlen(#tag)<sizeof(tag)) strcat(#tag, #bukva);
  279.                                 }
  280.                                 else
  281.                                 {
  282.                                         ignor_param = true;
  283.                                         if (!ignor_text) && (strlen(#tagparam)+1<sizeof(tagparam)) strcat(#tagparam, #bukva);
  284.                                 }
  285.                                 bufpos++;
  286.                         }
  287.                         strlwr(#tag);
  288.  
  289.                         if (condition_text_active) && (condition_text_val != condition_href)
  290.                         {
  291.                                 if (strcmp(#tag, "/condition")!=0) break;
  292.                         }
  293.                         if (tag[strlen(#tag)-1]=='/') tag[strlen(#tag)-1]=NULL; //for br/
  294.                         if (tagparam) && (strlen(#tagparam) < 4000) GetNextParam();
  295.  
  296.                         if (stolbec + strlen(#line) > list.column_max) //============the same as NEXT_MARK
  297.                         {
  298.                                 perenos_num = strrchr(#line, ' ');
  299.                                 if (!perenos_num) && (strlen(#line)>list.column_max) perenos_num=list.column_max;
  300.                                 strcpy(#temp, #line + perenos_num); //ïåðåíîñ ïî ñëîâàì
  301.                                 line[perenos_num] = 0x00;
  302.                                 if (stroka-1 > list.visible) && (list.first <>0) break 1; //óõîäèì...
  303.                                 DrawPage();
  304.                                 strcpy(#line, #temp);                          
  305.                                 NewLine(list.x + 5, stroka * 10 + list.y + 5); //çàêðàøèâàåì ñëåäóùóþ ñòðîêó
  306.                         }
  307.                         DrawPage();
  308.                         line=NULL;     
  309.                         if (tag) SetTextStyle(list.x + 5, stroka * 10 + list.y + 5); //îáðàáîòêà òåãîâ
  310.                         tag = parametr = tagparam = ignor_param = NULL;
  311.                         break;
  312.                 default:
  313.                         DEFAULT_MARK:
  314.                         if (bukva<=15) bukva=' ';
  315.                         if (!pre_text) && (bukva == ' ')
  316.                         {
  317.                                 if (line[strlen(#line)-1]==' ') break; //óáðàòü 2 ïðîáåëà ïîäðÿä
  318.                                 if (!stolbec) && (!line) break; //ñòðîêà íå ìîæåò íà÷èíàòüñÿ ñ ïðîáåëà
  319.                         }
  320.                         if (strlen(#line)<sizeof(line)) chrcat(#line, bukva);
  321.  
  322.                         if (stolbec + strlen(#line) > list.column_max)
  323.                         {
  324.                         NEXT_MARK:
  325.                                 perenos_num = strrchr(#line, ' ');
  326.                                 if (!perenos_num) && (strlen(#line)>list.column_max) perenos_num=list.column_max;
  327.                                 strcpy(#temp, #line + perenos_num); //ïåðåíîñ ïî ñëîâàì
  328.                                 line[perenos_num] = 0x00;
  329.                                 if (stroka-1 > list.visible) && (list.first <>0) break 1; //óõîäèì...
  330.                                 DrawPage();
  331.                                 strcpy(#line, #temp);                  
  332.                                 NewLine(list.x + 5, stroka * 10 + list.y + 5); //çàêðàøèâàåì ñëåäóùóþ ñòðîêó
  333.                         }
  334.                 }
  335.         }
  336.  
  337.         DrawPage(); //ðèñóåò ïîñëåäíþþ ñòðîêó, ïîòîì ýòî íàäî óáðàòü, îïòèìèçèðîâàâ êîä
  338.         NewLine(list.x + 5, stroka * 10 + list.y + 5); //çàêðàøèâàåì ñëåäóùóþ ñòðîêó
  339.  
  340.         if (list.visible * 10 + 25 <= list.h)
  341.                 DrawBar(list.x, list.visible * 10 + list.y + 25, list.w, -list.visible * 10 + list.h - 25, bg_color);
  342.         if (stroka * 10 + 5 <= list.h)
  343.                 DrawBar(list.x, stroka * 10 + list.y + 5, list.w, -stroka * 10 + list.h - 5, bg_color); //çàêðàøèâàåì âñ¸ äî êîíöà
  344.         if (list.first == 0) list.count = stroka;
  345.         if (anchor) //åñëè ïîñðåäè òåêñòà ïîÿâèòñÿ íîâûé ÿêîðü - áóäåò áåñêîíå÷íûé öèêë
  346.         {
  347.                 anchor=NULL;
  348.                 list.first=anchor_line_num;
  349.                 Parse();
  350.         }
  351.         DrawScroller();
  352. }
  353.  
  354.  
  355.  
  356. char oldtag[100];
  357. void TWebBrowser::SetTextStyle(int left1, top1) {
  358.         dword hr_color;
  359.         byte opened;
  360.         byte meta_encoding;
  361.         //ïðîâåðÿåì òåã îòêðûâàåòñÿ èëè çàêðûâàåòñÿ
  362.         if (tag[0] == '/')
  363.         {
  364.                  opened = 0;
  365.                  strcpy(#tag, #tag+1);
  366.         }
  367.         else opened = 1;
  368.                
  369.         if (isTag("html"))
  370.         {
  371.                 IF(!strcmp(#URL + strlen(#URL) - 4, ".mht")) IF (opened==0) ignor_text = 1; ELSE ignor_text = 0;
  372.                 t_html = opened;
  373.                 return;
  374.         }
  375.  
  376.         if (isTag("script")) || (isTag("style")) || (isTag("binary")) ignor_text = opened;
  377.  
  378.         if(isTag("title"))
  379.         {
  380.                 if (opened) header=NULL;
  381.                 else if (!stroka) DrawTitle(#header); //òåã çàêðûëñÿ - âûâåëè ñòðîêó
  382.                 return;
  383.         }
  384.  
  385.         if (ignor_text) return;
  386.        
  387.         IF(isTag("q"))
  388.         {
  389.                 if (opened)
  390.                 {
  391.                         NewLine(left1, top1);
  392.                         strcat(#line, ' \"');
  393.                 }
  394.                 if (!opened)
  395.                 {
  396.                         chrcat(#line, '\"');
  397.                         NewLine(left1, top1);
  398.                 }
  399.         }
  400.  
  401.         if (anchor) && (!strcmp(#parametr, "id=")) //î÷åíü ïëîõî!!! ïîòîìó ÷òî åñëè íå ïîñëåäíèé òåã, ðàáîòàòü íå áóäåò
  402.         {
  403.                 if (!strcmp(#anchor, #options)) anchor_line_num=list.first+stroka;
  404.         }
  405.        
  406.         if (isTag("body"))
  407.         {
  408.                 t_body = opened;
  409.                 do{
  410.                         if (!strcmp(#parametr, "condition_max=")) condition_max = atoi(#options);
  411.                         if (!strcmp(#parametr, "link=")) link_color_inactive = GetColor(#options);
  412.                         if (!strcmp(#parametr, "alink=")) link_color_active = GetColor(#options);
  413.                         if (!strcmp(#parametr, "text=")) text_colors[0]=GetColor(#options);
  414.                         if (!strcmp(#parametr, "bgcolor="))
  415.                         {
  416.                                 bg_color=GetColor(#options);
  417.                                 DrawBuf.Fill(bg_color);
  418.                         }
  419.                 } while(GetNextParam());
  420.                 if (opened) && (cur_encoding==_DEFAULT)
  421.                 {
  422.                         debugln("Document has no information about encoding, UTF will be used");
  423.                         BufEncode(_UTF);
  424.                 }
  425.                 return;
  426.         }
  427.  
  428.         if (isTag("a"))
  429.         {
  430.                 if (opened)
  431.                 {
  432.                         if (link) IF(text_color_index > 0) text_color_index--; //åñëè ïðåäûäóùèé òåã à íå áûë çàêðûò
  433.  
  434.                         do{
  435.                                 if (!strcmp(#parametr, "href="))
  436.                                 {
  437.                                         if (stroka - 1 > list.visible) || (stroka < -2) return;
  438.                                        
  439.                                         text_color_index++;
  440.                                         text_colors[text_color_index] = text_colors[text_color_index-1];
  441.                                        
  442.                                         link = 1;
  443.                                         text_colors[text_color_index] = link_color_inactive;
  444.                                         PageLinks.AddLink(#options, stolbec*6+left1, top1);
  445.                                 }
  446.                                 if (anchor) && (!strcmp(#parametr, "name="))
  447.                                 {
  448.                                         if (!strcmp(#anchor, #options))
  449.                                         {
  450.                                                 anchor_line_num=list.first+stroka;
  451.                                         }
  452.                                 }
  453.                         } while(GetNextParam());
  454.                 }
  455.                 else {
  456.                         link = 0;
  457.                         IF(text_color_index > 0) text_color_index--;
  458.                 }
  459.                 return;
  460.         }
  461.  
  462.         if (isTag("font"))
  463.         {
  464.                 if (opened)
  465.                 {
  466.                         text_color_index++;
  467.                         text_colors[text_color_index] = text_colors[text_color_index-1];
  468.                
  469.                         do{
  470.                                 if (strcmp(#parametr, "color=") == 0) //&& (parametr[1] == '#')
  471.                                 {
  472.                                         text_colors[text_color_index] = GetColor(#options);
  473.                                 }
  474.                         } while(GetNextParam());
  475.                 }
  476.                 else
  477.                         if (text_color_index > 0) text_color_index--;
  478.                 return;
  479.         }
  480.         if (isTag("br")) {
  481.                 NewLine(left1, top1);
  482.                 return;
  483.         }
  484.         if (isTag("div")) || (isTag("header")) || (isTag("footer")) {
  485.                 IF(oldtag[0] <>'h') NewLine(left1, top1);
  486.                 return;
  487.         }
  488.         if (isTag("p")) {
  489.                 IF(oldtag[0] == 'h') return;
  490.                 NewLine(left1, top1);
  491.                 IF(opened) NewLine(left1, top1 + 10);
  492.                 return;
  493.         }
  494.  
  495.         if(isTag("table")) {
  496.                 table.active = opened;
  497.                 NewLine(left1, top1);
  498.                 if (opened)     table.NewTable();
  499.         }
  500.  
  501.         if(isTag("td")) {
  502.                 if (opened)
  503.                 {
  504.                         table.cur_col++;
  505.                         table.row_h = 0;
  506.                         do {
  507.                                 if (!strcmp(#parametr, "width="))
  508.                                 {
  509.                                         table.col_w[table.cur_col] = atoi(#options);
  510.                                         // NewLine(left1, top1);
  511.                                         // strcpy(#line, #options);
  512.                                         // NewLine(left1, top1);
  513.                                 }
  514.                         } while(GetNextParam());
  515.                 }
  516.                 else
  517.                 {
  518.                         if (table.row_h > table.row_max_h) table.row_max_h = table.row_h;
  519.                 }
  520.         }
  521.  
  522.         if(isTag("tr")) {
  523.                 if (opened)
  524.                 {
  525.                         table.cur_col = 0;
  526.                         table.row_max_h = 0;
  527.                         table.row_start = stroka;
  528.                 }
  529.                 else
  530.                 {
  531.                         NewLine(left1, top1);
  532.                         if (table.cur_row == 0) table.max_cols = table.cur_col;
  533.                         table.cur_row++;
  534.                         table.max_cols = table.cur_col;
  535.                 }
  536.         }
  537.  
  538.         /*
  539.         if (isTag("center"))
  540.         {
  541.                 if (opened) text_align = ALIGN_CENTER;
  542.                 if (!opened)
  543.                 {
  544.                         NewLine(left1, top1);
  545.                         text_align = ALIGN_LEFT;
  546.                 }
  547.                 return;
  548.         }
  549.         if (isTag("right"))
  550.         {
  551.                 if (opened) text_align = ALIGN_RIGHT;
  552.                 if (!opened)
  553.                 {
  554.                         NewLine(left1, top1);
  555.                         text_align = ALIGN_LEFT;
  556.                 }
  557.                 return;
  558.         }
  559.         */
  560.         if (isTag("h1")) || (isTag("h2")) || (isTag("h3")) || (isTag("h4")) {
  561.                 NewLine(left1, top1);
  562.                 if (opened) && (stroka>1) NewLine(left1, top1 + 10);
  563.                 strcpy(#oldtag, #tag);
  564.                 if (opened)
  565.                 {
  566.                         if (!strcmp(#parametr, "align=")) && (!strcmp(#options,"center")) text_align = ALIGN_CENTER;
  567.                         if (!strcmp(#parametr, "align=")) && (!strcmp(#options,"right")) text_align = ALIGN_RIGHT;
  568.                         b_text = 1;
  569.                 }
  570.                 if (!opened)
  571.                 {
  572.                         text_align = ALIGN_LEFT;
  573.                         b_text = 0;
  574.                 }
  575.                 return;
  576.         }
  577.         else
  578.                 oldtag=NULL;
  579.                
  580.         if (isTag("b")) || (isTag("strong")) || (isTag("big")) {
  581.                 b_text = opened;
  582.                 return;
  583.         }
  584.         if(isTag("i")) || (isTag("em")) || (isTag("subtitle")) {
  585.                 i_text = opened;
  586.                 return;
  587.         }      
  588.         if (isTag("dt"))
  589.         {
  590.                 li_text = opened;
  591.                 IF(opened == 0) return;
  592.                 NewLine(left1, top1);
  593.                 return;
  594.         }
  595.         if (isTag("condition"))
  596.         {
  597.                 condition_text_active = opened;
  598.                 if (opened) && (!strcmp(#parametr, "show_if=")) condition_text_val = atoi(#options);
  599.                 return;
  600.         }
  601.         if (isTag("li")) || (isTag("dt")) //íàäî ñäåëàòü âëîæåííûå ñïèñêè
  602.         {
  603.                 li_text = opened;
  604.                 if (opened)
  605.                 {
  606.                         NewLine(left1, top1);
  607.                         if (stroka > -1) && (stroka - 2 < list.visible) DrawBuf.DrawBar(li_tab * 5 * 6 + left1 - 5, list.line_h/2-3, 2, 2, 0x555555);
  608.                 }
  609.                 return;
  610.         }
  611.         if (isTag("u")) || (isTag("ins")) u_text = opened;
  612.         if (isTag("s")) || (isTag("strike")) || (isTag("del")) s_text = opened;
  613.         if (isTag("ul")) || (isTag("ol")) IF(!opened)
  614.         {
  615.                 li_text = opened;
  616.                 li_tab--;
  617.                 NewLine(left1, top1);
  618.         } ELSE li_tab++;
  619.         if (isTag("dd")) stolbec += 5;
  620.         if (isTag("blockquote")) blq_text = opened;
  621.         if (isTag("pre")) || (isTag("code")) pre_text = opened;
  622.         if (isTag("hr"))
  623.         {
  624.                 if (anchor) || (stroka < -1)
  625.                 {
  626.                         stroka+=2;
  627.                         return;
  628.                 }
  629.                 if (strcmp(#parametr, "color=") == 0) hr_color = GetColor(#options); else hr_color = 0x999999;
  630.                 NewLine(left1, top1);
  631.                 DrawBuf.DrawBar(5, list.line_h/2, list.w-10, 1, hr_color);
  632.                 NewLine(left1, top1+list.line_h);
  633.         }
  634.         if (isTag("img"))
  635.         {
  636.                 ImgCache.Images( left1, top1, WB1.list.w);
  637.                 return;
  638.         }
  639.         if (isTag("meta")) || (isTag("?xml"))
  640.         {
  641.                 do{
  642.                         if (!strcmp(#parametr, "charset=")) || (!strcmp(#parametr, "content=")) || (!strcmp(#parametr, "encoding="))
  643.                         {
  644.                                 strcpy(#options, #options[strrchr(#options, '=')]); //ïîèñê â content=
  645.                                 strlwr(#options);
  646.                                 meta_encoding = _DEFAULT;
  647.                                 if (!strcmp(#options, "utf-8"))  || (!strcmp(#options,"utf8")) meta_encoding = _UTF;
  648.                                 if (!strcmp(#options, "koi8-r")) || (!strcmp(#options, "koi8-u")) meta_encoding = _KOI;
  649.                                 if (!strcmp(#options, "windows-1251")) || (!strcmp(#options, "windows1251")) meta_encoding = _WIN;
  650.                                 //if (!strcmp(#options, "dos"))    || (!strcmp(#options, "cp-866"))   meta_encoding = _DOS;
  651.                                 if (cur_encoding==_DEFAULT) BufEncode(meta_encoding);
  652.                                 return;
  653.                         }
  654.                 } while(GetNextParam());
  655.                 return;
  656.         }
  657. }
  658.  
  659. void TWebBrowser::DrawScroller()
  660. {
  661.         scroll_wv.max_area = list.count;
  662.         scroll_wv.cur_area = list.visible;
  663.         scroll_wv.position = list.first;
  664.  
  665.         scroll_wv.all_redraw=1;
  666.         scroll_wv.start_x = list.x + list.w;
  667.         scroll_wv.start_y = list.y;
  668.         scroll_wv.size_y=list.h;
  669.  
  670.         scrollbar_v_draw(#scroll_wv);
  671. }
  672.  
  673.  
  674. void TWebBrowser::NewLine(int left1, top1)
  675. {
  676.         if (!stroka) DrawBar(list.x, list.y, list.w, 5, bg_color);
  677.         if (t_html) && (!t_body) return;
  678.         if (top1>=list.y) && ( top1 < list.h+list.y-10)  && (!anchor)
  679.         {
  680.                 if (text_align == ALIGN_CENTER) DrawBuf.AlignCenter(left1,top1,list.w,list.line_h,stolbec * 6);
  681.                 if (text_align == ALIGN_RIGHT) DrawBuf.AlignRight(left1,top1,list.w,list.line_h,stolbec * 6);
  682.                 DrawBuf.bufy = top1;
  683.                 DrawBuf.Show();
  684.                 DrawBuf.Fill(bg_color);
  685.         }
  686.         stroka++;
  687.         if (blq_text) stolbec = 6; else stolbec = 0;
  688.         if (li_text) stolbec = li_tab * 5;
  689. }
  690.  
  691.  
  692.  
  693. int isTag(dword text)
  694. {
  695.         if (!strcmp(#tag,text)) return 1; else return 0;
  696. }
  697.  
  698.  
  699.