Subversion Repositories Kolibri OS

Rev

Rev 4726 | Rev 4728 | 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--
3987 leency 2
//Copyright 2007-2013 by Veliant & Leency
3107 leency 3
//Asper, lev, Lrz, Barsuk, Nable...
3067 leency 4
//home icon - rachel fu, GPL licence
5
 
4085 leency 6
#ifndef AUTOBUILD
7
	#include "lang.h--"
8
#endif
9
 
3107 leency 10
//libraries
3363 leency 11
#define MEMSIZE 0x100000
3067 leency 12
#include "..\lib\kolibri.h"
13
#include "..\lib\strings.h"
14
#include "..\lib\figures.h"
15
#include "..\lib\encoding.h"
16
#include "..\lib\file_system.h"
17
#include "..\lib\mem.h"
18
#include "..\lib\dll.h"
4508 leency 19
#include "..\lib\draw_buf.h"
20
#include "..\lib\list_box.h"
21
#include "..\lib\cursor.h"
22
 
3107 leency 23
//*.obj libraries
24
#include "..\lib\lib.obj\box_lib.h"
25
#include "..\lib\lib.obj\libio_lib.h"
26
#include "..\lib\lib.obj\libimg_lib.h"
4536 leency 27
#include "..\lib\lib.obj\http.h"
3067 leency 28
 
4677 leency 29
char homepage[] = FROM "html\homepage.htm";
30
 
4026 leency 31
#ifdef LANG_RUS
4726 leency 32
	char version[]=" Текстовый браузер 1.0 Beta 6";
4416 leency 33
	?define IMAGES_CACHE_CLEARED "Кэш картинок очищен"
4417 leency 34
	?define T_LAST_SLIDE "Это последний слайд"
4550 leency 35
	char loading[] = "Загрузка страницы...
";
4677 leency 36
	char page_not_found[] = FROM "html\page_not_found_ru.htm";
4649 leency 37
	char accept_language[]= "Accept-Language: ru\n";
4026 leency 38
#else
4726 leency 39
	char version[]=" Text-based Browser 1.0 Beta 6";
4026 leency 40
	?define IMAGES_CACHE_CLEARED "Images cache cleared"
4417 leency 41
	?define T_LAST_SLIDE "This slide is the last"
4550 leency 42
	char loading[] = "Loading...
";
4677 leency 43
	char page_not_found[] = FROM "html\page_not_found_en.htm";
4649 leency 44
	char accept_language[]= "Accept-Language: en\n";
4026 leency 45
#endif
46
 
3067 leency 47
proc_info Form;
48
#define WIN_W 640
49
#define WIN_H 480
50
 
4416 leency 51
char search_path[]="http://nigma.ru/index.php?s=";
4558 hidnplayr 52
char str_location[]="location\0";
53
int redirected = 0;
3067 leency 54
 
4074 leency 55
char stak[4096];
3067 leency 56
mouse m;
4026 leency 57
int action_buf;
58
 
4565 leency 59
dword http_transfer = 0;
4537 leency 60
dword http_buffer;
4534 leency 61
 
4692 leency 62
dword TAB_H = false; //19;
4677 leency 63
dword TAB_W = 150;
4692 leency 64
dword TOOLBAR_H = 31; //50;
4718 leency 65
dword STATUSBAR_H =15;
66
dword col_bg;
67
dword panel_color;
68
dword border_color;
4677 leency 69
 
4686 leency 70
pb progress_bar = {0, 10, 83, 150, 12, 0, 0, 100, 0xeeeEEE, 8072B7EBh, 0x9F9F9F};
4718 leency 71
byte souce_mode = false;
4677 leency 72
 
4411 leency 73
#include "..\TWB\TWB.c"
74
#include "menu_rmb.h"
4636 leency 75
#include "history.h"
4718 leency 76
#include "show_src.h"
3067 leency 77
 
