Subversion Repositories Kolibri OS

Rev

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