Subversion Repositories Kolibri OS

Rev

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

Rev Author Line No. Line
3067 leency 1
//HTML Viewer in C--
7739 leency 2
//Copyright 2007-2020 by Veliant & Leency
6978 leency 3
//Asper, lev, Lrz, Barsuk, Nable, hidnplayr...
3067 leency 4
 
4085 leency 5
#ifndef AUTOBUILD
6
	#include "lang.h--"
7
#endif
8
 
3107 leency 9
//libraries
7738 leency 10
#define MEMSIZE 1024 * 800
5499 leency 11
#include "..\lib\gui.h"
4508 leency 12
#include "..\lib\draw_buf.h"
13
#include "..\lib\list_box.h"
14
#include "..\lib\cursor.h"
5978 leency 15
#include "..\lib\collection.h"
6795 leency 16
#include "..\lib\random.h"
7037 leency 17
#include "..\lib\clipboard.h"
5981 leency 18
 
7437 leency 19
// *.obj libraries
5499 leency 20
#include "..\lib\obj\box_lib.h"
7049 leency 21
#include "..\lib\obj\libio.h"
22
#include "..\lib\obj\libimg.h"
5499 leency 23
#include "..\lib\obj\http.h"
5690 leency 24
#include "..\lib\obj\iconv.h"
5408 leency 25
//useful patterns
5978 leency 26
#include "..\lib\patterns\history.h"
6058 leency 27
#include "..\lib\patterns\http_downloader.h"
5408 leency 28
 
7281 leency 29
_http http = {0, 0, 0, 0, 0, 0, 0};
30
 
6698 leency 31
char homepage[] = FROM "html\\homepage.htm""\0";
4677 leency 32
 
4026 leency 33
#ifdef LANG_RUS
7742 leency 34
char version[]="Текстовый браузер 1.84";
6045 leency 35
?define IMAGES_CACHE_CLEARED "Кэш картинок очищен"
36
?define T_LAST_SLIDE "Это последний слайд"
37
char loading[] = "Загрузка страницы...
";
6698 leency 38
char page_not_found[] = FROM "html\\page_not_found_ru.htm""\0";
6045 leency 39
char accept_language[]= "Accept-Language: ru\n";
40
char rmb_menu[] =
41
"Посмотреть исходник
42
Редактировать исходник
43
История
44
Менеджер загрузок";
7037 leency 45
char link_menu[] =
7208 leency 46
"Копировать ссылку
47
Скачать содержимое ссылки";
4026 leency 48
#else
7742 leency 49
char version[]="Text-based Browser 1.84";
6045 leency 50
?define IMAGES_CACHE_CLEARED "Images cache cleared"
51
?define T_LAST_SLIDE "This slide is the last"
52
char loading[] = "Loading...
";
6698 leency 53
char page_not_found[] = FROM "html\\page_not_found_en.htm""\0";
6045 leency 54
char accept_language[]= "Accept-Language: en\n";
55
char rmb_menu[] =
56
"View source
57
Edit source
58
History
59
Download Manager";
7037 leency 60
char link_menu[] =
7208 leency 61
"Copy link
62
Download link contents";
4026 leency 63
#endif
64
 
6795 leency 65
 
5773 leency 66
#define URL_SERVICE_HISTORY "WebView://history"
67
#define URL_SERVICE_HOME "WebView://home"
68
#define URL_SERVICE_SOURCE "WebView://source:"
5631 pavelyakov 69
 
3067 leency 70
proc_info Form;
71
 
5772 leency 72
//char search_path[]="http://nigma.ru/index.php?s=";
4558 hidnplayr 73
int redirected = 0;
3067 leency 74
 
4074 leency 75
char stak[4096];
5640 pavelyakov 76
 
4026 leency 77
int action_buf;
78
 
6731 leency 79
dword TOOLBAR_H = 40;
5519 leency 80
dword STATUSBAR_H = 15;
4677 leency 81
 
