Subversion Repositories Kolibri OS

Rev

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

  1. //Copyright 2007-2020 by Veliant & Leency
  2. //Asper, lev, Lrz, Barsuk, Nable, hidnplayr...
  3.  
  4. #ifndef AUTOBUILD
  5.         #include "lang.h--"
  6. #endif
  7.  
  8. //===================================================//
  9. //                                                   //
  10. //                       LIB                         //
  11. //                                                   //
  12. //===================================================//
  13.  
  14. #define MEMSIZE 1024 * 130
  15. #include "..\lib\gui.h"
  16. #include "..\lib\draw_buf.h"
  17. #include "..\lib\list_box.h"
  18. #include "..\lib\cursor.h"
  19. #include "..\lib\collection.h"
  20. #include "..\lib\random.h"
  21. #include "..\lib\clipboard.h"
  22.  
  23. #include "..\lib\obj\box_lib.h"
  24. #include "..\lib\obj\libimg.h"
  25. #include "..\lib\obj\http.h"
  26. #include "..\lib\obj\iconv.h"
  27. #include "..\lib\obj\proc_lib.h"
  28. #include "..\lib\obj\netcode.h"
  29.  
  30. #include "..\lib\patterns\history.h"
  31. #include "..\lib\patterns\simple_open_dialog.h"
  32. #include "..\lib\patterns\toolbar_button.h"
  33. #include "..\lib\patterns\restart_process.h"
  34.  
  35. #include "const.h"
  36. #include "cache.h"
  37. #include "show_src.h"
  38.  
  39. //===================================================//
  40. //                                                   //
  41. //                       DATA                        //
  42. //                                                   //
  43. //===================================================//
  44. char version[]="WebView 3.25";
  45.  
  46. #define DEFAULT_URL URL_SERVICE_HOMEPAGE
  47.  
  48. bool debug_mode = false;
  49. bool show_images = true;
  50.  
  51. _history history;
  52.  
  53. enum { TARGET_SAME_TAB, TARGET_NEW_WINDOW, TARGET_NEW_TAB };
  54.  
  55. #include "TWB\TWB.c" //HTML Parser, a core component
  56.  
  57. TWebBrowser WB1;
  58.  
  59. #include "history.h"
  60.  
  61. #define PADDING 9
  62. #define TSZE 25
  63. #define STATUSBAR_H 15
  64. #define TAB_H 20
  65. dword TOOLBAR_H = PADDING+TSZE+PADDING+2;
  66.  
  67. _http http = 0;
  68.  
  69. bool source_mode = false;
  70.  
  71. progress_bar prbar;
  72. proc_info Form;
  73.  
  74. #include "tabs.h"
  75.  
  76. dword cur_img_url;
  77. dword shared_url;
  78. dword http_get_type=PAGE;
  79. dword render_start_time;
  80. int menu_id=NULL;
  81.  
  82. char default_dir[] = "/rd/1";
  83. od_filter filter2 = { 22, "TXT\0HTM\0HTML\0DOCX\0\0" };
  84.  
  85. char editURL[URL_SIZE+1];
  86. edit_box omnibox_edit = {, PADDING+TSZE*2+PADDING+6, PADDING+3, 0xffffff,
  87.         0x94AECE, 0xffffff, 0xffffff,0x10000000,URL_SIZE-2,#editURL,0,,19,19};
  88.  
  89. //===================================================//
  90. //                                                   //
  91. //                       CODE                        //
  92. //                                                   //
  93. //===================================================//
  94.  
  95. void LoadLibraries()
  96. {
  97.         load_dll(boxlib,      #box_lib_init,0);
  98.         load_dll(libimg,      #libimg_init,1);
  99.         load_dll(libHTTP,     #http_lib_init,1);
  100.         load_dll(iconv_lib,   #iconv_open,0);
  101.         load_dll(netcode_lib, #base64_encode,0);
  102.         load_dll(Proc_lib,    #OpenDialog_init,0);
  103.         OpenDialog_init stdcall (#o_dialog);   
  104. }
  105.  
  106. void HandleParam()
  107. {
  108.         if (!param) {
  109.                 history.add(DEFAULT_URL);
  110.         } else {
  111.                 if (!strncmp(#param, "-source ", 8)) {
  112.                         source_mode = true;
  113.                         history.add(#param + 8);
  114.                 } else if (!strncmp(#param, "-new ", 5)) {
  115.                         history.add(#param + 5);
  116.                 } else {
  117.                         if (GetProcessesCount("WEBVIEW") == 1) {
  118.                                 history.add(#param);
  119.                         } else {
  120.                                 shared_url = memopen(#webview_shared, URL_SIZE+1, SHM_OPEN + SHM_WRITE);
  121.                                 strncpy(shared_url, #param, URL_SIZE);
  122.                                 ExitProcess();
  123.                         }
  124.                 }
  125.         }
  126.         shared_url = memopen(#webview_shared, URL_SIZE+1, SHM_CREATE + SHM_WRITE);
  127.         ESDWORD[shared_url] = '\0';
  128. }
  129.  
  130. void main()
  131. {
  132.         int redirect_count=0;
  133.         LoadLibraries();
  134.         HandleParam();
  135.         WB1.list.SetFont(8, 14, 10011000b);
  136.         WB1.list.no_selection = true;
  137.         WB1.custom_encoding = -1;
  138.         @SetEventMask(EVM_REDRAW + EVM_KEY + EVM_BUTTON + EVM_MOUSE + EVM_MOUSE_FILTER + EVM_STACK);
  139.         loop() switch(@WaitEventTimeout(30))
  140.         {
  141.                 case evMouse:
  142.                         edit_box_mouse stdcall (#omnibox_edit);
  143.                         mouse.get();
  144.  
  145.                         if (WB1.list.MouseScroll(mouse.vert)) WB1.DrawPage();
  146.  
  147.                         scrollbar_v_mouse (#scroll_wv);
  148.                         if (scroll_wv.delta2) {
  149.                                 WB1.list.first = scroll_wv.position;
  150.                                 WB1.DrawPage();
  151.                                 break;
  152.                         }
  153.  
  154.                         if (links.hover(WB1.list.y, WB1.list.first))
  155.                         {
  156.                                 if (mouse.key&MOUSE_MIDDLE) && (mouse.up) {
  157.                                         if (key_modifier&KEY_LSHIFT) || (key_modifier&KEY_RSHIFT) {
  158.                                                 EventClickLink(TARGET_NEW_WINDOW);
  159.                                         } else {
  160.                                                 EventClickLink(TARGET_NEW_TAB);
  161.                                         }
  162.                                 }
  163.                                 if (mouse.key&MOUSE_LEFT) && (mouse.up) {
  164.                                         CursorPointer.Restore();
  165.                                         EventClickLink(TARGET_SAME_TAB);
  166.                                 }
  167.                                 if (mouse.key&MOUSE_RIGHT) && (mouse.up) {
  168.                                         CursorPointer.Restore();
  169.                                         EventShowLinkMenu();
  170.                                 }
  171.                         } else {
  172.                                 CursorPointer.Restore();
  173.                                 if (mouse.key&MOUSE_RIGHT) && (mouse.up) && (WB1.list.MouseOver(mouse.x, mouse.y)) {
  174.                                         EventShowPageMenu();
  175.                                 }
  176.                         }
  177.                         break;
  178.  
  179.                 case evButton:
  180.                         ProcessButtonClick( @GetButtonID() );
  181.                         break;
  182.  
  183.                 case evKey:
  184.                         @GetKeys();
  185.                         edit_box_key stdcall(#omnibox_edit);
  186.                         ProcessKeyEvent();
  187.                         break;
  188.  
  189.                 case evReDraw:
  190.                         DefineAndDrawWindow(GetScreenWidth()-800/2-random(80),
  191.                                 GetScreenHeight()-700/2-random(80),800,700,0x73,0,0,0);
  192.                         GetProcessInfo(#Form, SelfInfo);
  193.                         ProcessMenuClick();
  194.                         sc.get();
  195.                         if (Form.status_window>2) break;
  196.                         if (Form.height<120) { MoveSize(OLD,OLD,OLD,120); break; }
  197.                         if (Form.width<280) { MoveSize(OLD,OLD,280,OLD); break; }
  198.                         draw_window();
  199.                         break;
  200.                        
  201.                 case evNetwork:
  202.                         if (http.transfer <= 0) break;
  203.                         http.receive();
  204.  
  205.                         if (http_get_type==PAGE) {
  206.                                 CheckContentType();                            
  207.                                 prbar.max = http.content_length;
  208.                                 if (prbar.value != http.content_received) {
  209.                                         prbar.value = http.content_received;   
  210.                                         DrawProgress();
  211.                                 }
  212.                         }
  213.  
  214.                         if (http.receive_result != 0) break;
  215.                         if (debug_mode) debugval("HTTP", http.status_code);
  216.                         if (http.status_code >= 300) && (http.status_code < 400)
  217.                         {
  218.                                 // Handle redirects
  219.                                 if (redirect_count<=5) {
  220.                                         redirect_count++;
  221.                                         HandleRedirect();
  222.                                 } else {
  223.                                         StopLoading();
  224.                                         redirect_count = 0;
  225.                                         if (http_get_type==IMG) goto _IMG_RES;
  226.                                         notify("'Too many redirects.' -E");
  227.                                 }
  228.                         } else {
  229.                                 // Loading the page is complete, free resources
  230.                                 redirect_count = 0;
  231.                                 http.hfree();
  232.                                 if (http_get_type==PAGE) {
  233.                                         history.add(http.cur_url);
  234.                                         cache.add(http.cur_url, http.content_pointer, http.content_received, PAGE);
  235.                                         free(http.content_pointer);
  236.                                         LoadInternalPage(cache.current_buf, cache.current_size);
  237.                                 }
  238.                                 else if (http_get_type==IMG) {
  239.                                         _IMG_RES:
  240.                                         if (http.status_code >= 200) && (http.status_code < 300) {
  241.                                                 cache.add(cur_img_url, http.content_pointer, http.content_received, IMG);
  242.                                         } else {
  243.                                                 cache.add(cur_img_url, 0, 0, IMG);
  244.                                         }
  245.                                         free(http.content_pointer);
  246.                                         GetImg(false);
  247.                                 }
  248.                         }
  249.                         break;
  250.                 default:
  251.                         if (ESDWORD[shared_url] != '\0') {
  252.                                 EventOpenNewTab(shared_url);
  253.                                 ESDWORD[shared_url] = '\0';
  254.                                 ActivateWindow(GetProcessSlot(Form.ID));
  255.                         }
  256.         }
  257. }
  258.  
  259.  
  260. //===================================================//
  261. //                                                   //
  262. //                      EVENTS                       //
  263. //                                                   //
  264. //===================================================//
  265.  
  266. void ProcessButtonClick(dword id__)
  267. {
  268.         switch (id__)
  269.         {
  270.                 case 1: ExitProcess();
  271.                 case TAB_CLOSE_ID...TAB_CLOSE_ID+TABS_MAX: EventTabClose(id__ - TAB_CLOSE_ID); return;
  272.                 case TAB_ID...TAB_ID+TABS_MAX: EventAllTabsClick(id__ - TAB_ID); return;
  273.                 case ENCODINGS...ENCODINGS+6: EventChangeEncodingAndLoadPage(id__-ENCODINGS); return;
  274.                 case NEW_WINDOW:       RunProgram(#program_path, NULL); return;
  275.                 case NEW_TAB:          if (!http.transfer) EventOpenNewTab(URL_SERVICE_HOMEPAGE); return;
  276.                 case SCAN_CODE_BS:
  277.                 case BACK_BUTTON:      if (history.back()) OpenPage(history.current()); return;
  278.                 case FORWARD_BUTTON:   if (history.forward()) OpenPage(history.current()); return;
  279.                 case GOTOURL_BUTTON:   EventSubmitOmnibox();    return;
  280.                 case REFRESH_BUTTON:   EventRefreshPage(); return;
  281.                 case CHANGE_ENCODING:  EventShowEncodingsList(); return;
  282.                 case SANDWICH_BUTTON:  EventShowMainMenu(); return;
  283.                 case VIEW_SOURCE:      EventViewSource(); return;
  284.                 case EDIT_SOURCE:      EventEditSource(); return;
  285.                 case VIEW_HISTORY:     OpenPage(URL_SERVICE_HISTORY); return;
  286.                 case DOWNLOAD_MANAGER: EventOpenDownloader(""); return;
  287.                 case UPDATE_BROWSER:   EventUpdateBrowser(); return;
  288.                 case CLEAR_CACHE:      EventClearCache(); return;
  289.                 case IN_NEW_TAB:       EventClickLink(TARGET_NEW_TAB); return;
  290.                 case IN_NEW_WINDOW:    EventClickLink(TARGET_NEW_WINDOW); return;
  291.                 case COPY_LINK_URL:    EventCopyLinkToClipboard(); return;
  292.                 case DOWNLOAD_LINK_CT: EventOpenDownloader( GetAbsoluteActiveURL() ); return;
  293.                 case OPEN_FILE:        EventOpenDialog(); return;
  294.         }
  295. }
  296.  
  297. bool ProcessKeyEvent()
  298. {
  299.         if (key_modifier&KEY_LSHIFT) || (key_modifier&KEY_RSHIFT)
  300.         {
  301.                 if (key_scancode == SCAN_CODE_TAB) {EventActivatePreviousTab();return;}
  302.         }
  303.  
  304.         if (key_modifier&KEY_LCTRL) || (key_modifier&KEY_RCTRL) switch(key_scancode)
  305.         {
  306.                 case SCAN_CODE_KEY_O: EventOpenDialog(); return true;
  307.                 case SCAN_CODE_KEY_H: ProcessButtonClick(VIEW_HISTORY); return true;
  308.                 case SCAN_CODE_KEY_U: EventViewSource(); return true;
  309.                 case SCAN_CODE_KEY_T: EventOpenNewTab(URL_SERVICE_HOMEPAGE); return true;
  310.                 case SCAN_CODE_KEY_N: RunProgram(#program_path, NULL); return true;
  311.                 case SCAN_CODE_KEY_J: ProcessButtonClick(DOWNLOAD_MANAGER); return true;
  312.                 case SCAN_CODE_KEY_R: ProcessButtonClick(REFRESH_BUTTON); return true;
  313.                 case SCAN_CODE_ENTER: EventSeachWeb(); return true;
  314.                 case SCAN_CODE_LEFT:  ProcessButtonClick(BACK_BUTTON); return true;
  315.                 case SCAN_CODE_RIGHT: ProcessButtonClick(FORWARD_BUTTON); return true;
  316.                 case SCAN_CODE_KEY_W: EventCloseActiveTab(); return true;
  317.                 case SCAN_CODE_TAB:   EventActivateNextTab(); return true;
  318.                 case SCAN_CODE_F5:    EventClearCache(); return;
  319.                 default: return false;
  320.         }
  321.  
  322.         switch(key_scancode)
  323.         {
  324.                 case SCAN_CODE_UP:    EventScrollUpAndDown(SCAN_CODE_UP); return;
  325.                 case SCAN_CODE_DOWN:  EventScrollUpAndDown(SCAN_CODE_DOWN); return;
  326.                 case SCAN_CODE_F6:    {omnibox_edit.flags=ed_focus; DrawOmnibox();} return;
  327.                 case SCAN_CODE_F5:    EventRefreshPage(); return;
  328.                 case SCAN_CODE_ENTER: if (omnibox_edit.flags & ed_focus) EventSubmitOmnibox(); return;
  329.                 case SCAN_CODE_F12:   EventToggleDebugMode(); return;
  330.                 case SCAN_CODE_F11:   show_images^=1; EventClearCache(); return;
  331.                 default:              if (WB1.list.ProcessKey(key_scancode)) WB1.DrawPage(); return;
  332.         }
  333. }
  334.  
  335. void SetElementSizes()
  336. {
  337.         omnibox_edit.width = Form.cwidth - omnibox_edit.left - 52 - 16;
  338.         WB1.list.SetSizes(0, TOOLBAR_H+TAB_H, Form.cwidth - scroll_wv.size_x,
  339.                 Form.cheight - TOOLBAR_H - STATUSBAR_H - TAB_H, BASIC_LINE_H);
  340.         WB1.list.wheel_size = 7 * BASIC_LINE_H;
  341.         WB1.list.column_max = WB1.list.w - scroll_wv.size_x / WB1.list.font_w + 1;
  342.         WB1.list.visible = WB1.list.h;
  343. }
  344.  
  345.  
  346. void draw_window()
  347. {
  348.         bool burger_active = false;
  349.         if (menu_id == OPEN_FILE) burger_active = true;
  350.  
  351.         SetElementSizes();
  352.  
  353.         DrawBar(0,0, Form.cwidth,PADDING, sc.work);
  354.         DrawBar(0,PADDING+TSZE+1, Form.cwidth,PADDING-1, sc.work);
  355.         DrawBar(0,TOOLBAR_H-2, Form.cwidth,1, MixColors(sc.work_dark, sc.work, 180));
  356.         DrawBar(0,TOOLBAR_H-1, Form.cwidth,1, sc.work_graph);
  357.         DrawBar(0, PADDING, omnibox_edit.left-2, TSZE+1, sc.work);
  358.         DrawBar(omnibox_edit.left+omnibox_edit.width+18, PADDING, Form.cwidth-omnibox_edit.left-omnibox_edit.width-18, TSZE+1, sc.work);
  359.  
  360.         DrawTopPanelButton(BACK_BUTTON, PADDING-1, PADDING, 30, false);
  361.         DrawTopPanelButton(FORWARD_BUTTON, PADDING+TSZE+PADDING-2, PADDING, 31, false);
  362.         DrawTopPanelButton(SANDWICH_BUTTON, Form.cwidth-PADDING-TSZE-3, PADDING, -1, burger_active); //burger menu
  363.  
  364.         DrawBar(0,Form.cheight - STATUSBAR_H, Form.cwidth,1, sc.work_graph);
  365.  
  366.         DrawRectangle(WB1.list.x + WB1.list.w, WB1.list.y, scroll_wv.size_x,
  367.                 WB1.list.h-1, scroll_wv.bckg_col);
  368.  
  369.         if (!canvas.bufw) {
  370.                 OpenPage(history.current());
  371.         } else {
  372.                 WB1.DrawPage();
  373.                 DrawOmnibox();
  374.         }
  375.         DrawProgress();
  376.         DrawStatusBar(NULL);
  377.         DrawTabsBar();
  378. }
  379.  
  380. void EventChangeEncodingAndLoadPage(int _new_encoding)
  381. {
  382.         dword newbuf, newsize;
  383.         WB1.custom_encoding = _new_encoding;
  384.         newsize = strlen(WB1.o_bufpointer);
  385.         newbuf = malloc(newsize);
  386.         memmov(newbuf, WB1.o_bufpointer, newsize);
  387.         LoadInternalPage(newbuf, newsize);
  388.         free(newbuf);
  389. }
  390.  
  391.  
  392. void EventScrollUpAndDown(int _direction)
  393. {
  394.         int i;
  395.         for (i=0;i<WB1.list.item_h*2;i++) {
  396.                 if (_direction == SCAN_CODE_UP) WB1.list.KeyUp();
  397.                 if (_direction == SCAN_CODE_DOWN) WB1.list.KeyDown();
  398.         }
  399.         WB1.DrawPage();
  400. }
  401.  
  402. void EventToggleDebugMode()
  403. {
  404.         debug_mode ^= 1;
  405.         if (debug_mode) notify("'Debug mode ON'-I");
  406.         else notify("'Debug mode OFF'-I");
  407. }
  408.  
  409. void EventAllTabsClick(dword _n)
  410. {
  411.         if (http.transfer) return;
  412.         if (mouse.mkm) {
  413.                 EventTabClose(_n);
  414.         } else {
  415.                 EventTabClick(_n);
  416.         }
  417. }
  418.  
  419. void EventEditSource()
  420. {
  421.         if (check_is_the_adress_local(history.current())) {
  422.                 RunProgram("/rd/1/quark", history.current());
  423.         } else {
  424.                 CreateFile(WB1.bufsize, WB1.bufpointer, "/tmp0/1/WebView_tmp.htm");
  425.                 if (!EAX) RunProgram("/rd/1/quark", "/tmp0/1/WebView_tmp.htm");
  426.         }
  427. }
  428.  
  429. void EventClearCache()
  430. {
  431.         cache.clear();
  432.         notify(#clear_cache_ok);
  433.         EventRefreshPage();
  434. }
  435.  
  436. void EventCopyLinkToClipboard()
  437. {
  438.         Clipboard__CopyText(GetAbsoluteActiveURL());
  439.         notify("'URL copied to clipboard'O");
  440. }
  441.  
  442. void StopLoading()
  443. {
  444.         if (http.stop()) pause(10);
  445.         prbar.value = 0;
  446. }
  447.  
  448. //rewrite into
  449. //bool strrpl(dword dst, from, into, dst_len);
  450. bool ReplaceSpaceInUrl(dword url, size) {
  451.         unsigned int i, j;
  452.         bool was_changed=false;
  453.         for (i=url+size-3; i>url; i--)
  454.         {
  455.                 if (ESBYTE[i]!=' ') continue;
  456.                 for (j=url+size-3; j>=i; j--) {
  457.                         ESBYTE[j+3]=ESBYTE[j+2];
  458.                         ESBYTE[j+2]=ESBYTE[j+1];
  459.                         ESBYTE[j+1]=ESBYTE[j];
  460.                 }
  461.                 ESBYTE[i] = '%';
  462.                 ESBYTE[i+1] = '2';
  463.                 ESBYTE[i+2] = '0';
  464.                 was_changed = true;
  465.         }
  466.         return was_changed;
  467. }
  468.  
  469. bool HandleUrlFiles(dword _path, _data)
  470. {
  471.         dword url_from_file;
  472.         if (!UrlExtIs(_path, "url")) return false;
  473.         if (! url_from_file = strstri(_data, "URL=")) return false;
  474.         replace_char(url_from_file, '\n', '\0', strlen(url_from_file));
  475.         OpenPage(url_from_file);        
  476.         return true;   
  477. }
  478.  
  479. bool GetLocalFileData(dword _path)
  480. {
  481.         dword data, size;
  482.         read_file(_path, #data, #size);
  483.         if (!HandleUrlFiles(_path, data)) {
  484.                 LoadInternalPage(data, size);
  485.         }
  486.         free(data);
  487.         return true;
  488. }
  489.  
  490. bool GetUrl(dword _http_url)
  491. {
  492.         char new_url_full[URL_SIZE+1];
  493.  
  494.         if (!strncmp(_http_url,"http:",5)) {
  495.                 http.get(_http_url);
  496.                 return true;
  497.         } else if (!strncmp(_http_url,"https://",8)) {
  498.                 strcpy(#new_url_full, "http://gate.aspero.pro/?site=");
  499.                 strncat(#new_url_full, _http_url, URL_SIZE);
  500.                 http.get(#new_url_full);
  501.                 return true;
  502.         }
  503.         return false;
  504. }
  505.  
  506. void OpenPage(dword _open_URL)
  507. {
  508.         char new_url[URL_SIZE+1];
  509.         int unz_id;
  510.  
  511.         StopLoading();
  512.  
  513.         SetOmniboxText(_open_URL);
  514.  
  515.         strncpy(#new_url, _open_URL, URL_SIZE);
  516.  
  517.         //Exclude # from the URL to the load page
  518.         //We will bring it back when we get the buffer
  519.         if (strrchr(#new_url, '#')) {
  520.                 anchors.take_anchor_from(#new_url);
  521.         }
  522.  
  523.         /*
  524.         There could be several possible types of addresses:
  525.         - cached page (only http/https)
  526.         - internal page
  527.         - web page
  528.         - local file
  529.         So we need to detect what incoming address is
  530.         and then halndle it in the propper way.
  531.         */
  532.  
  533.         if (cache.has(#new_url)) {
  534.                 //CACHED PAGE
  535.                 if (cache.current_type==PAGE) {
  536.                         history.add(#new_url);
  537.                         LoadInternalPage(cache.current_buf, cache.current_size);
  538.                 }
  539.                 else {
  540.                         EventDownloadAndOpenImage(#new_url);
  541.                 }
  542.  
  543.         } else if (!strncmp(#new_url,"WebView:",8)) {
  544.                 //INTERNAL PAGE
  545.                 history.add(#new_url);
  546.                 if (streq(#new_url, URL_SERVICE_HOMEPAGE)) LoadInternalPage(#buildin_page_home, sizeof(buildin_page_home));
  547.                 else if (streq(#new_url, URL_SERVICE_HELP)) LoadInternalPage(#buildin_page_help, sizeof(buildin_page_help));
  548.                 else if (streq(#new_url, URL_SERVICE_TEST)) LoadInternalPage(#buildin_page_test, sizeof(buildin_page_test));
  549.                 else if (streq(#new_url, URL_SERVICE_HISTORY)) ShowHistory();
  550.                 else LoadInternalPage(#buildin_page_error, sizeof(buildin_page_error));
  551.  
  552.         } else if (!strncmp(#new_url,"http:",5)) || (!strncmp(#new_url,"https:",6)) {
  553.                 //WEB PAGE
  554.                 if (ReplaceSpaceInUrl(#new_url, URL_SIZE)) {
  555.                         strcpy(#editURL, #new_url);
  556.                 }
  557.  
  558.                 http_get_type = PAGE;
  559.                 GetUrl(#new_url);
  560.  
  561.                 DrawOmnibox();
  562.  
  563.                 if (!http.transfer) {
  564.                         history.add(#new_url);
  565.                         LoadInternalPage(#buildin_page_error, sizeof(buildin_page_error));
  566.                 }
  567.         } else {
  568.                 //LOCAL PAGE
  569.                 history.add(#new_url);
  570.                 if (UrlExtIs(#new_url,".docx")) {
  571.                         DeleteFile("/tmp0/1/temp/word/document.xml");
  572.                         CreateDir("/tmp0/1/temp");
  573.                         unz_id = RunProgram("/sys/unz", sprintf(#param, "-o \"/tmp0/1/temp\" -h \"%s\"", #new_url));
  574.                         while (GetProcessSlot(unz_id)) pause(2);
  575.                         strcpy(#new_url, "/tmp0/1/temp/word/document.xml");
  576.                 }
  577.                 if (!GetLocalFileData(#new_url)) {
  578.                         LoadInternalPage(#buildin_page_error, sizeof(buildin_page_error));
  579.                 }
  580.         }
  581. }
  582.  
  583. dword EventOpenDownloader(dword _url)
  584. {
  585.         //char download_params[URL_SIZE+50];
  586.         return RunProgram("/sys/network/dl", _url);
  587. }
  588.  
  589. bool EventClickAnchor()
  590. {
  591.         dword aURL = links.active_url;
  592.  
  593.         if (anchors.get_pos_by_name(aURL+1)!=-1) {
  594.                 WB1.list.first = anchors.get_pos_by_name(aURL+1);
  595.                 WB1.list.CheckDoesValuesOkey();
  596.                 strcpy(#editURL, history.current());
  597.                 strcat(#editURL, aURL);
  598.                 DrawOmnibox();
  599.                 WB1.DrawPage();
  600.                 return true;
  601.         }
  602.         return false;
  603. }
  604.  
  605. void EventClickLink(dword _target)
  606. {
  607.         char new_url[URL_SIZE+1];
  608.         char new_url_full[URL_SIZE+1];
  609.         dword aURL = GetAbsoluteActiveURL();
  610.         if (!aURL) return;
  611.  
  612.         strcpy(#new_url, aURL);
  613.  
  614.         if (ESBYTE[aURL]=='#') {
  615.                 if (_target == TARGET_SAME_TAB) {
  616.                         EventClickAnchor();
  617.                         return;
  618.                 } else {
  619.                         strcpy(#new_url, history.current());
  620.                         strcat(#new_url, aURL);
  621.                 }
  622.         }
  623.  
  624.         if (_target == TARGET_NEW_TAB) {
  625.                 EventOpenNewTab(#new_url);
  626.                 return;
  627.         }
  628.  
  629.         if (_target == TARGET_NEW_WINDOW) {
  630.                 strcpy(#new_url_full, "-new ");
  631.                 strncat(#new_url_full, #new_url, URL_SIZE);
  632.                 RunProgram(#program_path, #new_url_full);
  633.                 return;
  634.         }
  635.  
  636.         if (!strncmp(#new_url,"mailto:", 7)) || (!strncmp(#new_url,"tel:", 4)) {
  637.                 notify(#new_url);
  638.                 return;
  639.         }
  640.  
  641.         if (http.transfer) {
  642.                 StopLoading();
  643.         }
  644.  
  645.         if (strrchr(#new_url, '#')!=0) {
  646.                 anchors.take_anchor_from(#new_url);
  647.                 OpenPage(#new_url);
  648.                 return;
  649.         }
  650.  
  651.         if (!strncmp(#new_url,"WebView:",8)) {
  652.                 OpenPage(#new_url);
  653.                 return;
  654.         }
  655.  
  656.         if (strncmp(#new_url,"http://",7)!=0) && (strncmp(#new_url,"https://",8)!=0)
  657.         {
  658.                 if (UrlExtIs(#new_url,".htm")!=true) && (UrlExtIs(#new_url,".html")!=true)
  659.                 {      
  660.                         if (strchr(#new_url, '|')) {
  661.                                 ESBYTE[strchr(#new_url, '|')] = NULL;
  662.                                 RunProgram(#new_url, strlen(#new_url)+1+#new_url);
  663.                         } else {
  664.                                 RunProgram("/sys/@open", #new_url);
  665.                         }
  666.                         return;
  667.                 }
  668.         }
  669.         OpenPage(#new_url);
  670. }
  671.  
  672. void EventSubmitOmnibox()
  673. {
  674.         char new_url[URL_SIZE+1];
  675.         if (!editURL[0]) return;
  676.         if (!strncmp(#editURL,"http:",5)) || (editURL[0]=='/')
  677.         || (!strncmp(#editURL,"https:",6)) || (!strncmp(#editURL,"WebView:",8)) {
  678.                 OpenPage(#editURL);
  679.         } else {
  680.                 strcpy(#new_url, "http://");
  681.                 strncat(#new_url, #editURL, URL_SIZE-1);
  682.                 OpenPage(#new_url);
  683.         }
  684. }
  685.  
  686. void LoadInternalPage(dword _bufdata, _in_bufsize){
  687.         if (!_bufdata) || (!_in_bufsize) {
  688.                 LoadInternalPage(#buildin_page_error, sizeof(buildin_page_error));
  689.         } else {
  690.                 WB1.list.first = 0; //scroll page to the top
  691.                 DrawOmnibox();
  692.                 if(!strrchr(#editURL, '#')) {
  693.                         strcat(#editURL, #anchors.current);
  694.                         DrawOmnibox();
  695.                 }
  696.                 render_start_time = GetStartTime();
  697.                 WB1.ParseHtml(_bufdata, _in_bufsize);
  698.                 // REJECTED. Reason: infinite redirect at Google Results.
  699.                 /*
  700.                 if (WB1.redirect) { //<meta http-equiv="refresh" content="0; url=http://site.com">
  701.                         get_absolute_url(#WB1.redirect, history.current());
  702.                         history.back();
  703.                         OpenPage(#WB1.redirect);
  704.                 }
  705.                 */
  706.                 DrawStatusBar(NULL);
  707.                 DrawActiveTab();
  708.                 if (source_mode) {
  709.                         source_mode = false;
  710.                         WB1.custom_encoding = CH_CP866;
  711.                         ShowSource(WB1.bufpointer, _in_bufsize);
  712.                 } else {
  713.                         WB1.DrawPage();
  714.                 }
  715.                 if (WB1.img_url.count) { GetImg(true); DrawOmnibox(); }
  716.         }
  717. }
  718.  
  719. bool UrlExtIs(dword base, ext)
  720. {
  721.         if (!strcmpi(base + strlen(base) - strlen(ext), ext)) return true;
  722.         return false;
  723. }
  724.  
  725. void DrawProgress()
  726. {
  727.         dword pct;
  728.         if (!http.transfer) return;
  729.         if (http_get_type==PAGE) && (prbar.max) pct = prbar.value*30/prbar.max; else pct = 10;
  730.         if (http_get_type==IMG) pct = prbar.value * 70 / prbar.max + 30;
  731.         DrawBar(omnibox_edit.left-1, omnibox_edit.top+20, pct*omnibox_edit.width+16/100, 2, 0x72B7EB);
  732. }
  733.  
  734. void EventShowPageMenu()
  735. {
  736.         open_lmenu(mouse.x, mouse.y, MENU_TOP_LEFT, NULL, #rmb_menu);
  737.         menu_id = VIEW_SOURCE;
  738. }
  739.  
  740. void EventShowLinkMenu()
  741. {
  742.         open_lmenu(mouse.x, mouse.y, MENU_TOP_LEFT, NULL, #link_menu);
  743.         menu_id = IN_NEW_TAB;
  744. }
  745.  
  746. void EventShowMainMenu()
  747. {
  748.         open_lmenu(Form.cwidth - PADDING -4, PADDING + TSZE + 3,
  749.                 MENU_TOP_RIGHT, NULL, #main_menu);
  750.         menu_id = OPEN_FILE;
  751. }
  752.  
  753. void EventShowEncodingsList()
  754. {
  755.         open_lmenu(Form.cwidth-4, Form.cheight - STATUSBAR_H + 12,
  756.                 MENU_BOT_RIGHT, WB1.cur_encoding + 1,
  757.                 "UTF-8\nKOI8-RU\nCP1251\nCP1252\nISO8859-5\nCP866");
  758.         menu_id = ENCODINGS;
  759. }
  760.  
  761. void ProcessMenuClick()
  762. {
  763.         int click_id;
  764.         if (menu_id) {
  765.                 if (click_id = get_menu_click()) {
  766.                         click_id += menu_id - 1;
  767.                         ProcessButtonClick(click_id);
  768.                 }
  769.                 if (!menu_process_id) menu_id = NULL;
  770.         }
  771. }
  772.  
  773. void EventSeachWeb()
  774. {
  775.         char new_url[URL_SIZE+1];
  776.         replace_char(#editURL, ' ', '_', URL_SIZE);
  777.         strcpy(#new_url, "https://www.google.com/search?q=");
  778.         strncat(#new_url, #editURL, URL_SIZE);
  779.         OpenPage(#new_url);
  780. }
  781.  
  782. void EventOpenDialog()
  783. {
  784.         OpenDialog_start stdcall (#o_dialog);
  785.         if (o_dialog.status) {
  786.                 OpenPage(#openfile_path);
  787.         }
  788. }
  789.  
  790. void EventViewSource()
  791. {
  792.         source_mode = true;
  793.         EventOpenNewTab(history.current());
  794. }
  795.  
  796. void EventRefreshPage()
  797. {
  798.         if (http.transfer) {
  799.                 StopLoading();
  800.                 draw_window();
  801.         } else {
  802.                 OpenPage(history.current());
  803.         }
  804. }
  805.  
  806. void EventUpdateBrowser()
  807. {
  808.         dword downloader_id, slot_n;
  809.         dword current_size;
  810.         dword new_size;
  811.  
  812.         draw_window();
  813.  
  814.         downloader_id = EventOpenDownloader(#update_param);
  815.         do {
  816.                 slot_n = GetProcessSlot(downloader_id);
  817.                 pause(10);
  818.         } while (slot_n!=0);
  819.  
  820.         current_size = get_file_size(#program_path);
  821.         new_size = get_file_size("/tmp0/1/Downloads/WebView.com");
  822.  
  823.         if (!new_size) || (new_size<5000) { notify(#update_download_error); return; }
  824.         if (current_size == new_size) { notify(#update_is_current);     return; }
  825.  
  826.         if (CopyFileAtOnce(new_size, "/tmp0/1/Downloads/WebView.com", #program_path)) {
  827.                 notify(#update_can_not_copy);
  828.         } else {
  829.                 notify(#update_ok);
  830.                 RunProgram(#program_path, history.current());
  831.                 ExitProcess();
  832.         }
  833. }
  834.  
  835. void DrawStatusBar(dword _msg)
  836. {
  837.         dword status_y = Form.cheight - STATUSBAR_H + 4;
  838.         dword status_w = Form.cwidth - 90;
  839.         if (Form.status_window>2) return;
  840.         DrawBar(0,Form.cheight - STATUSBAR_H+1, Form.cwidth,STATUSBAR_H-1, sc.work);
  841.         if (_msg) {
  842.                 ESI = math.min(status_w/6, strlen(_msg));
  843.                 WriteText(10, status_y, 0, sc.work_text, _msg);
  844.         }
  845.         DefineHiddenButton(status_w+20, status_y-3, 60, 12, CHANGE_ENCODING);
  846.         WriteTextCenter(status_w+20, status_y, 60, sc.work_text, WB1.cur_encoding*10+#charsets);
  847. }
  848.  
  849. void DrawOmnibox()
  850. {
  851.         int imgxoff;
  852.        
  853.         DrawOvalBorder(omnibox_edit.left-2, omnibox_edit.top-3, omnibox_edit.width+18, 24, sc.work_graph,
  854.                 sc.work_graph, sc.work_graph, sc.work_dark);
  855.         DrawBar(omnibox_edit.left-1, omnibox_edit.top-2, omnibox_edit.width+18, 1, 0xD8DCD8);
  856.         DrawBar(omnibox_edit.left-1, omnibox_edit.top-1, omnibox_edit.width+18, 1, omnibox_edit.color);
  857.         DrawBar(omnibox_edit.left-1, omnibox_edit.top, 1, 22, omnibox_edit.color);
  858.  
  859.         if (omnibox_edit.flags & ed_focus) omnibox_edit.flags = ed_focus; else omnibox_edit.flags = 0;
  860.         EditBox_UpdateText(#omnibox_edit, omnibox_edit.flags);
  861.         edit_box_draw stdcall(#omnibox_edit);
  862.         if (http.transfer) imgxoff = 16*23*3; else imgxoff = 0;
  863.         _PutImage(omnibox_edit.left+omnibox_edit.width+1, omnibox_edit.top-1, 16, 23, imgxoff + #editbox_icons);
  864.         DefineHiddenButton(omnibox_edit.left+omnibox_edit.width-1, omnibox_edit.top-2, 17, 23, REFRESH_BUTTON);
  865.  
  866.         DrawProgress();
  867. }
  868.  
  869. void SetOmniboxText(dword _text)
  870. {
  871.         edit_box_set_text stdcall (#omnibox_edit, _text);
  872.         omnibox_edit.pos = omnibox_edit.flags = 0;
  873.         DrawOmnibox();
  874. }
  875.  
  876. dword GetAbsoluteActiveURL()
  877. {
  878.         char abs_url[URL_SIZE];
  879.         if (links.active_url) {
  880.                 strncpy(#abs_url, links.active_url, URL_SIZE);
  881.                 get_absolute_url(#abs_url, history.current());         
  882.                 return #abs_url;
  883.         }
  884.         return 0;
  885. }
  886.  
  887. void CheckContentType()
  888. {
  889.         char content_type[64];
  890.         if (http.header_field("content-type", #content_type, sizeof(content_type))) // application || image
  891.  
  892.         if (content_type[0] == 'i') {
  893.                 EventDownloadAndOpenImage(http.cur_url);
  894.                 StopLoading();
  895.         }if (content_type[0] == 'a') {
  896.                 EventOpenDownloader(http.cur_url);
  897.                 StopLoading();
  898.         }
  899. }
  900.  
  901. void EventDownloadAndOpenImage(dword _url)
  902. {
  903.         char image_download_url[URL_SIZE];
  904.         strcpy(#image_download_url, "-eo ");
  905.         strncat(#image_download_url, _url, URL_SIZE);
  906.         EventOpenDownloader(#image_download_url);
  907. }
  908.  
  909. void HandleRedirect()
  910. {
  911.         char redirect_url[URL_SIZE];
  912.         http.header_field("location", #redirect_url, URL_SIZE);
  913.         get_absolute_url(#redirect_url, http.cur_url);
  914.         http.hfree();
  915.         if (http_get_type==PAGE) OpenPage(#redirect_url);
  916.         else if (http_get_type==IMG) GetUrl(#redirect_url);
  917. }
  918.  
  919. dword GetImg(bool _new)
  920. {
  921.         int i;
  922.         if (!show_images) return;
  923.         http_get_type = IMG;
  924.  
  925.         for (i = 0; i < WB1.img_url.count; i++)
  926.         {
  927.                 cur_img_url = WB1.img_url.get(i);
  928.                 if (debug_mode) {debug("get img: ");debugln(cur_img_url);}
  929.                 if (cache.has(cur_img_url)==false) {
  930.                         prbar.max = WB1.img_url.count;
  931.                         prbar.value = i;
  932.                         if (GetUrl(cur_img_url)) {DrawStatusBar(cur_img_url); DrawProgress(); return;}
  933.                 }
  934.         }
  935.         if (_new) return;
  936.         DrawOmnibox();
  937.         DrawStatusBar(T_RENDERING);
  938.         WB1.ParseHtml(WB1.bufpointer, WB1.bufsize);
  939.         WB1.DrawPage();
  940.         debugln(sprintf(#param, T_DONE_IN_SEC, GetStartTime()-render_start_time/100));
  941.         DrawStatusBar(NULL);
  942. }
  943.  
  944. stop: