forked from KolibriOS/kolibrios
11403613c7
git-svn-id: svn://kolibrios.org@3107 a494cfbc-eb01-0410-851d-a64ba20cac60
261 lines
6.9 KiB
C
261 lines
6.9 KiB
C
//HTML Viewer in C--
|
|
//Copyright 2007-2012 by Veliant & Leency
|
|
//Asper, lev, Lrz, Barsuk, Nable...
|
|
//home icon - rachel fu, GPL licence
|
|
|
|
//libraries
|
|
#include "..\lib\kolibri.h"
|
|
#include "..\lib\strings.h"
|
|
#include "..\lib\figures.h"
|
|
#include "..\lib\encoding.h"
|
|
#include "..\lib\file_system.h"
|
|
#include "..\lib\mem.h"
|
|
#include "..\lib\dll.h"
|
|
//*.obj libraries
|
|
#include "..\lib\lib.obj\box_lib.h"
|
|
#include "..\lib\lib.obj\libio_lib.h"
|
|
#include "..\lib\lib.obj\libimg_lib.h"
|
|
#include "..\lib\lib.obj\truetype.h"
|
|
//images
|
|
#include "img\toolbar_icons.c"
|
|
#include "img\URLgoto.txt";
|
|
|
|
|
|
#define URL param
|
|
int use_truetype = 0;
|
|
|
|
char editURL[sizeof(URL)],
|
|
page_links[12000],
|
|
header[300];
|
|
|
|
struct lines{
|
|
int visible, all, first, column_max;
|
|
};
|
|
|
|
int mouse_dd;
|
|
edit_box edit1= {250,207,16,0xffffff,0x94AECE,0xffffff,0xffffff,0,sizeof(editURL),#editURL,#mouse_dd,2,19,19};
|
|
scroll_bar scroll1 = { 18,200,398, 44,18,0,115,15,0,0xeeeeee,0xD2CED0,0x555555,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1}; //details in scroll_lib.h--
|
|
|
|
|
|
proc_info Form;
|
|
#define WIN_W 640
|
|
#define WIN_H 480
|
|
|
|
|
|
dword stak[100]; //ìåíþ ÏÊÌ
|
|
mouse m;
|
|
|
|
#include "TWB.h"
|
|
#include "include\menu_rmb.h"
|
|
|
|
|
|
void tre()
|
|
{
|
|
char *font_picture;
|
|
char text[20];
|
|
int width=600;
|
|
int height=20;
|
|
// char palette[256*4];
|
|
int x;
|
|
|
|
text_out stdcall ("hello world\0",#fontlol, 17, 0x0, 10, 10);
|
|
text_out stdcall ("heyeyey!\0",#fontlol, 27, 0x0, 10, 30);
|
|
text_out stdcall ("alarm!\0", #fontlol, 47, 0x00FF0000, 10, 70);
|
|
/*
|
|
strcpy(#text, "hello world\0");
|
|
|
|
debug("get width\n");
|
|
get_width stdcall (#text, #fontinfo, height);
|
|
width=EAX;
|
|
for (x=0;x<20;x++) {
|
|
init_font(#fontinfo);
|
|
debug("yaya\n");
|
|
font_picture=mem_Alloc(width*height);
|
|
text[1]=30+x;
|
|
truetype stdcall (#text, #fontinfo, font_picture, width, height);
|
|
|
|
debug("blyad'!\n");
|
|
|
|
|
|
|
|
PutPaletteImage(font_picture,width,height,0,20*x,8,#palette);
|
|
mem_Free(font_picture); }*/
|
|
}
|
|
|
|
char fontlol[64];
|
|
|
|
void main()
|
|
{
|
|
int btn;
|
|
byte key;
|
|
int half_scroll_size;
|
|
int scroll_used=0;
|
|
|
|
mem_Init();
|
|
if (load_dll2(boxlib, #box_lib_init,0)!=0) {notify("System Error: library doesn't exists /rd/1/lib/box_lib.obj"); ExitProcess();}
|
|
if (load_dll2(libio, #libio_init,1)!=0) debug("Error: library doesn't exists - libio"w);
|
|
if (load_dll2(libimg, #libimg_init,1)!=0) debug("Error: library doesn't exists - libimg"w);
|
|
if (load_dll2(libtruetype, #truetype,0)!=0) {debug("Error: library doesn't exists - TrueType"w); use_truetype = 2; }
|
|
else init_font(#fontlol);
|
|
|
|
if (!URL) strcpy(#URL, "/sys/home.htm");
|
|
strcpy(#editURL, #URL);
|
|
|
|
Form.width=WIN_W;
|
|
Form.height=WIN_H;
|
|
|
|
SetElementSizes();
|
|
|
|
WB1.OpenPage();
|
|
|
|
SetEventMask(0x27);
|
|
loop()
|
|
{
|
|
WaitEventTimeout(2);
|
|
switch(EAX & 0xFF)
|
|
{
|
|
CASE evMouse:
|
|
/*scrollbar_v_mouse (#scroll1); //êîí÷åíûé ñêðîëë ïðèòîðìàæèìàåò, èä¸ì "ñâîèì ïóò¸ì"
|
|
if (lines.first <> scroll1.position)
|
|
{
|
|
lines.first = scroll1.position;
|
|
WB1.ParseHTML(buf, filesize);
|
|
//break;
|
|
};*/
|
|
|
|
btn=GetProcessSlot(Form.ID);
|
|
IF (btn<>GetActiveProcess()) break; //åñëè îêíî íå àêòèâíî íà ñîáûòèÿ ìûøè íå ðåàãèðóåì
|
|
|
|
edit_box_mouse stdcall (#edit1);
|
|
|
|
m.get();
|
|
|
|
if (m.pkm) && (m.y>WB1.top) && (m.y<Form.height) && (filesize)
|
|
{
|
|
SwitchToAnotherThread();
|
|
CreateThread(#menu_rmb,#stak);
|
|
}
|
|
|
|
IF (m.vert==65535) //ïðîêðóòêà êîë¸ñèêîì
|
|
{
|
|
IF (lines.first==0) break;
|
|
IF (lines.first>3) lines.first-=2; ELSE lines.first=1;
|
|
WB1.Scan(ID1);
|
|
break;
|
|
}
|
|
IF (m.vert==1)
|
|
{
|
|
IF(lines.visible+lines.first+3>=lines.all) WB1.Scan(181);
|
|
ELSE {
|
|
lines.first+=2;
|
|
WB1.Scan(ID2);
|
|
}
|
|
break;
|
|
}
|
|
|
|
if (!m.lkm) scroll_used=0;
|
|
if (m.x>=WB1.width-14) && (m.x<=WB1.width+6) && (m.y>WB1.top+16)
|
|
&& (m.y<WB1.top+WB1.height-16) && (lines.all>lines.visible) && (m.lkm)
|
|
scroll_used=1;
|
|
|
|
if (scroll_used)
|
|
{
|
|
half_scroll_size = WB1.height - 16 * lines.visible / lines.all - 3 /2;
|
|
IF (half_scroll_size+WB1.top>m.y) || (m.y<0) || (m.y>4000) m.y=half_scroll_size+WB1.top; //åñëè êóðñîð íàä îêíîì
|
|
btn=lines.first; //ñîõðàíÿåì ñòàðîå êîëè÷åñòâî
|
|
lines.first = m.y -half_scroll_size -WB1.top * lines.all / WB1.height;
|
|
if (lines.visible+lines.first>lines.all) lines.first=lines.all-lines.visible;
|
|
if (btn<>lines.first) WB1.ParseHTML(buf); //÷òîá ëèøíèé ðàç íå ïåðåðèñîâûâàòü
|
|
}
|
|
|
|
break;
|
|
case evButton:
|
|
btn=GetButtonID();
|
|
IF (btn==1)
|
|
{
|
|
KillProcess(downloader_id);
|
|
ExitProcess();
|
|
}
|
|
ELSE
|
|
{
|
|
WB1.Scan(btn);
|
|
}
|
|
break;
|
|
case evKey:
|
|
key = GetKey();
|
|
|
|
if (edit1.flags & 0b10) SWITCH(key) //åñëè àêòèâíà ñòðîêà àäðåñà èãíîðèðóåì íåêîòîðûå êíîïêè
|
|
{ CASE 52: CASE 53: CASE 54: goto _EDIT_MARK; }
|
|
|
|
WB1.Scan(key);
|
|
|
|
_EDIT_MARK:
|
|
IF (key<>0x0d) && (key<>183) && (key<>184) && (key<>173) {EAX=key<<8; edit_box_key stdcall(#edit1);} //àäðåñíàÿ ñòðîêà
|
|
break;
|
|
case evReDraw:
|
|
Draw_Window();
|
|
break;
|
|
default:
|
|
if (downloader_id<>0)
|
|
{
|
|
if (GetProcessSlot(downloader_id)<>0) break;
|
|
downloader_id=0;
|
|
lines.first = lines.all = 0;
|
|
WB1.ReadHtml(_WIN);
|
|
Draw_Window();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
void SetElementSizes()
|
|
{
|
|
edit1.width=Form.width-266;
|
|
WB1.top=44;
|
|
WB1.width=Form.width-13;
|
|
WB1.height=onTop(43,5);
|
|
lines.column_max = WB1.width - 30 / 6;
|
|
lines.visible = WB1.height - 3 / 10 - 2;
|
|
}
|
|
|
|
|
|
void Draw_Window()
|
|
{
|
|
int j;
|
|
DefineAndDrawWindow(215,100,WIN_W,WIN_H,0x73,0x00E4DFE1,0,0);
|
|
|
|
GetProcessInfo(#Form, SelfInfo);
|
|
if (Form.status_window>2) //åñëè ñâåðíóòî â çàãîëîâîê, íè÷åãî íå ðèñóåì
|
|
{
|
|
DrawTitle(#header);
|
|
return;
|
|
}
|
|
if (Form.height<120) MoveSize(OLD,OLD,OLD,120);
|
|
if (Form.width<280) MoveSize(OLD,OLD,280,OLD);
|
|
|
|
PutPaletteImage(#toolbar,200,42,0,0,8,#toolbar_pal);
|
|
if (GetProcessSlot(downloader_id)<>0) PutImage(#stop_btn,24,24,88,10);
|
|
|
|
DrawBar(200,0,onLeft(200,9),43,0xE4DFE1); //çàêðàøèâàåì ôîí ïîä òóëáàðîì
|
|
DrawBar(0,42,onLeft(5,4),1,0xE2DBDC); //âûïóêëîñòü
|
|
DrawBar(0,43,onLeft(5,4),1,0xD2CED0); //âûïóêëîñòü
|
|
for (j=0; j<5; j++) DefineButton(j*37+11, 7, 29, 29, 300+j+BT_HIDE, 0xE4DFE1);
|
|
PutImage(#URLgoto,40,19,onLeft(57,0),14);
|
|
DefineButton(onLeft(37,0),15, 18, 16, GOTOURL+BT_HIDE, 0xE4DFE1);
|
|
DefineButton(onLeft(56,0),15, 17, 16, SEARCHWEB+BT_HIDE, 0xE4DFE1);
|
|
DrawRectangle(205,14,onLeft(58,205),18,0x94AECE); //îáîäîê ïîëîñû àäðåñà
|
|
DrawRectangle(206,15,onLeft(59,205),16,0xE4ECF3);
|
|
|
|
SetElementSizes();
|
|
WB1.ShowPage();
|
|
//tre();
|
|
DefineButton(scroll1.start_x+1, scroll1.start_y+1, 16, 16, ID1+BT_HIDE, 0xE4DFE1);
|
|
DefineButton(scroll1.start_x+1, scroll1.start_y+scroll1.size_y-18, 16, 16, ID2+BT_HIDE, 0xE4DFE1);
|
|
}
|
|
|
|
int onLeft(dword right,left) {return Form.width-right-left;}
|
|
int onTop(dword down,up) {return Form.height-GetSkinHeight()-down-up;}
|
|
|
|
|
|
stop:
|