7425 leency 82
dword col_bg = 0xE3E2E2;
83
dword panel_color  = 0xE3E2E2;
84
dword border_color = 0x8C8C8C;
85
 
7282 leency 86
bool debug_mode = false;
87
bool old_tag_parser_mode = false;
88
 
5718 leency 89
progress_bar wv_progress_bar;
6931 leency 90
bool souce_mode = false;
91
bool open_in_a_new_window = false;
4677 leency 92
 
5718 leency 93
enum {
94
	BACK_BUTTON=1000,
95
	FORWARD_BUTTON,
96
	REFRESH_BUTTON,
97
	GOTOURL_BUTTON,
6795 leency 98
	SANDWICH_BUTTON,
5768 leency 99
	VIEW_SOURCE=1100,
5718 leency 100
	EDIT_SOURCE,
101
	VIEW_HISTORY,
7037 leency 102
	//FREE_IMG_CACHE,
6795 leency 103
	DOWNLOAD_MANAGER,
7282 leency 104
	COPY_LINK_URL=1200,
7208 leency 105
	DOWNLOAD_LINK_CONTENTS,
5718 leency 106
};
107
 
4411 leency 108
#include "..\TWB\TWB.c"
4636 leency 109
#include "history.h"
4718 leency 110
#include "show_src.h"
6001 leency 111
#include "download_manager.h"
3067 leency 112
 
