Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 6366 → Rev 6370

/programs/cmm/aelia/prepare_page.h
77,6 → 77,7
dword DOM_start, DOM_end, DOM_len, DOM_pos;
int stroka_x = HTML_PADDING_X;
int stroka_y = HTML_PADDING_Y;
int size_pt_change;
dword line_break;
byte ch, zeroch;
_text text;
151,9 → 152,28
stroka_x = HTML_PADDING_X;
continue;
}
if (tag.nameis("h1")) || (tag.nameis("/h1"))
|| (tag.nameis("h2")) || (tag.nameis("/h2")) {
if (tag.nameis("h1")) || (tag.nameis("/h1")) ||
(tag.nameis("h2")) || (tag.nameis("/h2")) ||
(tag.nameis("h3")) || (tag.nameis("/h3")) {
if (tag.nameis("h1")) {
size_pt_change = 8;
} else if (tag.nameis("/h1")) {
size_pt_change = -8;
} else if (tag.nameis("h2")) {
size_pt_change = 6;
} else if (tag.nameis("/h2")) {
size_pt_change = -6;
} else if (tag.nameis("h3")) {
size_pt_change = 4;
} else if (tag.nameis("/h3")) {
size_pt_change = -4;
}
label.size.pt += size_pt_change;
if (size_pt_change > 0) {
stroka_y+= list.item_h;
} else {
stroka_y+= list.item_h - size_pt_change;
}
stroka_x = HTML_PADDING_X;
continue;
}