Subversion Repositories Kolibri OS

Rev

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