4534 leency 113
char editURL[sizeof(URL)];
7506 leency 114
edit_box address_box = {250,60,30,0xffffff,0x94AECE,0xffffff,0xffffff,0x10000000,sizeof(URL)-2,#editURL,0,2,19,19};
4534 leency 115
 
7428 leency 116
#define SKIN_Y 24
4534 leency 117
 
3067 leency 118
void main()
119
{
7422 leency 120
	int i;
5626 leency 121
	load_dll(boxlib, #box_lib_init,0);
122
	load_dll(libio, #libio_init,1);
123
	load_dll(libimg, #libimg_init,1);
124
	load_dll(libHTTP, #http_lib_init,1);
5690 leency 125
	load_dll(iconv_lib, #iconv_open,0);
7428 leency 126
	Libimg_LoadImage(#skin, "/sys/toolbar.png");
7437 leency 127
	skin.h = 26;
7425 leency 128
	wv_progress_bar.progress_color = 0x72B7EB;
5772 leency 129
	CreateDir("/tmp0/1/downloads");
7521 leency 130
	if (param) && (param[0]=='-') && (param[1]=='d') {
131
		strcpy(#downloader_edit, #param+3);
132
		CreateThread(#Downloader,#downloader_stak+4092);
133
		ExitProcess();
134
	}
135
	else if (param) strcpy(#URL, #param); else strcpy(#URL, URL_SERVICE_HOME);
6045 leency 136
	WB1.list.SetFont(8, 14, 10011000b);
5779 leency 137
	WB1.list.no_selection = true;
6978 leency 138
	SetEventMask(EVM_REDRAW + EVM_KEY + EVM_BUTTON + EVM_MOUSE + EVM_MOUSE_FILTER + EVM_STACK);
139
	loop() switch(WaitEvent())
140
	{
141
		case evMouse:
142
			edit_box_mouse stdcall (#address_box);
143
			mouse.get();
7282 leency 144
			if (PageLinks.HoverAndProceed(mouse.x, WB1.list.first + mouse.y))
145
			&& (bufsize) && (mouse.pkm) && (mouse.up) {
146
				if (WB1.list.MouseOver(mouse.x, mouse.y)) EventShowPageMenu(mouse.x, mouse.y);
147
				break;
6978 leency 148
			}
7282 leency 149
			if (WB1.list.MouseScroll(mouse.vert)) WB1.DrawPage();
6978 leency 150
			scrollbar_v_mouse (#scroll_wv);
151
			if (WB1.list.first != scroll_wv.position)
152
			{
153
				WB1.list.first = scroll_wv.position;
154
				WB1.DrawPage();
3067 leency 155
				break;
6978 leency 156
			}
157
			break;
5711 leency 158
 
6978 leency 159
		case evButton:
160
			ProcessEvent(GetButtonID());
161
			break;
5711 leency 162
 
6978 leency 163
		case evKey:
164
			GetKeys();
7742 leency 165
			if (key_modifier&KEY_LCTRL) || (key_modifier&KEY_RCTRL) {
166
				if (key_scancode == SCAN_CODE_KEY_H) ProcessEvent(VIEW_HISTORY);
167
				if (key_scancode == SCAN_CODE_KEY_U) ProcessEvent(VIEW_SOURCE);
168
				if (key_scancode == SCAN_CODE_KEY_T)
169
				|| (key_scancode == SCAN_CODE_KEY_N) RunProgram(#program_path, NULL);
170
				if (key_scancode == SCAN_CODE_KEY_W) ExitProcess();
171
				if (key_scancode == SCAN_CODE_KEY_J) ProcessEvent(DOWNLOAD_MANAGER);
172
			}
7506 leency 173
			if (address_box.flags & ed_focus)
6978 leency 174
			{
7742 leency 175
				if (key_scancode == SCAN_CODE_ENTER) {
176
					ProcessEvent(key_scancode);
177
				}
178
				else {
6978 leency 179
					EAX = key_editbox;
180
					edit_box_key stdcall(#address_box);
5530 leency 181
				}
6978 leency 182
			}
183
			else
184
			{
7422 leency 185
				#define KEY_SCROLL_N 11
186
				if (SCAN_CODE_UP   == key_scancode) for (i=0;i
187
				if (SCAN_CODE_DOWN == key_scancode) for (i=0;i
6978 leency 188
				if (WB1.list.ProcessKey(key_scancode)) WB1.DrawPage();
189
				else ProcessEvent(key_scancode);
190
			}
191
			break;
192
 
193
		case evReDraw:
7450 leency 194
			if (menu.cur_y) {
195
				ProcessEvent(menu.cur_y);
196
				menu.cur_y = 0;
6978 leency 197
			}
198
			DefineAndDrawWindow(GetScreenWidth()-800/2-random(80),GetScreenHeight()-600/2-random(80),800,600,0x73,col_bg,0,0);
199
			GetProcessInfo(#Form, SelfInfo);
200
			if (Form.status_window>2) { DrawTitle(#header); break; }
201
			if (Form.height<120) { MoveSize(OLD,OLD,OLD,120); break; }
202
			if (Form.width<280) { MoveSize(OLD,OLD,280,OLD); break; }
203
			Draw_Window();
204
			break;
205
 
206
		case evNetwork:
7281 leency 207
			if (http.transfer > 0) {
208
				http.receive();
209
				EventUpdateProgressBar();
210
				if (http.receive_result == 0) {
6978 leency 211
					// Handle redirects
7281 leency 212
					if (http.status_code >= 300) && (http.status_code < 400)
4686 leency 213
					{
6978 leency 214
						redirected++;
7282 leency 215
						if (redirected>5)
4563 leency 216
						{
7282 leency 217
							notify("'Too many redirects.' -E");
218
							StopLoading();
4558 hidnplayr 219
						}
4563 leency 220
						else
221
						{
7282 leency 222
							http.handle_redirect();
223
							http.free();
224
							GetAbsoluteURL(#http.redirect_url);
225
							history.back();
226
							strcpy(#editURL, #URL);
227
							DrawEditBoxWebView();
228
							OpenPage();
7742 leency 229
							//ProcessLink(history.current());
4558 hidnplayr 230
						}
7282 leency 231
						break;
6978 leency 232
					}
7282 leency 233
					redirected = 0;
6978 leency 234
					// Loading the page is complete, free resources
7282 leency 235
					history.add(#URL);
236
					bufpointer = http.content_pointer;
237
					bufsize = http.content_received;
238
					http.free();
239
					SetPageDefaults();
240
					ShowPage();
4536 leency 241
				}
6978 leency 242
			}
243
	}
3067 leency 244
}
245
 
246
void SetElementSizes()
247
{
6731 leency 248
	address_box.top = TOOLBAR_H/2-10;
6794 leency 249
	basic_line_h = calc(WB1.list.font_h * 130) / 100;
6731 leency 250
	address_box.width = Form.cwidth - address_box.left - 50;
6803 leency 251
	WB1.list.SetSizes(0, TOOLBAR_H, Form.width - 10 - scroll_wv.size_x,
6794 leency 252
		Form.cheight - TOOLBAR_H - STATUSBAR_H, basic_line_h);
253
	WB1.list.wheel_size = 7 * basic_line_h;
5710 leency 254
	WB1.list.column_max = WB1.list.w - scroll_wv.size_x / WB1.list.font_w;
6794 leency 255
	WB1.list.visible = WB1.list.h;
6045 leency 256
	if (WB1.list.w!=WB1.DrawBuf.bufw) {
7738 leency 257
		WB1.DrawBuf.Init(WB1.list.x, WB1.list.y, WB1.list.w, 800*20);
6698 leency 258
		ProcessEvent(REFRESH_BUTTON);
6045 leency 259
	}
3067 leency 260
}
261
 
5981 leency 262
 
5982 leency 263
 
3067 leency 264
void Draw_Window()
265
{
5772 leency 266
	DrawBar(0,0, Form.cwidth,TOOLBAR_H-2, panel_color);
5718 leency 267
	DrawBar(0,TOOLBAR_H-2, Form.cwidth,1, 0xD7D0D3);
4677 leency 268
	DrawBar(0,TOOLBAR_H-1, Form.cwidth,1, border_color);
3067 leency 269
	SetElementSizes();
6731 leency 270
	DrawRectangle(address_box.left-3, address_box.top-3, address_box.width+5, 25,border_color);
271
	DefineButton(address_box.left-52, address_box.top-2, 24, skin.h-2, BACK_BUTTON+BT_HIDE, 0);
272
	DefineButton(address_box.left-27, address_box.top-2, 24, skin.h-2, FORWARD_BUTTON+BT_HIDE, 0);
7428 leency 273
	img_draw stdcall(skin.image, address_box.left-53, address_box.top-3, 51, skin.h, 0, SKIN_Y);
5718 leency 274
	DefineButton(address_box.left+address_box.width+1, address_box.top-3, 16, skin.h-1, REFRESH_BUTTON+BT_HIDE+BT_NOFRAME, 0);
6731 leency 275
	DefineButton(Form.cwidth-27, address_box.top-3, 23, skin.h-1, SANDWICH_BUTTON+BT_HIDE, 0);
7428 leency 276
	img_draw stdcall(skin.image, Form.cwidth-24, address_box.top-3, 17, skin.h, 102, SKIN_Y);
4677 leency 277
	DrawBar(0,Form.cheight - STATUSBAR_H, Form.cwidth,STATUSBAR_H, col_bg);
278
	DrawBar(0,Form.cheight - STATUSBAR_H, Form.cwidth,1, border_color);
7282 leency 279
	if (!header)
280
		OpenPage();
281
	else {
282
		WB1.DrawPage();
283
		DrawEditBoxWebView();
284
	}
4692 leency 285
	DrawRectangle(scroll_wv.start_x, scroll_wv.start_y, scroll_wv.size_x, scroll_wv.size_y-1, scroll_wv.bckg_col);
4693 leency 286
	DrawProgress();
3067 leency 287
}
288
 
289
 
6698 leency 290
void ProcessEvent(dword id__)
4413 leency 291
{
6698 leency 292
	switch (id__)
4413 leency 293
	{
6698 leency 294
		case 1:
295
			ExitProcess();
296
			return;
5711 leency 297
		case SCAN_CODE_BS:
5718 leency 298
		case BACK_BUTTON:
6021 leency 299
			if (history.back()) {
300
				strcpy(#URL, history.current());
5978 leency 301
				OpenPage();
302
			}
5711 leency 303
			return;
5718 leency 304
		case FORWARD_BUTTON:
6021 leency 305
			if (history.forward()) {
306
				strcpy(#URL, history.current());
5978 leency 307
				OpenPage();
308
			}
5711 leency 309
			return;
5718 leency 310
		case GOTOURL_BUTTON:
5772 leency 311
		case SCAN_CODE_ENTER:
7742 leency 312
			EventSubmitOmnibox();
5711 leency 313
			return;
5718 leency 314
		case REFRESH_BUTTON:
7281 leency 315
			if (http.transfer > 0)
5713 leency 316
			{
317
				StopLoading();
318
				Draw_Window();
319
			}
320
			else OpenPage();
321
			return;
5718 leency 322
		case SANDWICH_BUTTON:
6795 leency 323
			EventShowPageMenu(Form.cwidth - 215, TOOLBAR_H-6);
4415 leency 324
			return;
5718 leency 325
		case VIEW_SOURCE:
326
			WB1.list.first = 0;
327
			ShowSource();
5773 leency 328
			WB1.LoadInternalPage(bufpointer, bufsize);
5718 leency 329
			break;
330
		case EDIT_SOURCE:
7282 leency 331
			if (!strncmp(#URL,"http",4))
5718 leency 332
			{
7227 leency 333
				CreateFile(bufsize, bufpointer, "/tmp0/1/WebView_tmp.htm");
5718 leency 334
				if (!EAX) RunProgram("/rd/1/tinypad", "/tmp0/1/WebView_tmp.htm");
335
			}
336
			else RunProgram("/rd/1/tinypad", #URL);
4415 leency 337
			return;
7037 leency 338
		// case FREE_IMG_CACHE:
339
		// 	ImgCache.Free();
340
		// 	notify(IMAGES_CACHE_CLEARED);
341
		// 	WB1.DrawPage();
342
		// 	return;
5718 leency 343
		case VIEW_HISTORY:
4677 leency 344
			strcpy(#URL, URL_SERVICE_HISTORY);
4544 leency 345
			OpenPage();
346
			return;
5718 leency 347
		case DOWNLOAD_MANAGER:
5519 leency 348
			if (!downloader_opened) {
6001 leency 349
				downloader_edit = NULL;
5519 leency 350
				CreateThread(#Downloader,#downloader_stak+4092);
351
			}
4413 leency 352
			return;
7282 leency 353
		case COPY_LINK_URL:
7037 leency 354
			Clipboard__CopyText(PageLinks.GetURL(PageLinks.active));
355
			notify("'URL copied to clipboard'O");
356
			return;
7208 leency 357
		case DOWNLOAD_LINK_CONTENTS:
358
			if (!downloader_opened) {
359
				strcpy(#downloader_edit, PageLinks.GetURL(PageLinks.active));
360
				CreateThread(#Downloader,#downloader_stak+4092);
361
			}
362
			return;
7282 leency 363
		case SCAN_CODE_F12:
364
			debug_mode ^= 1;
365
			if (debug_mode) notify("'Debug mode ON'-I");
366
			else notify("'Debug mode OFF'-I");
367
			return;
368
		case SCAN_CODE_F11:
369
			old_tag_parser_mode ^= 1;
370
			if (old_tag_parser_mode) notify("'Old tag parser ON'-I");
371
			else notify("'Old tag parser OFF'-I");
372
			return;
4413 leency 373
	}
374
}
375
 
4636 leency 376
void StopLoading()
377
{
7281 leency 378
	if (http.transfer)
4647 leency 379
	{
7281 leency 380
		EAX = http.transfer;
4647 leency 381
		EAX = EAX.http_msg.content_ptr;		// get pointer to data
382
		$push	EAX							// save it on the stack
7281 leency 383
		http_free stdcall (http.transfer);	// abort connection
4647 leency 384
		$pop	EAX
5631 pavelyakov 385
		free(EAX);						// free data
7281 leency 386
		http.transfer=0;
4647 leency 387
		bufsize = 0;
5631 pavelyakov 388
		bufpointer = free(bufpointer);
4647 leency 389
	}
5519 leency 390
	wv_progress_bar.value = 0;
6731 leency 391
	DrawEditBoxWebView();
4645 leency 392
}
393
 
394
void SetPageDefaults()
395
{
396
	strcpy(#header, #version);
397
	WB1.list.count = WB1.list.first = 0;
5704 leency 398
	cur_encoding = CH_NULL;
4645 leency 399
	if (o_bufpointer) o_bufpointer = free(o_bufpointer);
4636 leency 400
}
401
 
7720 leency 402
void ReplaceSpaceInUrl() {
403
	int i;
404
	strcpy(#editURL, #URL);
405
	while (i = strchr(#URL, ' '))
406
	{
407
		i -= #URL;
408
		strlcpy(#URL+i+3, #editURL+i+1, sizeof(URL)-i-4);
409
		URL[i] = '%';
410
		URL[i+1] = '2';
411
		URL[i+2] = '0';
412
	}
413
	strcpy(#editURL, #URL);
414
}
415
 
4416 leency 416
void OpenPage()
417
{
7282 leency 418
	char getUrl[sizeof(URL)];
4636 leency 419
	StopLoading();
4718 leency 420
	souce_mode = false;
4416 leency 421
	strcpy(#editURL, #URL);
6021 leency 422
	history.add(#URL);
5631 pavelyakov 423
	if (!strncmp(#URL,"WebView:",8))
4692 leency 424
	{
425
		SetPageDefaults();
5747 leency 426
		if (!strcmp(#URL, URL_SERVICE_HOME)) WB1.LoadInternalPage(#homepage, sizeof(homepage));
5631 pavelyakov 427
		else if (!strcmp(#URL, URL_SERVICE_HISTORY)) ShowHistory();
7739 leency 428
		else {bufsize=0; ShowPage();} //page not found
6278 leency 429
		DrawEditBoxWebView();
4692 leency 430
		return;
431
	}
7282 leency 432
	if (!strncmp(#URL,"http:",5)) || (!strncmp(#URL,"https://",8))
4416 leency 433
	{
7720 leency 434
		ReplaceSpaceInUrl();
7428 leency 435
		img_draw stdcall(skin.image, address_box.left+address_box.width+1, address_box.top-3, 17, skin.h, 68, SKIN_Y);
7282 leency 436
 
437
		if (!strncmp(#URL,"http:",5)) {
438
			http.get(#URL);
439
		}
440
		if (!strncmp(#URL,"https://",8)) {
441
			sprintf(#getUrl, "http://gate.aspero.pro/?site=%s", #URL);
442
			http.get(#getUrl);
443
		}
444
		//http.get(#URL);
7281 leency 445
		if (!http.transfer)
4646 leency 446
		{
447
			StopLoading();
448
			bufsize = 0;
5631 pavelyakov 449
			bufpointer = free(bufpointer);
4646 leency 450
			ShowPage();
451
			return;
452
		}
4416 leency 453
	}
4636 leency 454
	else
455
	{
456
		file_size stdcall (#URL);
7739 leency 457
		if (EBX)
4650 leency 458
		{
7739 leency 459
			bufsize = EBX;
5631 pavelyakov 460
			free(bufpointer);
461
			bufpointer = malloc(bufsize);
4650 leency 462
			SetPageDefaults();
4718 leency 463
			ReadFile(0, bufsize, bufpointer, #URL);
4650 leency 464
		}
4645 leency 465
		ShowPage();
4636 leency 466
	}
4416 leency 467
}
4415 leency 468
 
7742 leency 469
void ProcessAnchor()
4508 leency 470
{
7742 leency 471
	char anchor[256];
472
	int anchor_pos;
473
 
474
	anchor_pos = strrchr(#URL, '#')-1;
475
	strlcpy(#anchor, #URL+anchor_pos, sizeof(anchor));
476
	URL[anchor_pos] = 0x00;
4415 leency 477
 
7742 leency 478
	//#1
479
	if (URL[0] == NULL)
4508 leency 480
	{
7742 leency 481
		if (anchor[1] == NULL) {
482
			WB1.list.first = 0;
483
		}
484
		else {
485
			if (anchors.get_anchor_pos(#anchor+1)!=-1) WB1.list.first = anchors.get_anchor_pos(#anchor+1);
486
		}
487
		strcpy(#URL, history.current());
4508 leency 488
	}
7742 leency 489
	//liner.ru#1
4508 leency 490
	else
5768 leency 491
	{
7742 leency 492
		GetAbsoluteURL(#URL);
493
		OpenPage();
494
		if (anchors.get_anchor_pos(#anchor+1)!=-1) WB1.list.first = anchors.get_anchor_pos(#anchor+1);
5768 leency 495
	}
7742 leency 496
 
497
	WB1.DrawPage();
498
	strcpy(#editURL, #URL);
499
	strcat(#editURL, #anchor);
500
	DrawEditBoxWebView();
4508 leency 501
}
502
 
7742 leency 503
void EventSubmitOmnibox()
5493 leency 504
{
7742 leency 505
	if (!editURL[0]) return;
506
	if (!strncmp(#editURL,"http:",5)) || (editURL[0]=='/')
507
	|| (!strncmp(#editURL,"https:",6)) || (!strncmp(#editURL,"WebView:",8))
508
	{
509
		strcpy(#URL, #editURL);
510
	}
511
	else
512
	{
513
		strlcpy(#URL,"http://",7);
514
		strcat(#URL, #editURL);
515
	}
516
	ProcessLink();
5493 leency 517
}
4508 leency 518
 
7742 leency 519
void EventClickLink()
5772 leency 520
{
7742 leency 521
	strcpy(#URL, PageLinks.GetURL(PageLinks.active));
522
	GetAbsoluteURL(#URL);
523
	ProcessLink();
5772 leency 524
}
5746 leency 525
 
7742 leency 526
void ProcessLink()
5774 leency 527
{
7281 leency 528
	if (http.transfer > 0)
5774 leency 529
	{
530
		StopLoading();
6021 leency 531
		history.back();
5774 leency 532
	}
7742 leency 533
 
534
	if (strrchr(#URL, '#')!=0) {
535
		ProcessAnchor();
5774 leency 536
		return;
537
	}
6730 leency 538
 
7742 leency 539
	if (!strncmp(#URL,"mailto:", 7)) || (!strncmp(#URL,"tel:", 4))
6730 leency 540
	{
541
		notify(#URL);
542
		strcpy(#editURL, history.current());
543
		strcpy(#URL, history.current());
544
		return;
545
	}
546
 
7742 leency 547
	if (!strncmp(#URL,"WebView:",8)) {
548
		OpenPage();
549
		return;
550
	}
6730 leency 551
 
7282 leency 552
	if (strncmp(#URL,"http://",7)!=0) && (strncmp(#URL,"https://",8)!=0)
5774 leency 553
	{
6730 leency 554
		if (UrlExtIs(".htm")!=true) && (UrlExtIs(".html")!=true)
555
		{
7422 leency 556
			if (strchr(#URL, '|')) {
557
				ESBYTE[strchr(#URL, '|')] = NULL;
558
				RunProgram(#URL, strlen(#URL)+1+#URL);
559
			}
560
			else {
561
				RunProgram("/sys/@open", #URL);
562
			}
6730 leency 563
			strcpy(#editURL, history.current());
564
			strcpy(#URL, history.current());
565
			return;
566
		}
567
	}
568
	else
569
	{
570
		if (UrlExtIs(".png")==true) || (UrlExtIs(".gif")==true) || (UrlExtIs(".jpg")==true)
6794 leency 571
		|| (UrlExtIs(".zip")==true) || (UrlExtIs(".kex")==true) || (UrlExtIs(".pdf")==true)
572
		|| (UrlExtIs(".7z")==true) {
6986 leency 573
			if (!downloader_opened) {
574
				strcpy(#downloader_edit, #URL);
575
				CreateThread(#Downloader,#downloader_stak+4092);
576
				strcpy(#editURL, history.current());
577
				strcpy(#URL, history.current());
578
			}
579
			else notify("'WebView\nPlease, start a new download only when previous ended.'Et");
6730 leency 580
			return;
5774 leency 581
		}
582
	}
6931 leency 583
	if (open_in_a_new_window)
584
	{
585
		RunProgram(#program_path, #URL);
586
		strcpy(#editURL, history.current());
587
		strcpy(#URL, history.current());
588
	}
589
	else
590
	{
591
		OpenPage();
592
	}
593
	open_in_a_new_window = false;
5774 leency 594
}
595
 
7742 leency 596
void DrawEditBoxWebView()
597
{
598
	int skin_x_offset;
599
	DrawBar(address_box.left-2, address_box.top-2, address_box.width+3, 2, address_box.color);
600
	DrawBar(address_box.left-2, address_box.top, 2, 22, address_box.color);
601
	//address_box.size = address_box.pos = address_box.shift = address_box.shift_old = strlen(#editURL);
602
	//address_box.offset = 0;
603
	EditBox_UpdateText(#address_box, address_box.flags);
604
	edit_box_draw stdcall(#address_box);
605
	if (http.transfer > 0) skin_x_offset = 68; else skin_x_offset = 51;
606
	img_draw stdcall(skin.image, address_box.left+address_box.width+1, address_box.top-3, 17, skin.h, skin_x_offset, SKIN_Y);
607
}
608
 
609
 
610
void ShowPage()
611
{
612
	DrawEditBoxWebView();
613
	if (!bufsize)
614
	{
615
		if (http.transfer) WB1.LoadInternalPage(#loading, sizeof(loading));
616
		else WB1.LoadInternalPage(#page_not_found, sizeof(page_not_found));
617
	}
618
	else
619
	{
620
		WB1.Prepare();
621
	}
622
}
623
 
624
byte UrlExtIs(dword ext)
625
{
626
	if (!strcmpi(#URL + strlen(#URL) - strlen(ext), ext)) return true;
627
	return false;
628
}
629
 
630
void DrawProgress()
631
{
632
	dword persent;
633
	if (http.transfer == 0) return;
634
	if (wv_progress_bar.max) persent = wv_progress_bar.value*100/wv_progress_bar.max; else persent = 10;
635
	DrawBar(address_box.left-2, address_box.top+20, persent*address_box.width/100, 2, wv_progress_bar.progress_color);
636
}
637
 
6795 leency 638
void EventShowPageMenu(dword _left, _top)
6782 leency 639
{
640
	menu.show(Form.left+_left-6,Form.top+_top+skin_height+3, 220, #rmb_menu, VIEW_SOURCE);
641
}
642
 
6795 leency 643
void EventShowLinkMenu(dword _left, _top)
644
{
7282 leency 645
	menu.show(Form.left+_left-6,Form.top+_top+skin_height+3, 220, #link_menu, COPY_LINK_URL);
6795 leency 646
}
647
 
7281 leency 648
void EventUpdateProgressBar()
649
{
650
	wv_progress_bar.max = http.content_length;
651
	if (wv_progress_bar.value != http.content_received)
652
	{
653
		wv_progress_bar.value = http.content_received;
654
		DrawProgress();
655
	}
656
}
6795 leency 657
 
7742 leency 658
void DrawStatusBar(dword _status_text)
6795 leency 659
{
660
	status_text.start_x = wv_progress_bar.left + wv_progress_bar.width + 10;
661
	status_text.start_y = Form.cheight - STATUSBAR_H + 3;
662
	status_text.area_size_x = Form.cwidth - status_text.start_x -3;
663
	DrawBar(status_text.start_x, status_text.start_y, status_text.area_size_x, 9, col_bg);
664
	status_text.text_pointer = _status_text;
665
	PathShow_prepare stdcall(#status_text);
666
	PathShow_draw stdcall(#status_text);
667
}
668
 
5631 pavelyakov 669
stop: