Subversion Repositories Kolibri OS

Rev

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