4534 leency 78
char editURL[sizeof(URL)];
79
int	mouse_twb;
4677 leency 80
edit_box address_box = {250,55,34,0xffffff,0x94AECE,0xffffff,0xffffff,0,sizeof(URL),#editURL,#mouse_twb,2,19,19};
4534 leency 81
 
4677 leency 82
#define URL_SERVICE_HISTORY "WebView://history"
83
#define URL_SERVICE_HOME "WebView://home"
4718 leency 84
#define URL_SERVICE_SOURCE "WebView://source:"
4534 leency 85
 
4488 leency 86
enum { BACK=300, FORWARD, REFRESH, HOME, NEWTAB, GOTOURL, SEARCHWEB, INPUT_CH, INPUT_BT, BTN_UP, BTN_DOWN };
3067 leency 87
 
4718 leency 88
struct struct_skin {
4677 leency 89
	dword image, w, h;
4718 leency 90
	int Load();
4677 leency 91
} skin;
4488 leency 92
 
4718 leency 93
int struct_skin::Load()
4677 leency 94
{
4718 leency 95
	dword image_data;
4677 leency 96
	skin.image = load_image(abspath("wv_skin.png"));
4686 leency 97
	if (!skin.image) notify("WebView skin file 'wv_skin.png' not found, program will terminate");
4677 leency 98
	skin.w = DSWORD[skin.image+4];
99
	skin.h = DSWORD[skin.image+8];
4718 leency 100
	image_data = DSDWORD[skin.image+24];
101
 
102
	col_bg = DSDWORD[DSDWORD[skin.image+24]];
103
	panel_color  = DSDWORD[skin.w*4*4 + image_data];
104
	border_color = DSDWORD[skin.w*4*7 + image_data];
105
	progress_bar.progress_color = DSDWORD[skin.w*4*10 + image_data];
106
	$and col_bg, 0x00ffffff
107
	$and panel_color, 0x00ffffff
108
	$and border_color, 0x00ffffff
109
	$and progress_bar.progress_color, 0x00ffffff
4677 leency 110
}
111
 
4686 leency 112
void DrawProgress()
113
{
114
	unsigned long btn;
115
	//progressbar_draw stdcall(#progress_bar);
116
	progress_bar.width = progress_bar.left = 0;
117
	if (http_transfer == 0) return;
118
	if (progress_bar.max) btn = address_box.width*progress_bar.value/progress_bar.max; else btn = 30;
119
	DrawBar(address_box.left-1, address_box.top+14, btn, 2, progress_bar.progress_color);
120
}
121
 
4718 leency 122
 
3067 leency 123
void main()
124
{
4686 leency 125
	unsigned long key, btn;
3067 leency 126
	int half_scroll_size;
4026 leency 127
	int scroll_used=0, show_menu;
3067 leency 128
 
129
	mem_Init();
4536 leency 130
	CursorPointer.Load(#CursorFile);
4686 leency 131
	if (load_dll2(boxlib, #box_lib_init,0)!=0) notify("System Error: library doesn't exists /rd/1/lib/box_lib.obj");
4536 leency 132
	if (load_dll2(libio, #libio_init,1)!=0) notify("Error: library doesn't exists - libio");
133
	if (load_dll2(libimg, #libimg_init,1)!=0) notify("Error: library doesn't exists - libimg");
4540 leency 134
	if (load_dll2(libHTTP, #http_lib_init,1)!=0) notify("Error: library doesn't exists - http");
4718 leency 135
	skin.Load();
3067 leency 136
 
137
	Form.width=WIN_W;
138
	Form.height=WIN_H;
139
	SetElementSizes();
4677 leency 140
	if (!URL) strcpy(#URL, URL_SERVICE_HOME);
4416 leency 141
	OpenPage();
3067 leency 142
 
4536 leency 143
	SetEventMask(0xa7);
3067 leency 144
	loop()
145
	{
146
		WaitEventTimeout(2);
147
		switch(EAX & 0xFF)
148
		{
149
			CASE evMouse:
4081 leency 150
				if (!CheckActiveProcess(Form.ID)) break;
4636 leency 151
				//Edit URL
3466 leency 152
				edit_box_mouse stdcall (#address_box);
3067 leency 153
				m.get();
4636 leency 154
				//Links hover
4550 leency 155
				if (m.y>WB1.list.y) PageLinks.Hover(m.x, m.y, link_color_inactive, link_color_active, bg_color);
4636 leency 156
				//Menu
4540 leency 157
				if (m.y>WB1.list.y) && (m.y
3067 leency 158
				{
4026 leency 159
					if (m.pkm)
160
					{
161
						show_menu = 1;
162
					}
163
					if (!m.pkm) && (show_menu)
164
					{
165
						show_menu = 0;
166
						SwitchToAnotherThread();
4074 leency 167
						CreateThread(#menu_rmb,#stak+4092);
4026 leency 168
						break;
169
					}
3067 leency 170
				}
4636 leency 171
				//Mouse scroll
4415 leency 172
				if (m.vert)
3067 leency 173
				{
4636 leency 174
					if (WB1.list.MouseScroll(m.vert)) WB1.Parse();
3067 leency 175
				}
4636 leency 176
				//Drag scroller
4677 leency 177
				scroll_wv.all_redraw = 0;
3067 leency 178
				if (!m.lkm) scroll_used=0;
4416 leency 179
				if (m.x>=scroll_wv.start_x) && (m.x<=scroll_wv.start_x+scroll_wv.size_x)
180
				&& (m.y>=scroll_wv.start_y+scroll_wv.btn_height) && (-scroll_wv.btn_height+scroll_wv.start_y+scroll_wv.size_y>m.y)
4415 leency 181
				&& (WB1.list.count>WB1.list.visible) && (m.lkm)
4026 leency 182
				{
183
					scroll_used=1;
4636 leency 184
				}
3067 leency 185
				if (scroll_used)
186
				{
4415 leency 187
					half_scroll_size = WB1.list.h - 16 * WB1.list.visible / WB1.list.count - 3 /2;
4416 leency 188
					if (half_scroll_size+WB1.list.y>m.y) || (m.y<0) || (m.y>4000) m.y=half_scroll_size+WB1.list.y;
189
					btn=WB1.list.first;
4415 leency 190
					WB1.list.first = m.y -half_scroll_size -WB1.list.y * WB1.list.count / WB1.list.h;
191
					if (WB1.list.visible+WB1.list.first>WB1.list.count) WB1.list.first=WB1.list.count-WB1.list.visible;
4636 leency 192
					if (btn<>WB1.list.first) WB1.Parse();
3067 leency 193
				}
194
				break;
195
			case evButton:
196
				btn=GetButtonID();
4636 leency 197
				if (btn==1)	ExitProcess();
198
				Scan(btn);
3067 leency 199
				break;
200
			case evKey:
201
				key = GetKey();
202
 
4416 leency 203
				if (address_box.flags & 0b10) SWITCH(key)
4718 leency 204
					{ CASE 52: CASE 53: CASE 54: CASE 180: CASE 181: goto _EDIT_MARK; }
3067 leency 205
 
4413 leency 206
				Scan(key);
3067 leency 207
 
208
				_EDIT_MARK:
4416 leency 209
				if (key<>0x0d) && (key<>183) && (key<>184) {EAX=key<<8; edit_box_key stdcall(#address_box);}
3067 leency 210
				break;
211
			case evReDraw:
4636 leency 212
				if (action_buf) Scan(action_buf);
4725 leency 213
				DefineAndDrawWindow(GetScreenWidth()-WIN_W/2,GetScreenHeight()-WIN_H/2,WIN_W,WIN_H,0x73,col_bg,0,0);
214
				GetProcessInfo(#Form, SelfInfo);
4727 leency 215
				if (Form.status_window>2) { DrawTitle(#header); break; }
4725 leency 216
				if (Form.height<120) MoveSize(OLD,OLD,OLD,120);
217
				if (Form.width<280) MoveSize(OLD,OLD,280,OLD);
3067 leency 218
				Draw_Window();
219
				break;
4540 leency 220
 
4536 leency 221
			case evNetwork:
4540 leency 222
				if (http_transfer > 0) {
4536 leency 223
					http_process stdcall (http_transfer);
4677 leency 224
					$push EAX
225
					ESI = http_transfer;
226
					progress_bar.max = ESI.http_msg.content_length;
4686 leency 227
					if (progress_bar.value != ESI.http_msg.content_received)
228
					{
229
						progress_bar.value = ESI.http_msg.content_received;
230
						DrawProgress();
231
					}
4677 leency 232
					$pop EAX
233
					if (EAX == 0) {
4558 hidnplayr 234
						ESI = http_transfer;
235
						// Handle redirects
4563 leency 236
						if (ESI.http_msg.status >= 300) && (ESI.http_msg.status < 400)
237
						{
4558 hidnplayr 238
							redirected++;
4563 leency 239
							if (redirected<=5)
240
							{
4558 hidnplayr 241
								http_find_header_field stdcall (http_transfer, #str_location);
242
								if (EAX!=0) {
243
									ESI = EAX;
244
									EDI = #URL;
245
									do {
246
										$lodsb;
247
										$stosb;
248
									} while (AL != 0) && (AL != 13) && (AL != 10));
249
									DSBYTE[EDI-1]='\0';
250
								}
4563 leency 251
							}
252
							else
253
							{
4558 hidnplayr 254
							//TODO: display error (too many redirects)
255
							}
4563 leency 256
						}
257
						else
258
						{
4558 hidnplayr 259
							redirected = 0;
260
						}
4554 leency 261
						// Loading the page is complete, free resources
4563 leency 262
						if (redirected>0)
263
						{
4643 leency 264
							http_free stdcall (http_transfer);
265
							http_transfer=0;
4686 leency 266
							PageLinks.GetAbsoluteURL(#URL);
4687 leency 267
							BrowserHistory.current--;
4558 hidnplayr 268
							strcpy(#editURL, #URL);
269
							OpenPage();
4563 leency 270
						}
271
						else
272
						{
4686 leency 273
							BrowserHistory.AddUrl();
4643 leency 274
							ESI = http_transfer;
275
							bufpointer = ESI.http_msg.content_ptr;
276
							bufsize = ESI.http_msg.content_received;
277
							http_free stdcall (http_transfer);
278
							http_transfer=0;
4645 leency 279
							SetPageDefaults();
4558 hidnplayr 280
							Draw_Window();		// stop button => refresh button
281
						}
4536 leency 282
					}
283
				}
3067 leency 284
		}
285
	}
286
}
287
 
288
void SetElementSizes()
289
{
4677 leency 290
	address_box.top = TOOLBAR_H-TAB_H/2-7+TAB_H;
291
	address_box.width = Form.cwidth - address_box.left - 25 - 22;
4718 leency 292
	WB1.list.SetSizes(0, TOOLBAR_H, Form.width - 10 - scroll_wv.size_x, Form.cheight - TOOLBAR_H - STATUSBAR_H, 0, 11);
4651 leency 293
	WB1.list.column_max = WB1.list.w - scroll_wv.size_x / 6;
4692 leency 294
	WB1.list.visible = WB1.list.h - 5 / WB1.list.line_h;
4674 leency 295
	WB1.DrawBuf.Init(WB1.list.x, WB1.list.y, WB1.list.w, WB1.list.line_h);
3067 leency 296
}
297
 
298
void Draw_Window()
299
{
4677 leency 300
	int img_off;
301
	// tab {
4692 leency 302
	if (TAB_H)
303
	{
304
		DrawBar(0, 0, TAB_W, TAB_H+1, panel_color);
305
		WriteText(5, 7, 0x80, 0xfdfdFd, "Index.htm");
306
		WriteText(4, 6, 0x80, 0, "Index.htm");
307
		DrawBar(TAB_W,0, Form.cwidth-TAB_W,TAB_H, col_bg);
308
		DrawBar(TAB_W-1,TAB_H, Form.cwidth-TAB_W+1,1, border_color);
309
		img_draw stdcall(skin.image, TAB_W-13, 0, 30, skin.h, 101, 0);
310
	}
311
	else DrawBar(0,0, Form.cwidth,1, col_bg);
4677 leency 312
	// }
4686 leency 313
	DrawBar(0,TAB_H+1, Form.cwidth,TOOLBAR_H-TAB_H-3, panel_color);
314
	DrawBar(0,TOOLBAR_H-2, Form.cwidth,1, 0xe9e9e9);
4677 leency 315
	DrawBar(0,TOOLBAR_H-1, Form.cwidth,1, border_color);
3067 leency 316
	SetElementSizes();
4677 leency 317
	DrawRectangle(address_box.left-1, address_box.top-1, address_box.width+2, 16,address_box.color);
318
	DrawRectangle(address_box.left-2, address_box.top-2, address_box.width+4, 18,border_color);
319
	// < / >
320
	DefineButton(address_box.left-49, address_box.top-1, 23, skin.h-2, 300+BT_HIDE, 0);
321
	DefineButton(address_box.left-25, address_box.top-1, 23, skin.h-2, 301+BT_HIDE, 0);
322
	img_draw stdcall(skin.image, address_box.left-50, address_box.top-2, 48, skin.h, 3, 0);
323
	// refrash
324
	DefineButton(address_box.left+address_box.width+1, address_box.top-2, 16, skin.h-1, REFRESH+BT_HIDE+BT_NOFRAME, 0);
325
	if (http_transfer > 0) img_off = 131; else img_off = 52;
326
	img_draw stdcall(skin.image, address_box.left+address_box.width+1, address_box.top-2, 17, skin.h, img_off, 0);
327
	// config
328
	DefineButton(Form.cwidth-23, address_box.top-2, 17, skin.h-1, 312+BT_HIDE, 0);
4692 leency 329
	img_draw stdcall(skin.image, Form.cwidth-22, address_box.top-2, 16, skin.h, 85, 0);
4677 leency 330
	//status bar
331
	DrawBar(0,Form.cheight - STATUSBAR_H, Form.cwidth,STATUSBAR_H, col_bg);
332
	DrawBar(0,Form.cheight - STATUSBAR_H, Form.cwidth,1, border_color);
333
	progress_bar.top = Form.cheight - STATUSBAR_H + 4;
4692 leency 334
	ShowPage();
335
	DrawRectangle(scroll_wv.start_x, scroll_wv.start_y, scroll_wv.size_x, scroll_wv.size_y-1, scroll_wv.bckg_col);
4693 leency 336
	DrawProgress();
3067 leency 337
}
338
 
339
 
4636 leency 340
void ChangeCharset(byte new_charset)
341
{
342
	BufEncode(new_charset);
343
	WB1.Parse();
344
}
345
 
4413 leency 346
void Scan(int id)
347
{
4636 leency 348
	action_buf=0;
349
	if (id >= 400)
350
	{
351
		ProcessLinks(id);
352
		return;
353
	}
4413 leency 354
	switch (id)
355
	{
356
		case 011: //Ctrk+K
4636 leency 357
			ChangeCharset(_KOI);
4415 leency 358
			return;
359
 
4413 leency 360
		case 021: //Ctrl+U
4636 leency 361
			ChangeCharset(_UTF);
4415 leency 362
			return;
363
 
4413 leency 364
		case 004: //Ctrl+D
4636 leency 365
			ChangeCharset(_DOS);
4415 leency 366
			return;
367
 
4533 leency 368
		case 005: //Win encoding
4636 leency 369
			ChangeCharset(_WIN);
4533 leency 370
			return;
371
 
372
		case 009: //free img cache
4491 leency 373
			ImgCache.Free();
4416 leency 374
			notify(IMAGES_CACHE_CLEARED);
4636 leency 375
			WB1.Parse();
4415 leency 376
			return;
377
 
4546 leency 378
		case 003: //history
4677 leency 379
			strcpy(#URL, URL_SERVICE_HISTORY);
4544 leency 380
			OpenPage();
381
			return;
382
 
4413 leency 383
		case BACK:
384
			if (!BrowserHistory.GoBack()) return;
4416 leency 385
			OpenPage();
4413 leency 386
			return;
387
		case FORWARD:
388
			if (!BrowserHistory.GoForward()) return;
4416 leency 389
			OpenPage();
4413 leency 390
			return;
4718 leency 391
		case 052: //F3
4725 leency 392
			WB1.list.first = 0;
4718 leency 393
			ShowSource();
4719 leency 394
			WB1.Parse();
4718 leency 395
			break;
396
		case 053: //F4
4636 leency 397
			if (strncmp(#URL,"http:",5)==0)
398
			{
4718 leency 399
				WriteFile(bufsize, bufpointer, "/tmp0/1/WebView_tmp.htm");
400
				if (EAX==0) RunProgram("/rd/1/tinypad", "/tmp0/1/WebView_tmp.htm");
4636 leency 401
			}
402
			else
403
			{
404
				RunProgram("/rd/1/tinypad", #URL);
405
			}
4413 leency 406
			return;
407
		case 054: //F5
4688 leency 408
			IF(address_box.flags & 0b10) return;
4413 leency 409
		case REFRESH:
4643 leency 410
			if (http_transfer > 0)
411
			{
412
				StopLoading();
413
				Draw_Window();
414
			}
4636 leency 415
			else OpenPage();
4413 leency 416
			return;
4415 leency 417
		case 014:
418
		case 020:
4413 leency 419
		case NEWTAB:
420
			MoveSize(190,80,OLD,OLD);
421
			RunProgram(#program_path, #URL);
422
			return;
423
 
424
		case HOME:
4571 hidnplayr 425
			strcpy(#editURL, "http://kolibrios.org/");
4413 leency 426
		case GOTOURL:
427
		case 0x0D: //enter
4718 leency 428
			if (!editURL[0]) return;
4692 leency 429
			if ((strncmp(#editURL,"http:",5)!=0) && (editURL[0]!='/') && ((strncmp(#editURL,"WebView:",8)!=0))
430
			{
431
				strcpy(#URL,"http://");
432
			}
433
			else
434
				URL[0] = 0;
4413 leency 435
			strcat(#URL, #editURL);
4416 leency 436
			OpenPage();
4413 leency 437
			return;
438
		case SEARCHWEB:
439
			strcpy(#URL, #search_path);
440
			strcat(#URL, #editURL);
4416 leency 441
			OpenPage();
4413 leency 442
			return;
443
 
444
		case 183: //PgDown
4415 leency 445
			if (WB1.list.count < WB1.list.visible) return;
446
			IF(WB1.list.first == WB1.list.count - WB1.list.visible) return;
447
			WB1.list.first += WB1.list.visible + 2;
448
			IF(WB1.list.visible + WB1.list.first > WB1.list.count) WB1.list.first = WB1.list.count - WB1.list.visible;
4636 leency 449
			WB1.Parse();
4415 leency 450
			return;
451
 
4413 leency 452
		case 184: //PgUp
4415 leency 453
			if (WB1.list.count < WB1.list.visible) return;
454
			IF(WB1.list.first == 0) return;
455
			WB1.list.first -= WB1.list.visible - 2;
456
			IF(WB1.list.first < 0) WB1.list.first = 0;
4636 leency 457
			WB1.Parse();
4415 leency 458
			return;
459
 
460
		case 178:
4544 leency 461
		case BTN_UP:
4416 leency 462
			if (WB1.list.first <= 0) return;
4415 leency 463
			WB1.list.first--;
4636 leency 464
			WB1.Parse();
4415 leency 465
			return;
466
 
467
		case 177:
4544 leency 468
		case BTN_DOWN:
4416 leency 469
			if (WB1.list.visible + WB1.list.first >= WB1.list.count) return;
4415 leency 470
			WB1.list.first++;
4636 leency 471
			WB1.Parse();
4415 leency 472
			return;
473
 
4413 leency 474
		case 180: //home
4636 leency 475
			if (WB1.list.KeyHome()) WB1.Parse();
4415 leency 476
			return;
477
 
4413 leency 478
		case 181: //end
4415 leency 479
			if (WB1.list.count < WB1.list.visible) return;
4636 leency 480
			if (WB1.list.KeyEnd()) WB1.Parse();
4413 leency 481
			return;
4677 leency 482
		case 312:
483
			SwitchToAnotherThread();
484
			m.y = TOOLBAR_H-6;
485
			m.x = Form.cwidth - 167;
486
			CreateThread(#menu_rmb,#stak+4092);
4413 leency 487
	}
488
}
489
 
490
 
491
 
4415 leency 492
void ProcessLinks(int id)
493
{
4687 leency 494
	if (http_transfer > 0)
495
	{
496
		StopLoading();
497
		BrowserHistory.current--;
498
	}
499
 
4544 leency 500
	strcpy(#URL, PageLinks.GetURL(id-401));
4417 leency 501
	//$1 - Condition Script
502
	if (URL[0] == '$')
503
	{
504
		if (URL[1]=='-') && (condition_href) condition_href--;
505
		if (URL[1]=='+')
506
		{
507
			if (condition_href
508
		}
509
		if (URL[1]!='-') && (URL[1]!='+') condition_href = atoi(#URL+1);
510
		strcpy(#URL, BrowserHistory.CurrentUrl());
4508 leency 511
		ShowPage();
4417 leency 512
		return;
513
	}
4415 leency 514
	//#1
515
	if (URL[0] == '#')
516
	{
4417 leency 517
		strcpy(#anchor, #URL+strrchr(#URL, '#'));
4415 leency 518
		strcpy(#URL, BrowserHistory.CurrentUrl());
519
		WB1.list.first=WB1.list.count-WB1.list.visible;
4508 leency 520
		ShowPage();
4415 leency 521
		return;
522
	}
523
	//liner.ru#1
4417 leency 524
	if (strrchr(#URL, '#')!=-1)
4415 leency 525
	{
526
		strcpy(#anchor, #URL+strrchr(#URL, '#'));
4416 leency 527
		URL[strrchr(#URL, '#')-1] = 0x00;
4415 leency 528
	}
529
 
4686 leency 530
	PageLinks.GetAbsoluteURL(#URL);
4415 leency 531
 
532
	if (!strcmp(#URL + strlen(#URL) - 4, ".gif")) || (!strcmp(#URL + strlen(#URL) - 4, ".png")) || (!strcmp(#URL + strlen(#URL) - 4, ".jpg"))
533
	{
534
		//if (strstr(#URL,"http:"))
535
		RunProgram("/sys/media/kiv", #URL);
536
		strcpy(#editURL, BrowserHistory.CurrentUrl());
537
		strcpy(#URL, BrowserHistory.CurrentUrl());
538
		return;
539
	}
540
	if (!strcmpn(#URL,"mailto:", 7))
541
	{
542
		notify(#URL);
543
		strcpy(#editURL, BrowserHistory.CurrentUrl());
544
		strcpy(#URL, BrowserHistory.CurrentUrl());
545
		return;
546
	}
4416 leency 547
	OpenPage();
4415 leency 548
	return;
549
}
550
 
4636 leency 551
void StopLoading()
552
{
4647 leency 553
	if (http_transfer<>0)
554
	{
555
		EAX = http_transfer;
556
		EAX = EAX.http_msg.content_ptr;		// get pointer to data
557
		$push	EAX							// save it on the stack
558
		http_free stdcall (http_transfer);	// abort connection
559
		$pop	EAX
560
		mem_Free(EAX);						// free data
561
		http_transfer=0;
562
		bufsize = 0;
4650 leency 563
		bufpointer = mem_Free(bufpointer);
4647 leency 564
	}
4677 leency 565
	progress_bar.value = 0;
566
	img_draw stdcall(skin.image, address_box.left+address_box.width+1, address_box.top-2, 17, skin.h, 52, 0);
4645 leency 567
}
568
 
569
void SetPageDefaults()
570
{
571
	strcpy(#header, #version);
572
	pre_text = 0;
573
	WB1.list.count = WB1.list.first = 0;
574
	stroka = 0;
575
	cur_encoding = _DEFAULT;
576
	if (o_bufpointer) o_bufpointer = free(o_bufpointer);
4636 leency 577
	anchor_line_num=WB1.list.first;
578
	anchor[0]='|';
579
}
580
 
4416 leency 581
void OpenPage()
582
{
4636 leency 583
	StopLoading();
4718 leency 584
	souce_mode = false;
4416 leency 585
	strcpy(#editURL, #URL);
4687 leency 586
	BrowserHistory.AddUrl();
4692 leency 587
	if (strncmp(#URL,"WebView:",8)==0)
588
	{
589
		SetPageDefaults();
590
		if (strcmp(#URL, URL_SERVICE_HOME)==0)
591
		{
592
			WB1.Prepare(#homepage, sizeof(homepage));
593
		}
594
		if (strcmp(#URL, URL_SERVICE_HISTORY)==0)
595
		{
596
			ShowHistory();
597
		}
598
		return;
599
	}
4636 leency 600
	if (strncmp(#URL,"http:",5)==0)
4416 leency 601
	{
4677 leency 602
		img_draw stdcall(skin.image, address_box.left+address_box.width+1, address_box.top-2, 17, skin.h, 131, 0);
4636 leency 603
		http_get stdcall (#URL, #accept_language);
604
		http_transfer = EAX;
4646 leency 605
		if (http_transfer == 0)
606
		{
607
			StopLoading();
608
			bufsize = 0;
4650 leency 609
			bufpointer = mem_Free(bufpointer);
4646 leency 610
			ShowPage();
611
			return;
612
		}
4416 leency 613
	}
4636 leency 614
	else
615
	{
616
		file_size stdcall (#URL);
617
		bufsize = EBX;
4650 leency 618
		if (bufsize)
619
		{
4718 leency 620
			mem_Free(bufpointer);
4650 leency 621
			bufpointer = mem_Alloc(bufsize);
622
			SetPageDefaults();
4718 leency 623
			ReadFile(0, bufsize, bufpointer, #URL);
624
			//ShowSource();
4650 leency 625
		}
4645 leency 626
		ShowPage();
4636 leency 627
	}
4416 leency 628
}
4415 leency 629
 
4718 leency 630
DrawEditBox()
4508 leency 631
{
4718 leency 632
	address_box.size = address_box.pos = address_box.shift = address_box.shift_old = strlen(#editURL);
633
	address_box.offset = 0;
4508 leency 634
	edit_box_draw stdcall(#address_box);
4718 leency 635
}
4415 leency 636
 
4718 leency 637
 
638
void ShowPage()
639
{
640
	DrawEditBox();
4540 leency 641
	if (!bufsize)
4508 leency 642
	{
643
		PageLinks.Clear();
4636 leency 644
		if (http_transfer<>0)
645
		{
646
			WB1.Prepare(#loading, sizeof(loading));
647
		}
4508 leency 648
		else
4636 leency 649
			WB1.Prepare(#page_not_found, sizeof(page_not_found));
4508 leency 650
	}
651
	else
4636 leency 652
		WB1.Parse();
4415 leency 653
 
4508 leency 654
	if (!header) strcpy(#header, #version);
655
	if (!strcmp(#version, #header)) DrawTitle(#header);
656
}
657
 
658
 
4544 leency 659
 
4636 leency 660
 
3067 leency 661
stop: