Subversion Repositories Kolibri OS

Rev

Rev 7428 | Rev 7447 | 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"
6045 leency 16
#include "..\lib\menu.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"
5408 leency 26
//useful patterns
5978 leency 27
#include "..\lib\patterns\history.h"
6058 leency 28
#include "..\lib\patterns\http_downloader.h"
5408 leency 29
 
7281 leency 30
_http http = {0, 0, 0, 0, 0, 0, 0};
31
 
6698 leency 32
char homepage[] = FROM "html\\homepage.htm""\0";
4677 leency 33
 
4026 leency 34
#ifdef LANG_RUS
7428 leency 35
char version[]="Текстовый браузер 1.8c";
6045 leency 36
?define IMAGES_CACHE_CLEARED "Кэш картинок очищен"
37
?define T_LAST_SLIDE "Это последний слайд"
38
char loading[] = "Загрузка страницы...
";
6698 leency 39
char page_not_found[] = FROM "html\\page_not_found_ru.htm""\0";
6045 leency 40
char accept_language[]= "Accept-Language: ru\n";
41
char rmb_menu[] =
42
"Посмотреть исходник
43
Редактировать исходник
44
История
45
Менеджер загрузок";
7037 leency 46
char link_menu[] =
7208 leency 47
"Копировать ссылку
48
Скачать содержимое ссылки";
4026 leency 49
#else
7428 leency 50
char version[]="Text-based Browser 1.8c";
6045 leency 51
?define IMAGES_CACHE_CLEARED "Images cache cleared"
52
?define T_LAST_SLIDE "This slide is the last"
53
char loading[] = "Loading...
";
6698 leency 54
char page_not_found[] = FROM "html\\page_not_found_en.htm""\0";
6045 leency 55
char accept_language[]= "Accept-Language: en\n";
56
char rmb_menu[] =
57
"View source
58
Edit source
59
History
60
Download Manager";
7037 leency 61
char link_menu[] =
7208 leency 62
"Copy link
63
Download link contents";
4026 leency 64
#endif
65
 
6795 leency 66
 
5773 leency 67
#define URL_SERVICE_HISTORY "WebView://history"
68
#define URL_SERVICE_HOME "WebView://home"
69
#define URL_SERVICE_SOURCE "WebView://source:"
5631 pavelyakov 70
 
3067 leency 71
proc_info Form;
72
 
5772 leency 73
//char search_path[]="http://nigma.ru/index.php?s=";
4558 hidnplayr 74
int redirected = 0;
3067 leency 75
 
4074 leency 76
char stak[4096];
5640 pavelyakov 77
 
4026 leency 78
int action_buf;
79
 
6731 leency 80
dword TOOLBAR_H = 40;
5519 leency 81
dword STATUSBAR_H = 15;
4677 leency 82
 
7425 leency 83
dword col_bg = 0xE3E2E2;
84
dword panel_color  = 0xE3E2E2;
85
dword border_color = 0x8C8C8C;
86
 
7282 leency 87
bool debug_mode = false;
88
bool old_tag_parser_mode = false;
89
 
5718 leency 90
progress_bar wv_progress_bar;
6931 leency 91
bool souce_mode = false;
92
bool open_in_a_new_window = false;
4677 leency 93
 
5718 leency 94
enum {
95
	BACK_BUTTON=1000,
96
	FORWARD_BUTTON,
97
	REFRESH_BUTTON,
98
	GOTOURL_BUTTON,
6795 leency 99
	SANDWICH_BUTTON,
5768 leency 100
	VIEW_SOURCE=1100,
5718 leency 101
	EDIT_SOURCE,
102
	VIEW_HISTORY,
7037 leency 103
	//FREE_IMG_CACHE,
6795 leency 104
	DOWNLOAD_MANAGER,
7282 leency 105
	COPY_LINK_URL=1200,
7208 leency 106
	DOWNLOAD_LINK_CONTENTS,
5718 leency 107
};
108
 
