Subversion Repositories Kolibri OS

Rev

Rev 4718 | Rev 4725 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. //HTML Viewer in C--
  2. //Copyright 2007-2013 by Veliant & Leency
  3. //Asper, lev, Lrz, Barsuk, Nable...
  4. //home icon - rachel fu, GPL licence
  5.  
  6. #ifndef AUTOBUILD
  7.         #include "lang.h--"
  8. #endif
  9.  
  10. //libraries
  11. #define MEMSIZE 0x100000
  12. #include "..\lib\kolibri.h"
  13. #include "..\lib\strings.h"
  14. #include "..\lib\figures.h"
  15. #include "..\lib\encoding.h"
  16. #include "..\lib\file_system.h"
  17. #include "..\lib\mem.h"
  18. #include "..\lib\dll.h"
  19. #include "..\lib\draw_buf.h"
  20. #include "..\lib\list_box.h"
  21. #include "..\lib\cursor.h"
  22.  
  23. //*.obj libraries
  24. #include "..\lib\lib.obj\box_lib.h"
  25. #include "..\lib\lib.obj\libio_lib.h"
  26. #include "..\lib\lib.obj\libimg_lib.h"
  27. #include "..\lib\lib.obj\http.h"
  28.  
  29. char homepage[] = FROM "html\homepage.htm";
  30.  
  31. #ifdef LANG_RUS
  32.         char version[]=" ’¥ªáâ®¢ë© ¡à ã§¥à 1.0 Beta 5";
  33.         ?define IMAGES_CACHE_CLEARED "Šíè ª à⨭®ª ®ç¨é¥­"
  34.         ?define T_LAST_SLIDE "â® ¯®á«¥¤­¨© á« ©¤"
  35.         char loading[] = "‡ £à㧪  áâà ­¨æë...<br>";
  36.         char page_not_found[] = FROM "html\page_not_found_ru.htm";
  37.         char accept_language[]= "Accept-Language: ru\n";
  38. #else
  39.         char version[]=" Text-based Browser 1.0 Beta 5";
  40.         ?define IMAGES_CACHE_CLEARED "Images cache cleared"
  41.         ?define T_LAST_SLIDE "This slide is the last"
  42.         char loading[] = "Loading...<br>";
  43.         char page_not_found[] = FROM "html\page_not_found_en.htm";
  44.         char accept_language[]= "Accept-Language: en\n";       
  45. #endif
  46.  
  47. proc_info Form;
  48. #define WIN_W 640
  49. #define WIN_H 480
  50.  
  51. char search_path[]="http://nigma.ru/index.php?s=";
  52. char str_location[]="location\0";
  53. int redirected = 0;
  54.  
  55. char stak[4096];
  56. mouse m;
  57. int action_buf;
  58.  
  59. dword http_transfer = 0;
  60. dword http_buffer;
  61.  
  62. dword TAB_H = false; //19;
  63. dword TAB_W = 150;
  64. dword TOOLBAR_H = 31; //50;
  65. dword STATUSBAR_H =15;
  66. dword col_bg;
  67. dword panel_color;
  68. dword border_color;
  69.  
  70. pb progress_bar = {0, 10, 83, 150, 12, 0, 0, 100, 0xeeeEEE, 8072B7EBh, 0x9F9F9F};
  71. byte souce_mode = false;
  72.  
  73. #include "..\TWB\TWB.c"
  74. #include "menu_rmb.h"
  75. #include "history.h"
  76. #include "show_src.h"
  77.  
  78. char editURL[sizeof(URL)];
  79. int     mouse_twb;
  80. edit_box address_box = {250,55,34,0xffffff,0x94AECE,0xffffff,0xffffff,0,sizeof(URL),#editURL,#mouse_twb,2,19,19};
  81.  
  82. #define URL_SERVICE_HISTORY "WebView://history"
  83. #define URL_SERVICE_HOME "WebView://home"
  84. #define URL_SERVICE_SOURCE "WebView://source:"
  85.  
  86. enum { BACK=300, FORWARD, REFRESH, HOME, NEWTAB, GOTOURL, SEARCHWEB, INPUT_CH, INPUT_BT, BTN_UP, BTN_DOWN };
  87.  
  88. struct struct_skin {
  89.         dword image, w, h;
  90.         int Load();
  91. } skin;
  92.  
  93. int struct_skin::Load()
  94. {
  95.         dword image_data;
  96.         skin.image = load_image(abspath("wv_skin.png"));
  97.         if (!skin.image) notify("WebView skin file 'wv_skin.png' not found, program will terminate");
  98.         skin.w = DSWORD[skin.image+4];
  99.         skin.h = DSWORD[skin.image+8];
  100.         image_data = DSDWORD[skin.image+24];
  101.  
  102.         col_bg = DSDWORD[DSDWORD[skin.image+24]];
  103.         panel_color  = DSDWORD[skin.w*4*4 + image_data];
  104.         border_color = DSDWORD[skin.w*4*7 + image_data];
  105.         progress_bar.progress_color = DSDWORD[skin.w*4*10 + image_data];
  106.         $and col_bg, 0x00ffffff
  107.         $and panel_color, 0x00ffffff
  108.         $and border_color, 0x00ffffff
  109.         $and progress_bar.progress_color, 0x00ffffff
  110. }
  111.  
  112. void DrawProgress()
  113. {
  114.         unsigned long btn;
  115.         //progressbar_draw stdcall(#progress_bar);
  116.         progress_bar.width = progress_bar.left = 0;
  117.         if (http_transfer == 0) return;
  118.         if (progress_bar.max) btn = address_box.width*progress_bar.value/progress_bar.max; else btn = 30;
  119.         DrawBar(address_box.left-1, address_box.top+14, btn, 2, progress_bar.progress_color);
  120. }
  121.  
  122.  
  123. void main()
  124. {
  125.         unsigned long key, btn;
  126.         int half_scroll_size;
  127.         int scroll_used=0, show_menu;
  128.        
  129.         mem_Init();
  130.         CursorPointer.Load(#CursorFile);
  131.         if (load_dll2(boxlib, #box_lib_init,0)!=0) notify("System Error: library doesn't exists /rd/1/lib/box_lib.obj");
  132.         if (load_dll2(libio, #libio_init,1)!=0) notify("Error: library doesn't exists - libio");
  133.         if (load_dll2(libimg, #libimg_init,1)!=0) notify("Error: library doesn't exists - libimg");
  134.         if (load_dll2(libHTTP, #http_lib_init,1)!=0) notify("Error: library doesn't exists - http");
  135.         skin.Load();
  136.        
  137.         Form.width=WIN_W;
  138.         Form.height=WIN_H;
  139.         SetElementSizes();
  140.         if (!URL) strcpy(#URL, URL_SERVICE_HOME);
  141.         OpenPage();
  142.  
  143.         SetEventMask(0xa7);
  144.         loop()
  145.         {
  146.                 WaitEventTimeout(2);
  147.                 switch(EAX & 0xFF)
  148.                 {
  149.                         CASE evMouse:
  150.                                 if (!CheckActiveProcess(Form.ID)) break;
  151.                                 //Edit URL
  152.                                 edit_box_mouse stdcall (#address_box);
  153.                                 m.get();
  154.                                 //Links hover
  155.                                 if (m.y>WB1.list.y) PageLinks.Hover(m.x, m.y, link_color_inactive, link_color_active, bg_color);
  156.                                 //Menu
  157.                                 if (m.y>WB1.list.y) && (m.y<Form.height) && (bufsize)
  158.                                 {
  159.                                         if (m.pkm)
  160.                                         {
  161.                                                 show_menu = 1;
  162.                                         }
  163.                                         if (!m.pkm) && (show_menu)
  164.                                         {
  165.                                                 show_menu = 0;
  166.                                                 SwitchToAnotherThread();
  167.                                                 CreateThread(#menu_rmb,#stak+4092);
  168.                                                 break;
  169.                                         }
  170.                                 }
  171.                                 //Mouse scroll
  172.                                 if (m.vert)
  173.                                 {
  174.                                         if (WB1.list.MouseScroll(m.vert)) WB1.Parse();
  175.                                 }
  176.                                 //Drag scroller
  177.                                 scroll_wv.all_redraw = 0;
  178.                                 if (!m.lkm) scroll_used=0;
  179.                                 if (m.x>=scroll_wv.start_x) && (m.x<=scroll_wv.start_x+scroll_wv.size_x)
  180.                                 && (m.y>=scroll_wv.start_y+scroll_wv.btn_height) && (-scroll_wv.btn_height+scroll_wv.start_y+scroll_wv.size_y>m.y)
  181.                                 && (WB1.list.count>WB1.list.visible) && (m.lkm)
  182.                                 {
  183.                                         scroll_used=1;
  184.                                 }                              
  185.                                 if (scroll_used)
  186.                                 {
  187.                                         half_scroll_size = WB1.list.h - 16 * WB1.list.visible / WB1.list.count - 3 /2;
  188.                                         if (half_scroll_size+WB1.list.y>m.y) || (m.y<0) || (m.y>4000) m.y=half_scroll_size+WB1.list.y;
  189.                                         btn=WB1.list.first;
  190.                                         WB1.list.first = m.y -half_scroll_size -WB1.list.y * WB1.list.count / WB1.list.h;
  191.                                         if (WB1.list.visible+WB1.list.first>WB1.list.count) WB1.list.first=WB1.list.count-WB1.list.visible;
  192.                                         if (btn<>WB1.list.first) WB1.Parse();
  193.                                 }
  194.                                 break;
  195.                         case evButton:
  196.                                 btn=GetButtonID();
  197.                                 if (btn==1)     ExitProcess();
  198.                                 Scan(btn);
  199.                                 break;
  200.                         case evKey:
  201.                                 key = GetKey();
  202.                                
  203.                                 if (address_box.flags & 0b10) SWITCH(key)
  204.                                         { CASE 52: CASE 53: CASE 54: CASE 180: CASE 181: goto _EDIT_MARK; }
  205.  
  206.                                 Scan(key);
  207.                                
  208.                                 _EDIT_MARK:
  209.                                 if (key<>0x0d) && (key<>183) && (key<>184) {EAX=key<<8; edit_box_key stdcall(#address_box);}
  210.                                 break;
  211.                         case evReDraw:
  212.                                 if (action_buf) Scan(action_buf);
  213.                                 Draw_Window();
  214.                                 break;
  215.                                
  216.                         case evNetwork:
  217.                                 if (http_transfer > 0) {
  218.                                         http_process stdcall (http_transfer);
  219.                                         $push EAX
  220.                                         ESI = http_transfer;
  221.                                         progress_bar.max = ESI.http_msg.content_length;
  222.                                         if (progress_bar.value != ESI.http_msg.content_received)
  223.                                         {
  224.                                                 progress_bar.value = ESI.http_msg.content_received;    
  225.                                                 DrawProgress();
  226.                                         }
  227.                                         $pop EAX
  228.                                         if (EAX == 0) {
  229.                                                 ESI = http_transfer;
  230.                                                 // Handle redirects
  231.                                                 if (ESI.http_msg.status >= 300) && (ESI.http_msg.status < 400)
  232.                                                 {
  233.                                                         redirected++;
  234.                                                         if (redirected<=5)
  235.                                                         {
  236.                                                                 http_find_header_field stdcall (http_transfer, #str_location);
  237.                                                                 if (EAX!=0) {
  238.                                                                         ESI = EAX;
  239.                                                                         EDI = #URL;
  240.                                                                         do {
  241.                                                                                 $lodsb;
  242.                                                                                 $stosb;
  243.                                                                         } while (AL != 0) && (AL != 13) && (AL != 10));
  244.                                                                         DSBYTE[EDI-1]='\0';
  245.                                                                 }
  246.                                                         }
  247.                                                         else
  248.                                                         {
  249.                                                         //TODO: display error (too many redirects)
  250.                                                         }
  251.                                                 }
  252.                                                 else
  253.                                                 {
  254.                                                         redirected = 0;
  255.                                                 }
  256.                                                 // Loading the page is complete, free resources
  257.                                                 if (redirected>0)
  258.                                                 {
  259.                                                         http_free stdcall (http_transfer);
  260.                                                         http_transfer=0;
  261.                                                         PageLinks.GetAbsoluteURL(#URL);
  262.                                                         BrowserHistory.current--;
  263.                                                         strcpy(#editURL, #URL);
  264.                                                         OpenPage();
  265.                                                 }
  266.                                                 else
  267.                                                 {
  268.                                                         BrowserHistory.AddUrl();
  269.                                                         ESI = http_transfer;
  270.                                                         bufpointer = ESI.http_msg.content_ptr;
  271.                                                         bufsize = ESI.http_msg.content_received;
  272.                                                         http_free stdcall (http_transfer);
  273.                                                         http_transfer=0;
  274.                                                         SetPageDefaults();
  275.                                                         Draw_Window();          // stop button => refresh button
  276.                                                 }
  277.                                         }
  278.                                 }
  279.                 }
  280.         }
  281. }
  282.  
  283. void SetElementSizes()
  284. {
  285.         address_box.top = TOOLBAR_H-TAB_H/2-7+TAB_H;
  286.         address_box.width = Form.cwidth - address_box.left - 25 - 22;
  287.         WB1.list.SetSizes(0, TOOLBAR_H, Form.width - 10 - scroll_wv.size_x, Form.cheight - TOOLBAR_H - STATUSBAR_H, 0, 11);
  288.         WB1.list.column_max = WB1.list.w - scroll_wv.size_x / 6;
  289.         WB1.list.visible = WB1.list.h - 5 / WB1.list.line_h;
  290.         WB1.DrawBuf.Init(WB1.list.x, WB1.list.y, WB1.list.w, WB1.list.line_h);
  291. }
  292.  
  293. void Draw_Window()
  294. {
  295.         int img_off;
  296.         DefineAndDrawWindow(GetScreenWidth()-WIN_W/2,GetScreenHeight()-WIN_H/2,WIN_W,WIN_H,0x73,col_bg,0,0);
  297.         GetProcessInfo(#Form, SelfInfo);
  298.         if (Form.status_window>2) { DrawTitle(#header); return; }
  299.         if (Form.height<120) MoveSize(OLD,OLD,OLD,120);
  300.         if (Form.width<280) MoveSize(OLD,OLD,280,OLD);
  301.         // tab {
  302.         if (TAB_H)
  303.         {
  304.                 DrawBar(0, 0, TAB_W, TAB_H+1, panel_color);
  305.                 WriteText(5, 7, 0x80, 0xfdfdFd, "Index.htm");
  306.                 WriteText(4, 6, 0x80, 0, "Index.htm");         
  307.                 DrawBar(TAB_W,0, Form.cwidth-TAB_W,TAB_H, col_bg);
  308.                 DrawBar(TAB_W-1,TAB_H, Form.cwidth-TAB_W+1,1, border_color);
  309.                 img_draw stdcall(skin.image, TAB_W-13, 0, 30, skin.h, 101, 0);
  310.         }
  311.         else DrawBar(0,0, Form.cwidth,1, col_bg);
  312.         // }
  313.         DrawBar(0,TAB_H+1, Form.cwidth,TOOLBAR_H-TAB_H-3, panel_color);
  314.         DrawBar(0,TOOLBAR_H-2, Form.cwidth,1, 0xe9e9e9);
  315.         DrawBar(0,TOOLBAR_H-1, Form.cwidth,1, border_color);
  316.         SetElementSizes();
  317.         DrawRectangle(address_box.left-1, address_box.top-1, address_box.width+2, 16,address_box.color);
  318.         DrawRectangle(address_box.left-2, address_box.top-2, address_box.width+4, 18,border_color);
  319.         // < / >
  320.         DefineButton(address_box.left-49, address_box.top-1, 23, skin.h-2, 300+BT_HIDE, 0);
  321.         DefineButton(address_box.left-25, address_box.top-1, 23, skin.h-2, 301+BT_HIDE, 0);
  322.         img_draw stdcall(skin.image, address_box.left-50, address_box.top-2, 48, skin.h, 3, 0);
  323.         // refrash
  324.         DefineButton(address_box.left+address_box.width+1, address_box.top-2, 16, skin.h-1, REFRESH+BT_HIDE+BT_NOFRAME, 0);
  325.         if (http_transfer > 0) img_off = 131; else img_off = 52;
  326.         img_draw stdcall(skin.image, address_box.left+address_box.width+1, address_box.top-2, 17, skin.h, img_off, 0);
  327.         // config
  328.         DefineButton(Form.cwidth-23, address_box.top-2, 17, skin.h-1, 312+BT_HIDE, 0);
  329.         img_draw stdcall(skin.image, Form.cwidth-22, address_box.top-2, 16, skin.h, 85, 0);
  330.         //status bar
  331.         DrawBar(0,Form.cheight - STATUSBAR_H, Form.cwidth,STATUSBAR_H, col_bg);
  332.         DrawBar(0,Form.cheight - STATUSBAR_H, Form.cwidth,1, border_color);
  333.         progress_bar.top = Form.cheight - STATUSBAR_H + 4;
  334.         ShowPage();
  335.         DrawRectangle(scroll_wv.start_x, scroll_wv.start_y, scroll_wv.size_x, scroll_wv.size_y-1, scroll_wv.bckg_col);
  336.         DrawProgress();
  337. }
  338.  
  339.  
  340. void ChangeCharset(byte new_charset)
  341. {
  342.         BufEncode(new_charset);
  343.         WB1.Parse();   
  344. }
  345.  
  346. void Scan(int id)
  347. {
  348.         action_buf=0;
  349.         if (id >= 400)
  350.         {
  351.                 ProcessLinks(id);
  352.                 return;
  353.         }
  354.         switch (id)
  355.         {
  356.                 case 011: //Ctrk+K
  357.                         ChangeCharset(_KOI);
  358.                         return;
  359.  
  360.                 case 021: //Ctrl+U
  361.                         ChangeCharset(_UTF);
  362.                         return;
  363.  
  364.                 case 004: //Ctrl+D
  365.                         ChangeCharset(_DOS);
  366.                         return;
  367.  
  368.                 case 005: //Win encoding
  369.                         ChangeCharset(_WIN);
  370.                         return;
  371.  
  372.                 case 009: //free img cache
  373.                         ImgCache.Free();
  374.                         notify(IMAGES_CACHE_CLEARED);
  375.                         WB1.Parse();
  376.                         return;
  377.  
  378.                 case 003: //history
  379.                         strcpy(#URL, URL_SERVICE_HISTORY);
  380.                         OpenPage();
  381.                         return;
  382.  
  383.                 case BACK:
  384.                         if (!BrowserHistory.GoBack()) return;
  385.                         OpenPage();
  386.                         return;
  387.                 case FORWARD:
  388.                         if (!BrowserHistory.GoForward()) return;
  389.                         OpenPage();
  390.                         return;
  391.                 case 052: //F3
  392.                         ShowSource();
  393.                         WB1.Parse();
  394.                         break;
  395.                 case 053: //F4
  396.                         if (strncmp(#URL,"http:",5)==0)
  397.                         {
  398.                                 WriteFile(bufsize, bufpointer, "/tmp0/1/WebView_tmp.htm");
  399.                                 if (EAX==0) RunProgram("/rd/1/tinypad", "/tmp0/1/WebView_tmp.htm");
  400.                         }
  401.                         else
  402.                         {
  403.                                 RunProgram("/rd/1/tinypad", #URL);
  404.                         }
  405.                         return;
  406.                 case 054: //F5
  407.                         IF(address_box.flags & 0b10) return;
  408.                 case REFRESH:
  409.                         if (http_transfer > 0)
  410.                         {
  411.                                 StopLoading();
  412.                                 Draw_Window();
  413.                         }
  414.                         else OpenPage();
  415.                         return;
  416.                 case 014:
  417.                 case 020:
  418.                 case NEWTAB:
  419.                         MoveSize(190,80,OLD,OLD);
  420.                         RunProgram(#program_path, #URL);
  421.                         return;
  422.                        
  423.                 case HOME:
  424.                         strcpy(#editURL, "http://kolibrios.org/");
  425.                 case GOTOURL:
  426.                 case 0x0D: //enter
  427.                         if (!editURL[0]) return;
  428.                         if ((strncmp(#editURL,"http:",5)!=0) && (editURL[0]!='/') && ((strncmp(#editURL,"WebView:",8)!=0))
  429.                         {
  430.                                 strcpy(#URL,"http://");
  431.                         }
  432.                         else
  433.                                 URL[0] = 0;
  434.                         strcat(#URL, #editURL);
  435.                         OpenPage();
  436.                         return;
  437.                 case SEARCHWEB:
  438.                         strcpy(#URL, #search_path);
  439.                         strcat(#URL, #editURL);
  440.                         OpenPage();
  441.                         return;
  442.  
  443.                 case 183: //PgDown
  444.                         if (WB1.list.count < WB1.list.visible) return;
  445.                         IF(WB1.list.first == WB1.list.count - WB1.list.visible) return;
  446.                         WB1.list.first += WB1.list.visible + 2;
  447.                         IF(WB1.list.visible + WB1.list.first > WB1.list.count) WB1.list.first = WB1.list.count - WB1.list.visible;
  448.                         WB1.Parse();
  449.                         return;
  450.  
  451.                 case 184: //PgUp
  452.                         if (WB1.list.count < WB1.list.visible) return;
  453.                         IF(WB1.list.first == 0) return;
  454.                         WB1.list.first -= WB1.list.visible - 2;
  455.                         IF(WB1.list.first < 0) WB1.list.first = 0;
  456.                         WB1.Parse();
  457.                         return;
  458.  
  459.                 case 178:
  460.                 case BTN_UP:
  461.                         if (WB1.list.first <= 0) return;
  462.                         WB1.list.first--;
  463.                         WB1.Parse();
  464.                         return;
  465.  
  466.                 case 177:
  467.                 case BTN_DOWN:
  468.                         if (WB1.list.visible + WB1.list.first >= WB1.list.count) return;
  469.                         WB1.list.first++;
  470.                         WB1.Parse();
  471.                         return;
  472.  
  473.                 case 180: //home
  474.                         if (WB1.list.KeyHome()) WB1.Parse();
  475.                         return;
  476.  
  477.                 case 181: //end
  478.                         if (WB1.list.count < WB1.list.visible) return;
  479.                         if (WB1.list.KeyEnd()) WB1.Parse();
  480.                         return;
  481.                 case 312:
  482.                         SwitchToAnotherThread();
  483.                         m.y = TOOLBAR_H-6;
  484.                         m.x = Form.cwidth - 167;
  485.                         CreateThread(#menu_rmb,#stak+4092);
  486.         }
  487. }
  488.  
  489.  
  490.  
  491. void ProcessLinks(int id)
  492. {
  493.         if (http_transfer > 0)
  494.         {
  495.                 StopLoading();
  496.                 BrowserHistory.current--;
  497.         }
  498.  
  499.         strcpy(#URL, PageLinks.GetURL(id-401));
  500.         //$1 - Condition Script
  501.         if (URL[0] == '$')
  502.         {
  503.                 if (URL[1]=='-') && (condition_href) condition_href--;
  504.                 if (URL[1]=='+')
  505.                 {
  506.                         if (condition_href<condition_max) condition_href++; else notify(T_LAST_SLIDE);
  507.                 }
  508.                 if (URL[1]!='-') && (URL[1]!='+') condition_href = atoi(#URL+1);
  509.                 strcpy(#URL, BrowserHistory.CurrentUrl());
  510.                 ShowPage();
  511.                 return;
  512.         }
  513.         //#1
  514.         if (URL[0] == '#')
  515.         {
  516.                 strcpy(#anchor, #URL+strrchr(#URL, '#'));              
  517.                 strcpy(#URL, BrowserHistory.CurrentUrl());
  518.                 WB1.list.first=WB1.list.count-WB1.list.visible;
  519.                 ShowPage();
  520.                 return;
  521.         }
  522.         //liner.ru#1
  523.         if (strrchr(#URL, '#')!=-1)
  524.         {
  525.                 strcpy(#anchor, #URL+strrchr(#URL, '#'));
  526.                 URL[strrchr(#URL, '#')-1] = 0x00;
  527.         }
  528.        
  529.         PageLinks.GetAbsoluteURL(#URL);
  530.        
  531.         if (!strcmp(#URL + strlen(#URL) - 4, ".gif")) || (!strcmp(#URL + strlen(#URL) - 4, ".png")) || (!strcmp(#URL + strlen(#URL) - 4, ".jpg"))
  532.         {
  533.                 //if (strstr(#URL,"http:"))
  534.                 RunProgram("/sys/media/kiv", #URL);
  535.                 strcpy(#editURL, BrowserHistory.CurrentUrl());
  536.                 strcpy(#URL, BrowserHistory.CurrentUrl());
  537.                 return;
  538.         }
  539.         if (!strcmpn(#URL,"mailto:", 7))
  540.         {
  541.                 notify(#URL);
  542.                 strcpy(#editURL, BrowserHistory.CurrentUrl());
  543.                 strcpy(#URL, BrowserHistory.CurrentUrl());
  544.                 return;
  545.         }
  546.         OpenPage();
  547.         return;
  548. }
  549.  
  550. void StopLoading()
  551. {
  552.         if (http_transfer<>0)
  553.         {
  554.                 EAX = http_transfer;
  555.                 EAX = EAX.http_msg.content_ptr;         // get pointer to data
  556.                 $push   EAX                                                     // save it on the stack
  557.                 http_free stdcall (http_transfer);      // abort connection
  558.                 $pop    EAX                                                    
  559.                 mem_Free(EAX);                                          // free data
  560.                 http_transfer=0;
  561.                 bufsize = 0;
  562.                 bufpointer = mem_Free(bufpointer);
  563.         }
  564.         progress_bar.value = 0;
  565.         img_draw stdcall(skin.image, address_box.left+address_box.width+1, address_box.top-2, 17, skin.h, 52, 0);
  566. }
  567.  
  568. void SetPageDefaults()
  569. {
  570.         strcpy(#header, #version);
  571.         pre_text = 0;
  572.         WB1.list.count = WB1.list.first = 0;
  573.         stroka = 0;
  574.         cur_encoding = _DEFAULT;
  575.         if (o_bufpointer) o_bufpointer = free(o_bufpointer);
  576.         anchor_line_num=WB1.list.first;
  577.         anchor[0]='|';
  578. }
  579.  
  580. void OpenPage()
  581. {
  582.         StopLoading();
  583.         souce_mode = false;
  584.         strcpy(#editURL, #URL);
  585.         BrowserHistory.AddUrl();
  586.         if (strncmp(#URL,"WebView:",8)==0)
  587.         {
  588.                 SetPageDefaults();
  589.                 if (strcmp(#URL, URL_SERVICE_HOME)==0)
  590.                 {
  591.                         WB1.Prepare(#homepage, sizeof(homepage));
  592.                 }
  593.                 if (strcmp(#URL, URL_SERVICE_HISTORY)==0)
  594.                 {
  595.                         ShowHistory();
  596.                 }
  597.                 return;
  598.         }
  599.         if (strncmp(#URL,"http:",5)==0)
  600.         {
  601.                 img_draw stdcall(skin.image, address_box.left+address_box.width+1, address_box.top-2, 17, skin.h, 131, 0);
  602.                 http_get stdcall (#URL, #accept_language);
  603.                 http_transfer = EAX;
  604.                 if (http_transfer == 0)
  605.                 {
  606.                         StopLoading();
  607.                         bufsize = 0;
  608.                         bufpointer = mem_Free(bufpointer);
  609.                         ShowPage();
  610.                         return;
  611.                 }
  612.         }
  613.         else
  614.         {
  615.                 file_size stdcall (#URL);
  616.                 bufsize = EBX;
  617.                 if (bufsize)
  618.                 {
  619.                         mem_Free(bufpointer);
  620.                         bufpointer = mem_Alloc(bufsize);
  621.                         SetPageDefaults();
  622.                         ReadFile(0, bufsize, bufpointer, #URL);
  623.                         //ShowSource();
  624.                 }
  625.                 ShowPage();
  626.         }
  627. }
  628.  
  629. DrawEditBox()
  630. {
  631.         address_box.size = address_box.pos = address_box.shift = address_box.shift_old = strlen(#editURL);
  632.         address_box.offset = 0;
  633.         edit_box_draw stdcall(#address_box);
  634. }
  635.  
  636.  
  637. void ShowPage()
  638. {
  639.         DrawEditBox();
  640.         if (!bufsize)
  641.         {
  642.                 PageLinks.Clear();
  643.                 if (http_transfer<>0)
  644.                 {
  645.                         WB1.Prepare(#loading, sizeof(loading));
  646.                 }
  647.                 else
  648.                         WB1.Prepare(#page_not_found, sizeof(page_not_found));
  649.         }
  650.         else
  651.                 WB1.Parse();
  652.  
  653.         if (!header) strcpy(#header, #version);
  654.         if (!strcmp(#version, #header)) DrawTitle(#header);
  655. }
  656.  
  657.  
  658.  
  659.  
  660. stop:
  661.