Subversion Repositories Kolibri OS

Rev

Rev 8363 | Rev 8392 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

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