4411 leency 109
#include "..\TWB\TWB.c"
4636 leency 110
#include "history.h"
4718 leency 111
#include "show_src.h"
6001 leency 112
#include "download_manager.h"
3067 leency 113
 
4534 leency 114
char editURL[sizeof(URL)];
115
int	mouse_twb;
6731 leency 116
edit_box address_box = {250,60,30,0xffffff,0x94AECE,0xffffff,0xffffff,0x10000000,sizeof(URL),#editURL,#mouse_twb,2,19,19};
4534 leency 117
 
7428 leency 118
#define SKIN_Y 24
4534 leency 119
 
3067 leency 120
void main()
121
{
7422 leency 122
	int i;
5626 leency 123
	load_dll(boxlib, #box_lib_init,0);
124
	load_dll(libio, #libio_init,1);
125
	load_dll(libimg, #libimg_init,1);
126
	load_dll(libHTTP, #http_lib_init,1);
5690 leency 127
	load_dll(iconv_lib, #iconv_open,0);
7428 leency 128
	Libimg_LoadImage(#skin, "/sys/toolbar.png");
7437 leency 129
	skin.h = 26;
7425 leency 130
	wv_progress_bar.progress_color = 0x72B7EB;
5772 leency 131
	CreateDir("/tmp0/1/downloads");
132
	if (param) strcpy(#URL, #param); else strcpy(#URL, URL_SERVICE_HOME);
6045 leency 133
	WB1.list.SetFont(8, 14, 10011000b);
5779 leency 134
	WB1.list.no_selection = true;
6978 leency 135
	SetEventMask(EVM_REDRAW + EVM_KEY + EVM_BUTTON + EVM_MOUSE + EVM_MOUSE_FILTER + EVM_STACK);
136
	loop() switch(WaitEvent())
137
	{
138
		case evMouse:
139
			edit_box_mouse stdcall (#address_box);
140
			mouse.get();
7282 leency 141
			if (PageLinks.HoverAndProceed(mouse.x, WB1.list.first + mouse.y))
142
			&& (bufsize) && (mouse.pkm) && (mouse.up) {
143
				if (WB1.list.MouseOver(mouse.x, mouse.y)) EventShowPageMenu(mouse.x, mouse.y);
144
				break;
6978 leency 145
			}
7282 leency 146
			if (WB1.list.MouseScroll(mouse.vert)) WB1.DrawPage();
6978 leency 147
			scrollbar_v_mouse (#scroll_wv);
148
			if (WB1.list.first != scroll_wv.position)
149
			{
150
				WB1.list.first = scroll_wv.position;
151
				WB1.DrawPage();
3067 leency 152
				break;
6978 leency 153
			}
154
			break;
5711 leency 155
 
6978 leency 156
		case evButton:
157
			ProcessEvent(GetButtonID());
158
			break;
5711 leency 159
 
6978 leency 160
		case evKey:
161
			GetKeys();
162
			if (address_box.flags & 0b10)
163
			{
164
				if (key_ascii == ASCII_KEY_ENTER) ProcessEvent(key_scancode); else {
165
					EAX = key_editbox;
166
					edit_box_key stdcall(#address_box);
5530 leency 167
				}
6978 leency 168
			}
169
			else
170
			{
7422 leency 171
				#define KEY_SCROLL_N 11
172
				if (SCAN_CODE_UP   == key_scancode) for (i=0;i
173
				if (SCAN_CODE_DOWN == key_scancode) for (i=0;i
6978 leency 174
				if (WB1.list.ProcessKey(key_scancode)) WB1.DrawPage();
175
				else ProcessEvent(key_scancode);
176
			}
177
			break;
178
 
179
		case evReDraw:
180
			if (menu.list.cur_y) {
181
				ProcessEvent(menu.list.cur_y);
182
				menu.list.cur_y = 0;
183
			}
184
			DefineAndDrawWindow(GetScreenWidth()-800/2-random(80),GetScreenHeight()-600/2-random(80),800,600,0x73,col_bg,0,0);
185
			GetProcessInfo(#Form, SelfInfo);
186
			if (Form.status_window>2) { DrawTitle(#header); break; }
187
			if (Form.height<120) { MoveSize(OLD,OLD,OLD,120); break; }
188
			if (Form.width<280) { MoveSize(OLD,OLD,280,OLD); break; }
189
			Draw_Window();
190
			break;
191
 
192
		case evNetwork:
7281 leency 193
			if (http.transfer > 0) {
194
				http.receive();
195
				EventUpdateProgressBar();
196
				if (http.receive_result == 0) {
6978 leency 197
					// Handle redirects
7281 leency 198
					if (http.status_code >= 300) && (http.status_code < 400)
4686 leency 199
					{
6978 leency 200
						redirected++;
7282 leency 201
						if (redirected>5)
4563 leency 202
						{
7282 leency 203
							notify("'Too many redirects.' -E");
204
							StopLoading();
4558 hidnplayr 205
						}
4563 leency 206
						else
207
						{
7282 leency 208
							http.handle_redirect();
209
							http.free();
210
							GetAbsoluteURL(#http.redirect_url);
211
							history.back();
212
							strcpy(#editURL, #URL);
213
							DrawEditBoxWebView();
214
							OpenPage();
4558 hidnplayr 215
						}
7282 leency 216
						break;
6978 leency 217
					}
7282 leency 218
					redirected = 0;
6978 leency 219
					// Loading the page is complete, free resources
7282 leency 220
					history.add(#URL);
221
					bufpointer = http.content_pointer;
222
					bufsize = http.content_received;
223
					http.free();
224
					SetPageDefaults();
225
					ShowPage();
4536 leency 226
				}
6978 leency 227
			}
228
	}
3067 leency 229
}
230
 
231
void SetElementSizes()
232
{
6731 leency 233
	address_box.top = TOOLBAR_H/2-10;
6794 leency 234
	basic_line_h = calc(WB1.list.font_h * 130) / 100;
6731 leency 235
	address_box.width = Form.cwidth - address_box.left - 50;
6803 leency 236
	WB1.list.SetSizes(0, TOOLBAR_H, Form.width - 10 - scroll_wv.size_x,
6794 leency 237
		Form.cheight - TOOLBAR_H - STATUSBAR_H, basic_line_h);
238
	WB1.list.wheel_size = 7 * basic_line_h;
5710 leency 239
	WB1.list.column_max = WB1.list.w - scroll_wv.size_x / WB1.list.font_w;
6794 leency 240
	WB1.list.visible = WB1.list.h;
6045 leency 241
	if (WB1.list.w!=WB1.DrawBuf.bufw) {
6803 leency 242
		WB1.DrawBuf.Init(WB1.list.x, WB1.list.y, WB1.list.w, 32700);
6698 leency 243
		ProcessEvent(REFRESH_BUTTON);
6045 leency 244
	}
3067 leency 245
}
246
 
5981 leency 247
 
5982 leency 248
 
3067 leency 249
void Draw_Window()
250
{
5772 leency 251
	DrawBar(0,0, Form.cwidth,TOOLBAR_H-2, panel_color);
5718 leency 252
	DrawBar(0,TOOLBAR_H-2, Form.cwidth,1, 0xD7D0D3);
4677 leency 253
	DrawBar(0,TOOLBAR_H-1, Form.cwidth,1, border_color);
3067 leency 254
	SetElementSizes();
6731 leency 255
	DrawRectangle(address_box.left-3, address_box.top-3, address_box.width+5, 25,border_color);
256
	DefineButton(address_box.left-52, address_box.top-2, 24, skin.h-2, BACK_BUTTON+BT_HIDE, 0);
257
	DefineButton(address_box.left-27, address_box.top-2, 24, skin.h-2, FORWARD_BUTTON+BT_HIDE, 0);
7428 leency 258
	img_draw stdcall(skin.image, address_box.left-53, address_box.top-3, 51, skin.h, 0, SKIN_Y);
5718 leency 259
	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 260
	DefineButton(Form.cwidth-27, address_box.top-3, 23, skin.h-1, SANDWICH_BUTTON+BT_HIDE, 0);
7428 leency 261
	img_draw stdcall(skin.image, Form.cwidth-24, address_box.top-3, 17, skin.h, 102, SKIN_Y);
4677 leency 262
	DrawBar(0,Form.cheight - STATUSBAR_H, Form.cwidth,STATUSBAR_H, col_bg);
263
	DrawBar(0,Form.cheight - STATUSBAR_H, Form.cwidth,1, border_color);
7282 leency 264
	if (!header)
265
		OpenPage();
266
	else {
267
		WB1.DrawPage();
268
		DrawEditBoxWebView();
269
	}
4692 leency 270
	DrawRectangle(scroll_wv.start_x, scroll_wv.start_y, scroll_wv.size_x, scroll_wv.size_y-1, scroll_wv.bckg_col);
4693 leency 271
	DrawProgress();
3067 leency 272
}
273
 
274
 
6698 leency 275
void ProcessEvent(dword id__)
4413 leency 276
{
6698 leency 277
	switch (id__)
4413 leency 278
	{
6698 leency 279
		case 1:
280
			ExitProcess();
281
			return;
5711 leency 282
		case SCAN_CODE_BS:
5718 leency 283
		case BACK_BUTTON:
6021 leency 284
			if (history.back()) {
285
				strcpy(#URL, history.current());
5978 leency 286
				OpenPage();
287
			}
5711 leency 288
			return;
5718 leency 289
		case FORWARD_BUTTON:
6021 leency 290
			if (history.forward()) {
291
				strcpy(#URL, history.current());
5978 leency 292
				OpenPage();
293
			}
5711 leency 294
			return;
5718 leency 295
		case GOTOURL_BUTTON:
5772 leency 296
		case SCAN_CODE_ENTER:
7282 leency 297
			if (!editURL[0]) {
298
				strcpy(#URL, URL_SERVICE_HOME);
299
			}
300
			else if (!strncmp(#editURL,"http:",5)) || (editURL[0]=='/')
6730 leency 301
			|| (!strncmp(#editURL,"https:",6)) || (!strncmp(#editURL,"WebView:",8))
5772 leency 302
			{
303
				strcpy(#URL, #editURL);
304
			}
5711 leency 305
			else
5772 leency 306
			{
5803 leency 307
				strlcpy(#URL,"http://",7);
5772 leency 308
				strcat(#URL, #editURL);
309
			}
5711 leency 310
			OpenPage();
311
			return;
7293 leency 312
		case SCAN_CODE_F5:
5718 leency 313
			IF(address_box.flags & 0b10) return;
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
 
4416 leency 402
void OpenPage()
403
{
7282 leency 404
	char getUrl[sizeof(URL)];
4636 leency 405
	StopLoading();
4718 leency 406
	souce_mode = false;
4416 leency 407
	strcpy(#editURL, #URL);
6021 leency 408
	history.add(#URL);
5631 pavelyakov 409
	if (!strncmp(#URL,"WebView:",8))
4692 leency 410
	{
411
		SetPageDefaults();
5747 leency 412
		if (!strcmp(#URL, URL_SERVICE_HOME)) WB1.LoadInternalPage(#homepage, sizeof(homepage));
5631 pavelyakov 413
		else if (!strcmp(#URL, URL_SERVICE_HISTORY)) ShowHistory();
6278 leency 414
		DrawEditBoxWebView();
4692 leency 415
		return;
416
	}
7282 leency 417
	if (!strncmp(#URL,"http:",5)) || (!strncmp(#URL,"https://",8))
4416 leency 418
	{
7428 leency 419
		img_draw stdcall(skin.image, address_box.left+address_box.width+1, address_box.top-3, 17, skin.h, 68, SKIN_Y);
7282 leency 420
 
421
		if (!strncmp(#URL,"http:",5)) {
422
			http.get(#URL);
423
		}
424
		if (!strncmp(#URL,"https://",8)) {
425
			sprintf(#getUrl, "http://gate.aspero.pro/?site=%s", #URL);
426
			http.get(#getUrl);
427
		}
428
		//http.get(#URL);
7281 leency 429
		if (!http.transfer)
4646 leency 430
		{
431
			StopLoading();
432
			bufsize = 0;
5631 pavelyakov 433
			bufpointer = free(bufpointer);
4646 leency 434
			ShowPage();
435
			return;
436
		}
4416 leency 437
	}
4636 leency 438
	else
439
	{
440
		file_size stdcall (#URL);
441
		bufsize = EBX;
4650 leency 442
		if (bufsize)
443
		{
5631 pavelyakov 444
			free(bufpointer);
445
			bufpointer = malloc(bufsize);
4650 leency 446
			SetPageDefaults();
4718 leency 447
			ReadFile(0, bufsize, bufpointer, #URL);
4650 leency 448
		}
4645 leency 449
		ShowPage();
4636 leency 450
	}
4416 leency 451
}
4415 leency 452
 
6278 leency 453
DrawEditBoxWebView()
4508 leency 454
{
7428 leency 455
	int skin_x_offset;
6731 leency 456
	DrawBar(address_box.left-2, address_box.top-2, address_box.width+3, 2, address_box.color);
457
	DrawBar(address_box.left-2, address_box.top, 2, 22, address_box.color);
4718 leency 458
	address_box.size = address_box.pos = address_box.shift = address_box.shift_old = strlen(#editURL);
459
	address_box.offset = 0;
4508 leency 460
	edit_box_draw stdcall(#address_box);
7428 leency 461
	if (http.transfer > 0) skin_x_offset = 68; else skin_x_offset = 51;
462
	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 463
}
4415 leency 464
 
4718 leency 465
 
466
void ShowPage()
467
{
6278 leency 468
	DrawEditBoxWebView();
4540 leency 469
	if (!bufsize)
4508 leency 470
	{
7281 leency 471
		if (http.transfer) WB1.LoadInternalPage(#loading, sizeof(loading));
5773 leency 472
		else WB1.LoadInternalPage(#page_not_found, sizeof(page_not_found));
4508 leency 473
	}
474
	else
5768 leency 475
	{
5766 leency 476
		WB1.Prepare();
5768 leency 477
	}
4508 leency 478
}
479
 
5493 leency 480
byte UrlExtIs(dword ext)
481
{
5631 pavelyakov 482
	if (!strcmpi(#URL + strlen(#URL) - strlen(ext), ext)) return true;
483
	return false;
5493 leency 484
}
4508 leency 485
 
5772 leency 486
void DrawProgress()
487
{
7282 leency 488
	dword persent;
7281 leency 489
	if (http.transfer == 0) return;
7282 leency 490
	if (wv_progress_bar.max) persent = wv_progress_bar.value*100/wv_progress_bar.max; else persent = 10;
491
	DrawBar(address_box.left-2, address_box.top+20, persent*address_box.width/100, 2, wv_progress_bar.progress_color);
5772 leency 492
}
5746 leency 493
 
6931 leency 494
 
6803 leency 495
char anchor[256];
5774 leency 496
void ClickLink()
497
{
7281 leency 498
	if (http.transfer > 0)
5774 leency 499
	{
500
		StopLoading();
6021 leency 501
		history.back();
5774 leency 502
	}
7282 leency 503
	strcpy(#URL, PageLinks.GetURL(PageLinks.active));
5774 leency 504
	//#1
505
	if (URL[0] == '#')
506
	{
6730 leency 507
		if (URL[1] == NULL) {
508
			WB1.list.first = 0;
509
			strcpy(#URL, history.current());
510
		}
511
		else {
512
			strlcpy(#anchor, #URL+strrchr(#URL, '#'), sizeof(anchor));
513
			strcpy(#URL, history.current());
514
		}
515
		ShowPage();
5774 leency 516
		return;
517
	}
518
	//liner.ru#1
6730 leency 519
	if (strrchr(#URL, '#')!=0)
5774 leency 520
	{
6803 leency 521
		strlcpy(#anchor, #URL+strrchr(#URL, '#'), sizeof(anchor));
5774 leency 522
		URL[strrchr(#URL, '#')-1] = 0x00;
523
	}
6730 leency 524
 
525
	if (!strncmp(#URL,"mailto:", 7))
526
	{
527
		notify(#URL);
528
		strcpy(#editURL, history.current());
529
		strcpy(#URL, history.current());
530
		return;
531
	}
532
 
5990 leency 533
	GetAbsoluteURL(#URL);
6730 leency 534
 
7282 leency 535
	if (strncmp(#URL,"http://",7)!=0) && (strncmp(#URL,"https://",8)!=0)
5774 leency 536
	{
6730 leency 537
		if (UrlExtIs(".htm")!=true) && (UrlExtIs(".html")!=true)
538
		{
7422 leency 539
			if (strchr(#URL, '|')) {
540
				ESBYTE[strchr(#URL, '|')] = NULL;
541
				RunProgram(#URL, strlen(#URL)+1+#URL);
542
			}
543
			else {
544
				RunProgram("/sys/@open", #URL);
545
			}
6730 leency 546
			strcpy(#editURL, history.current());
547
			strcpy(#URL, history.current());
548
			return;
549
		}
550
	}
551
	else
552
	{
553
		if (UrlExtIs(".png")==true) || (UrlExtIs(".gif")==true) || (UrlExtIs(".jpg")==true)
6794 leency 554
		|| (UrlExtIs(".zip")==true) || (UrlExtIs(".kex")==true) || (UrlExtIs(".pdf")==true)
555
		|| (UrlExtIs(".7z")==true) {
6986 leency 556
			if (!downloader_opened) {
557
				strcpy(#downloader_edit, #URL);
558
				CreateThread(#Downloader,#downloader_stak+4092);
559
				strcpy(#editURL, history.current());
560
				strcpy(#URL, history.current());
561
			}
562
			else notify("'WebView\nPlease, start a new download only when previous ended.'Et");
6730 leency 563
			return;
5774 leency 564
		}
565
	}
6931 leency 566
	if (open_in_a_new_window)
567
	{
568
		RunProgram(#program_path, #URL);
569
		strcpy(#editURL, history.current());
570
		strcpy(#URL, history.current());
571
	}
572
	else
573
	{
574
		OpenPage();
575
	}
576
	open_in_a_new_window = false;
5774 leency 577
}
578
 
6795 leency 579
void EventShowPageMenu(dword _left, _top)
6782 leency 580
{
581
	menu.show(Form.left+_left-6,Form.top+_top+skin_height+3, 220, #rmb_menu, VIEW_SOURCE);
582
}
583
 
6795 leency 584
void EventShowLinkMenu(dword _left, _top)
585
{
7282 leency 586
	menu.show(Form.left+_left-6,Form.top+_top+skin_height+3, 220, #link_menu, COPY_LINK_URL);
6795 leency 587
}
588
 
7281 leency 589
void EventUpdateProgressBar()
590
{
591
	wv_progress_bar.max = http.content_length;
592
	if (wv_progress_bar.value != http.content_received)
593
	{
594
		wv_progress_bar.value = http.content_received;
595
		DrawProgress();
596
	}
597
}
6795 leency 598
 
599
DrawStatusBar(dword _status_text)
600
{
601
	status_text.start_x = wv_progress_bar.left + wv_progress_bar.width + 10;
602
	status_text.start_y = Form.cheight - STATUSBAR_H + 3;
603
	status_text.area_size_x = Form.cwidth - status_text.start_x -3;
604
	DrawBar(status_text.start_x, status_text.start_y, status_text.area_size_x, 9, col_bg);
605
	status_text.text_pointer = _status_text;
606
	PathShow_prepare stdcall(#status_text);
607
	PathShow_draw stdcall(#status_text);
608
}
609
 
5631 pavelyakov 610
stop: