Subversion Repositories Kolibri OS

Rev

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