Subversion Repositories Kolibri OS

Rev

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