HTMLv: fully fixed line breaks in links... fu~, it took all day

git-svn-id: svn://kolibrios.org@3060 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Kirill Lipatov (Leency) 2012-11-19 00:24:41 +00:00
parent 66f8ed5fc2
commit d994c2a92d
3 changed files with 16 additions and 4 deletions

View File

@ -99,8 +99,7 @@ void main()
if (load_dll2(libtruetype, #truetype,0)!=0) {debug("Íå óäàëîñü ïîäêëþ÷èòü áèáëèîòåêó TrueType"w); use_truetype = 2; }
else init_font(#fontlol);
// if (!URL) strcpy(#URL, "/sys/home.htm");
if (!URL) strcpy(#URL, "/sys/ololo.txt");
if (!URL) strcpy(#URL, "/sys/home.htm");
strcpy(#editURL, #URL);
Form.width=WIN_W;

View File

@ -1,7 +1,7 @@
18.11.12 - 0.97.7
- если изображение не загрузилось, но содержит ссылку отображается
заменяющий его текст;
- частично исправлен перенос ссылках в тексте;
- полностью исправлены переносы ссылках в тексте;
- отображение в меню текущей кодировки;
- SoUrcerer - Синхронизация программы с новой оптимизированной
версией библитеки TryeType.

View File

@ -463,6 +463,18 @@ void TWebBrowser::ParseHTML(dword bword){
if (tag[strlen(#tag)-1]=='/') tag[strlen(#tag)-1]=NULL; //for br/
if (tagparam) && (strlen(#tagparam) < 4000) GetNextParam();
if (stolbec + strlen(#line) > lines.column_max)
{
perenos_num = strrchr(#line, ' ');
if (!perenos_num) && (strlen(#line)>lines.column_max) perenos_num=lines.column_max;
strcpy(#temp, #line + perenos_num); //ïåðåíîñ ïî ñëîâàì
line[perenos_num] = 0x00;
if (stroka >= lines.visible) && (lines.first <>0) break 1; //óõîäèì...
DrawPage();
strcpy(#line, #temp);
TextGoDown(left + 5, stroka * 10 + top + 5, width - 20); //çàêðàøèâàåì ñëåäóùóþ ñòðîêó
}
DrawPage();
line=NULL;
@ -488,8 +500,9 @@ void TWebBrowser::ParseHTML(dword bword){
line[perenos_num] = 0x00;
if (stroka >= lines.visible) && (lines.first <>0) break 1; //óõîäèì...
DrawPage();
TextGoDown(left + 5, stroka * 10 + top + 5, width - 20); //çàêðàøèâàåì ñëåäóùóþ ñòðîêó
strcpy(#line, #temp);
TextGoDown(left + 5, stroka * 10 + top + 5, width - 20); //çàêðàøèâàåì ñëåäóùóþ ñòðîêó
}
}
}