Subversion Repositories Kolibri OS

Rev

Rev 7450 | Rev 7521 | 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--
7422 leency 2
//Copyright 2007-2018 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
6738 leency 10
#define MEMSIZE 4096 * 200
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
7428 leency 34
char version[]="Текстовый браузер 1.8c";
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
7428 leency 49
char version[]="Text-based Browser 1.8c";
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");
130
	if (param) strcpy(#URL, #param); else strcpy(#URL, URL_SERVICE_HOME);
6045 leency 131
	WB1.list.SetFont(8, 14, 10011000b);
5779 leency 132
	WB1.list.no_selection = true;
6978 leency 133
	SetEventMask(EVM_REDRAW + EVM_KEY + EVM_BUTTON + EVM_MOUSE + EVM_MOUSE_FILTER + EVM_STACK);
134
	loop() switch(WaitEvent())
135
	{
136
		case evMouse:
137
			edit_box_mouse stdcall (#address_box);
138
			mouse.get();
7282 leency 139
			if (PageLinks.HoverAndProceed(mouse.x, WB1.list.first + mouse.y))
140
			&& (bufsize) && (mouse.pkm) && (mouse.up) {
141
				if (WB1.list.MouseOver(mouse.x, mouse.y)) EventShowPageMenu(mouse.x, mouse.y);
142
				break;
6978 leency 143
			}
7282 leency 144
			if (WB1.list.MouseScroll(mouse.vert)) WB1.DrawPage();
6978 leency 145
			scrollbar_v_mouse (#scroll_wv);
146
			if (WB1.list.first != scroll_wv.position)
147
			{
148
				WB1.list.first = scroll_wv.position;
149
				WB1.DrawPage();
3067 leency 150
				break;
6978 leency 151
			}
152
			break;
5711 leency 153
 
6978 leency 154
		case evButton:
155
			ProcessEvent(GetButtonID());
156
			break;
5711 leency 157
 
6978 leency 158
		case evKey:
159
			GetKeys();
7506 leency 160
			if (address_box.flags & ed_focus)
6978 leency 161
			{
162
				if (key_ascii == ASCII_KEY_ENTER) ProcessEvent(key_scancode); else {
163
					EAX = key_editbox;
164
					edit_box_key stdcall(#address_box);
5530 leency 165
				}
6978 leency 166
			}
167
			else
168
			{
7422 leency 169
				#define KEY_SCROLL_N 11
170
				if (SCAN_CODE_UP   == key_scancode) for (i=0;i
171
				if (SCAN_CODE_DOWN == key_scancode) for (i=0;i
6978 leency 172
				if (WB1.list.ProcessKey(key_scancode)) WB1.DrawPage();
173
				else ProcessEvent(key_scancode);
174
			}
175
			break;
176
 
177
		case evReDraw:
7450 leency 178
			if (menu.cur_y) {
179
				ProcessEvent(menu.cur_y);
180
				menu.cur_y = 0;
6978 leency 181
			}
182
			DefineAndDrawWindow(GetScreenWidth()-800/2-random(80),GetScreenHeight()-600/2-random(80),800,600,0x73,col_bg,0,0);
183
			GetProcessInfo(#Form, SelfInfo);
184
			if (Form.status_window>2) { DrawTitle(#header); break; }
185
			if (Form.height<120) { MoveSize(OLD,OLD,OLD,120); break; }
186
			if (Form.width<280) { MoveSize(OLD,OLD,280,OLD); break; }
187
			Draw_Window();
188
			break;
189
 
190
		case evNetwork:
7281 leency 191
			if (http.transfer > 0) {
192
				http.receive();
193
				EventUpdateProgressBar();
194
				if (http.receive_result == 0) {
6978 leency 195
					// Handle redirects
7281 leency 196
					if (http.status_code >= 300) && (http.status_code < 400)
4686 leency 197
					{
6978 leency 198
						redirected++;
7282 leency 199
						if (redirected>5)
4563 leency 200
						{
7282 leency 201
							notify("'Too many redirects.' -E");
202
							StopLoading();
4558 hidnplayr 203
						}
4563 leency 204
						else
205
						{
7282 leency 206
							http.handle_redirect();
207
							http.free();
208
							GetAbsoluteURL(#http.redirect_url);
209
							history.back();
210
							strcpy(#editURL, #URL);
211
							DrawEditBoxWebView();
212
							OpenPage();
4558 hidnplayr 213
						}
7282 leency 214
						break;
6978 leency 215
					}
7282 leency 216
					redirected = 0;
6978 leency 217
					// Loading the page is complete, free resources
7282 leency 218
					history.add(#URL);
219
					bufpointer = http.content_pointer;
220
					bufsize = http.content_received;
221
					http.free();
222
					SetPageDefaults();
223
					ShowPage();
4536 leency 224
				}
6978 leency 225
			}
226
	}
3067 leency 227
}
228
 
229
void SetElementSizes()
230
{
6731 leency 231
	address_box.top = TOOLBAR_H/2-10;
6794 leency 232
	basic_line_h = calc(WB1.list.font_h * 130) / 100;
6731 leency 233
	address_box.width = Form.cwidth - address_box.left - 50;
6803 leency 234
	WB1.list.SetSizes(0, TOOLBAR_H, Form.width - 10 - scroll_wv.size_x,
6794 leency 235
		Form.cheight - TOOLBAR_H - STATUSBAR_H, basic_line_h);
236
	WB1.list.wheel_size = 7 * basic_line_h;
5710 leency 237
	WB1.list.column_max = WB1.list.w - scroll_wv.size_x / WB1.list.font_w;
6794 leency 238
	WB1.list.visible = WB1.list.h;
6045 leency 239
	if (WB1.list.w!=WB1.DrawBuf.bufw) {
6803 leency 240
		WB1.DrawBuf.Init(WB1.list.x, WB1.list.y, WB1.list.w, 32700);
6698 leency 241
		ProcessEvent(REFRESH_BUTTON);
6045 leency 242
	}
3067 leency 243
}
244
 
5981 leency 245
 
5982 leency 246
 
3067 leency 247
void Draw_Window()
248
{
5772 leency 249
	DrawBar(0,0, Form.cwidth,TOOLBAR_H-2, panel_color);
5718 leency 250
	DrawBar(0,TOOLBAR_H-2, Form.cwidth,1, 0xD7D0D3);
4677 leency 251
	DrawBar(0,TOOLBAR_H-1, Form.cwidth,1, border_color);
3067 leency 252
	SetElementSizes();
6731 leency 253
	DrawRectangle(address_box.left-3, address_box.top-3, address_box.width+5, 25,border_color);
254
	DefineButton(address_box.left-52, address_box.top-2, 24, skin.h-2, BACK_BUTTON+BT_HIDE, 0);
255
	DefineButton(address_box.left-27, address_box.top-2, 24, skin.h-2, FORWARD_BUTTON+BT_HIDE, 0);
7428 leency 256
	img_draw stdcall(skin.image, address_box.left-53, address_box.top-3, 51, skin.h, 0, SKIN_Y);
5718 leency 257
	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 258
	DefineButton(Form.cwidth-27, address_box.top-3, 23, skin.h-1, SANDWICH_BUTTON+BT_HIDE, 0);
7428 leency 259
	img_draw stdcall(skin.image, Form.cwidth-24, address_box.top-3, 17, skin.h, 102, SKIN_Y);
4677 leency 260
	DrawBar(0,Form.cheight - STATUSBAR_H, Form.cwidth,STATUSBAR_H, col_bg);
261
	DrawBar(0,Form.cheight - STATUSBAR_H, Form.cwidth,1, border_color);
7282 leency 262
	if (!header)
263
		OpenPage();
264
	else {
265
		WB1.DrawPage();
266
		DrawEditBoxWebView();
267
	}
4692 leency 268
	DrawRectangle(scroll_wv.start_x, scroll_wv.start_y, scroll_wv.size_x, scroll_wv.size_y-1, scroll_wv.bckg_col);
4693 leency 269
	DrawProgress();
3067 leency 270
}
271
 
272
 
6698 leency 273
void ProcessEvent(dword id__)
4413 leency 274
{
6698 leency 275
	switch (id__)
4413 leency 276
	{
6698 leency 277
		case 1:
278
			ExitProcess();
279
			return;
5711 leency 280
		case SCAN_CODE_BS:
5718 leency 281
		case BACK_BUTTON:
6021 leency 282
			if (history.back()) {
283
				strcpy(#URL, history.current());
5978 leency 284
				OpenPage();
285
			}
5711 leency 286
			return;
5718 leency 287
		case FORWARD_BUTTON:
6021 leency 288
			if (history.forward()) {
289
				strcpy(#URL, history.current());
5978 leency 290
				OpenPage();
291
			}
5711 leency 292
			return;
5718 leency 293
		case GOTOURL_BUTTON:
5772 leency 294
		case SCAN_CODE_ENTER:
7282 leency 295
			if (!editURL[0]) {
296
				strcpy(#URL, URL_SERVICE_HOME);
297
			}
298
			else if (!strncmp(#editURL,"http:",5)) || (editURL[0]=='/')
6730 leency 299
			|| (!strncmp(#editURL,"https:",6)) || (!strncmp(#editURL,"WebView:",8))
5772 leency 300
			{
301
				strcpy(#URL, #editURL);
302
			}
5711 leency 303
			else
5772 leency 304
			{
5803 leency 305
				strlcpy(#URL,"http://",7);
5772 leency 306
				strcat(#URL, #editURL);
307
			}
5711 leency 308
			OpenPage();
309
			return;
5718 leency 310
		case REFRESH_BUTTON:
7281 leency 311
			if (http.transfer > 0)
5713 leency 312
			{
313
				StopLoading();
314
				Draw_Window();
315
			}
316
			else OpenPage();
317
			return;
5718 leency 318
		case SANDWICH_BUTTON:
6795 leency 319
			EventShowPageMenu(Form.cwidth - 215, TOOLBAR_H-6);
4415 leency 320
			return;
5718 leency 321
		case VIEW_SOURCE:
322
			WB1.list.first = 0;
323
			ShowSource();
5773 leency 324
			WB1.LoadInternalPage(bufpointer, bufsize);
5718 leency 325
			break;
326
		case EDIT_SOURCE:
7282 leency 327
			if (!strncmp(#URL,"http",4))
5718 leency 328
			{
7227 leency 329
				CreateFile(bufsize, bufpointer, "/tmp0/1/WebView_tmp.htm");
5718 leency 330
				if (!EAX) RunProgram("/rd/1/tinypad", "/tmp0/1/WebView_tmp.htm");
331
			}
332
			else RunProgram("/rd/1/tinypad", #URL);
4415 leency 333
			return;
7037 leency 334
		// case FREE_IMG_CACHE:
335
		// 	ImgCache.Free();
336
		// 	notify(IMAGES_CACHE_CLEARED);
337
		// 	WB1.DrawPage();
338
		// 	return;
5718 leency 339
		case VIEW_HISTORY:
4677 leency 340
			strcpy(#URL, URL_SERVICE_HISTORY);
4544 leency 341
			OpenPage();
342
			return;
5718 leency 343
		case DOWNLOAD_MANAGER:
5519 leency 344
			if (!downloader_opened) {
6001 leency 345
				downloader_edit = NULL;
5519 leency 346
				CreateThread(#Downloader,#downloader_stak+4092);
347
			}
4413 leency 348
			return;
7282 leency 349
		case COPY_LINK_URL:
7037 leency 350
			Clipboard__CopyText(PageLinks.GetURL(PageLinks.active));
351
			notify("'URL copied to clipboard'O");
352
			return;
7208 leency 353
		case DOWNLOAD_LINK_CONTENTS:
354
			if (!downloader_opened) {
355
				strcpy(#downloader_edit, PageLinks.GetURL(PageLinks.active));
356
				CreateThread(#Downloader,#downloader_stak+4092);
357
			}
358
			return;
7282 leency 359
		case SCAN_CODE_F12:
360
			debug_mode ^= 1;
361
			if (debug_mode) notify("'Debug mode ON'-I");
362
			else notify("'Debug mode OFF'-I");
363
			return;
364
		case SCAN_CODE_F11:
365
			old_tag_parser_mode ^= 1;
366
			if (old_tag_parser_mode) notify("'Old tag parser ON'-I");
367
			else notify("'Old tag parser OFF'-I");
368
			return;
4413 leency 369
	}
370
}
371
 
4636 leency 372
void StopLoading()
373
{
7281 leency 374
	if (http.transfer)
4647 leency 375
	{
7281 leency 376
		EAX = http.transfer;
4647 leency 377
		EAX = EAX.http_msg.content_ptr;		// get pointer to data
378
		$push	EAX							// save it on the stack
7281 leency 379
		http_free stdcall (http.transfer);	// abort connection
4647 leency 380
		$pop	EAX
5631 pavelyakov 381
		free(EAX);						// free data
7281 leency 382
		http.transfer=0;
4647 leency 383
		bufsize = 0;
5631 pavelyakov 384
		bufpointer = free(bufpointer);
4647 leency 385
	}
5519 leency 386
	wv_progress_bar.value = 0;
6731 leency 387
	DrawEditBoxWebView();
4645 leency 388
}
389
 
390
void SetPageDefaults()
391
{
392
	strcpy(#header, #version);
393
	WB1.list.count = WB1.list.first = 0;
5704 leency 394
	cur_encoding = CH_NULL;
4645 leency 395
	if (o_bufpointer) o_bufpointer = free(o_bufpointer);
4636 leency 396
}
397
 
4416 leency 398
void OpenPage()
399
{
7282 leency 400
	char getUrl[sizeof(URL)];
4636 leency 401
	StopLoading();
4718 leency 402
	souce_mode = false;
4416 leency 403
	strcpy(#editURL, #URL);
6021 leency 404
	history.add(#URL);
5631 pavelyakov 405
	if (!strncmp(#URL,"WebView:",8))
4692 leency 406
	{
407
		SetPageDefaults();
5747 leency 408
		if (!strcmp(#URL, URL_SERVICE_HOME)) WB1.LoadInternalPage(#homepage, sizeof(homepage));
5631 pavelyakov 409
		else if (!strcmp(#URL, URL_SERVICE_HISTORY)) ShowHistory();
6278 leency 410
		DrawEditBoxWebView();
4692 leency 411
		return;
412
	}
7282 leency 413
	if (!strncmp(#URL,"http:",5)) || (!strncmp(#URL,"https://",8))
4416 leency 414
	{
7428 leency 415
		img_draw stdcall(skin.image, address_box.left+address_box.width+1, address_box.top-3, 17, skin.h, 68, SKIN_Y);
7282 leency 416
 
417
		if (!strncmp(#URL,"http:",5)) {
418
			http.get(#URL);
419
		}
420
		if (!strncmp(#URL,"https://",8)) {
421
			sprintf(#getUrl, "http://gate.aspero.pro/?site=%s", #URL);
422
			http.get(#getUrl);
423
		}
424
		//http.get(#URL);
7281 leency 425
		if (!http.transfer)
4646 leency 426
		{
427
			StopLoading();
428
			bufsize = 0;
5631 pavelyakov 429
			bufpointer = free(bufpointer);
4646 leency 430
			ShowPage();
431
			return;
432
		}
4416 leency 433
	}
4636 leency 434
	else
435
	{
436
		file_size stdcall (#URL);
437
		bufsize = EBX;
4650 leency 438
		if (bufsize)
439
		{
5631 pavelyakov 440
			free(bufpointer);
441
			bufpointer = malloc(bufsize);
4650 leency 442
			SetPageDefaults();
4718 leency 443
			ReadFile(0, bufsize, bufpointer, #URL);
4650 leency 444
		}
4645 leency 445
		ShowPage();
4636 leency 446
	}
4416 leency 447
}
4415 leency 448
 
6278 leency 449
DrawEditBoxWebView()
4508 leency 450
{
7428 leency 451
	int skin_x_offset;
6731 leency 452
	DrawBar(address_box.left-2, address_box.top-2, address_box.width+3, 2, address_box.color);
453
	DrawBar(address_box.left-2, address_box.top, 2, 22, address_box.color);
7506 leency 454
	//address_box.size = address_box.pos = address_box.shift = address_box.shift_old = strlen(#editURL);
455
	//address_box.offset = 0;
456
	EditBox_UpdateText(#address_box, address_box.flags);
4508 leency 457
	edit_box_draw stdcall(#address_box);
7428 leency 458
	if (http.transfer > 0) skin_x_offset = 68; else skin_x_offset = 51;
459
	img_draw stdcall(skin.image, address_box.left+address_box.width+1, address_box.top-3, 17, skin.h, skin_x_offset, SKIN_Y);
4718 leency 460
}
4415 leency 461
 
4718 leency 462
 
463
void ShowPage()
464
{
6278 leency 465
	DrawEditBoxWebView();
4540 leency 466
	if (!bufsize)
4508 leency 467
	{
7281 leency 468
		if (http.transfer) WB1.LoadInternalPage(#loading, sizeof(loading));
5773 leency 469
		else WB1.LoadInternalPage(#page_not_found, sizeof(page_not_found));
4508 leency 470
	}
471
	else
5768 leency 472
	{
5766 leency 473
		WB1.Prepare();
5768 leency 474
	}
4508 leency 475
}
476
 
5493 leency 477
byte UrlExtIs(dword ext)
478
{
5631 pavelyakov 479
	if (!strcmpi(#URL + strlen(#URL) - strlen(ext), ext)) return true;
480
	return false;
5493 leency 481
}
4508 leency 482
 
5772 leency 483
void DrawProgress()
484
{
7282 leency 485
	dword persent;
7281 leency 486
	if (http.transfer == 0) return;
7282 leency 487
	if (wv_progress_bar.max) persent = wv_progress_bar.value*100/wv_progress_bar.max; else persent = 10;
488
	DrawBar(address_box.left-2, address_box.top+20, persent*address_box.width/100, 2, wv_progress_bar.progress_color);
5772 leency 489
}
5746 leency 490
 
6931 leency 491
 
6803 leency 492
char anchor[256];
5774 leency 493
void ClickLink()
494
{
7281 leency 495
	if (http.transfer > 0)
5774 leency 496
	{
497
		StopLoading();
6021 leency 498
		history.back();
5774 leency 499
	}
7282 leency 500
	strcpy(#URL, PageLinks.GetURL(PageLinks.active));
5774 leency 501
	//#1
502
	if (URL[0] == '#')
503
	{
6730 leency 504
		if (URL[1] == NULL) {
505
			WB1.list.first = 0;
506
			strcpy(#URL, history.current());
507
		}
508
		else {
509
			strlcpy(#anchor, #URL+strrchr(#URL, '#'), sizeof(anchor));
510
			strcpy(#URL, history.current());
511
		}
512
		ShowPage();
5774 leency 513
		return;
514
	}
515
	//liner.ru#1
6730 leency 516
	if (strrchr(#URL, '#')!=0)
5774 leency 517
	{
6803 leency 518
		strlcpy(#anchor, #URL+strrchr(#URL, '#'), sizeof(anchor));
5774 leency 519
		URL[strrchr(#URL, '#')-1] = 0x00;
520
	}
6730 leency 521
 
522
	if (!strncmp(#URL,"mailto:", 7))
523
	{
524
		notify(#URL);
525
		strcpy(#editURL, history.current());
526
		strcpy(#URL, history.current());
527
		return;
528
	}
529
 
5990 leency 530
	GetAbsoluteURL(#URL);
6730 leency 531
 
7282 leency 532
	if (strncmp(#URL,"http://",7)!=0) && (strncmp(#URL,"https://",8)!=0)
5774 leency 533
	{
6730 leency 534
		if (UrlExtIs(".htm")!=true) && (UrlExtIs(".html")!=true)
535
		{
7422 leency 536
			if (strchr(#URL, '|')) {
537
				ESBYTE[strchr(#URL, '|')] = NULL;
538
				RunProgram(#URL, strlen(#URL)+1+#URL);
539
			}
540
			else {
541
				RunProgram("/sys/@open", #URL);
542
			}
6730 leency 543
			strcpy(#editURL, history.current());
544
			strcpy(#URL, history.current());
545
			return;
546
		}
547
	}
548
	else
549
	{
550
		if (UrlExtIs(".png")==true) || (UrlExtIs(".gif")==true) || (UrlExtIs(".jpg")==true)
6794 leency 551
		|| (UrlExtIs(".zip")==true) || (UrlExtIs(".kex")==true) || (UrlExtIs(".pdf")==true)
552
		|| (UrlExtIs(".7z")==true) {
6986 leency 553
			if (!downloader_opened) {
554
				strcpy(#downloader_edit, #URL);
555
				CreateThread(#Downloader,#downloader_stak+4092);
556
				strcpy(#editURL, history.current());
557
				strcpy(#URL, history.current());
558
			}
559
			else notify("'WebView\nPlease, start a new download only when previous ended.'Et");
6730 leency 560
			return;
5774 leency 561
		}
562
	}
6931 leency 563
	if (open_in_a_new_window)
564
	{
565
		RunProgram(#program_path, #URL);
566
		strcpy(#editURL, history.current());
567
		strcpy(#URL, history.current());
568
	}
569
	else
570
	{
571
		OpenPage();
572
	}
573
	open_in_a_new_window = false;
5774 leency 574
}
575
 
6795 leency 576
void EventShowPageMenu(dword _left, _top)
6782 leency 577
{
578
	menu.show(Form.left+_left-6,Form.top+_top+skin_height+3, 220, #rmb_menu, VIEW_SOURCE);
579
}
580
 
6795 leency 581
void EventShowLinkMenu(dword _left, _top)
582
{
7282 leency 583
	menu.show(Form.left+_left-6,Form.top+_top+skin_height+3, 220, #link_menu, COPY_LINK_URL);
6795 leency 584
}
585
 
7281 leency 586
void EventUpdateProgressBar()
587
{
588
	wv_progress_bar.max = http.content_length;
589
	if (wv_progress_bar.value != http.content_received)
590
	{
591
		wv_progress_bar.value = http.content_received;
592
		DrawProgress();
593
	}
594
}
6795 leency 595
 
596
DrawStatusBar(dword _status_text)
597
{
598
	status_text.start_x = wv_progress_bar.left + wv_progress_bar.width + 10;
599
	status_text.start_y = Form.cheight - STATUSBAR_H + 3;
600
	status_text.area_size_x = Form.cwidth - status_text.start_x -3;
601
	DrawBar(status_text.start_x, status_text.start_y, status_text.area_size_x, 9, col_bg);
602
	status_text.text_pointer = _status_text;
603
	PathShow_prepare stdcall(#status_text);
604
	PathShow_draw stdcall(#status_text);
605
}
606
 
5631 pavelyakov 607
stop: