summaryrefslogtreecommitdiff
path: root/source/html
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2017-07-20 20:04:17 +0100
committerTor Andersson <tor.andersson@artifex.com>2018-03-22 14:58:01 +0100
commit4987023bc163939687c2ceed2f7b2a2503893fb7 (patch)
tree1561946bccf4fb8b5dd60a7a0fa037884318f1da /source/html
parentf11c41bd07e0015cf144f50e3a3ccdbd3844f8a1 (diff)
downloadmupdf-4987023bc163939687c2ceed2f7b2a2503893fb7.tar.xz
html: Keep 'b' instead of 'h' in boxes.
Diffstat (limited to 'source/html')
-rw-r--r--source/html/epub-doc.c12
-rw-r--r--source/html/html-doc.c2
-rw-r--r--source/html/html-imp.h2
-rw-r--r--source/html/html-layout.c99
4 files changed, 56 insertions, 59 deletions
diff --git a/source/html/epub-doc.c b/source/html/epub-doc.c
index 91d6e6b5..0729e438 100644
--- a/source/html/epub-doc.c
+++ b/source/html/epub-doc.c
@@ -92,7 +92,7 @@ epub_layout(fz_context *ctx, fz_document *doc_, float w, float h, float em)
{
ch->start = count;
fz_layout_html(ctx, ch->html, w, h, em);
- count += ceilf(ch->html->root->h / ch->html->page_h);
+ count += ceilf(ch->html->root->b / ch->html->page_h);
}
epub_update_outline(ctx, doc_, doc->outline);
@@ -105,7 +105,7 @@ epub_count_pages(fz_context *ctx, fz_document *doc_)
epub_chapter *ch;
int count = 0;
for (ch = doc->spine; ch; ch = ch->next)
- count += ceilf(ch->html->root->h / ch->html->page_h);
+ count += ceilf(ch->html->root->b / ch->html->page_h);
return count;
}
@@ -125,7 +125,7 @@ epub_bound_page(fz_context *ctx, fz_page *page_, fz_rect *bbox)
for (ch = doc->spine; ch; ch = ch->next)
{
- int cn = ceilf(ch->html->root->h / ch->html->page_h);
+ int cn = ceilf(ch->html->root->b / ch->html->page_h);
if (n < count + cn)
{
bbox->x0 = 0;
@@ -152,7 +152,7 @@ epub_run_page(fz_context *ctx, fz_page *page_, fz_device *dev, const fz_matrix *
for (ch = doc->spine; ch; ch = ch->next)
{
- int cn = ceilf(ch->html->root->h / ch->html->page_h);
+ int cn = ceilf(ch->html->root->b / ch->html->page_h);
if (n < count + cn)
{
fz_draw_html(ctx, dev, ctm, ch->html, n-count);
@@ -173,7 +173,7 @@ epub_load_links(fz_context *ctx, fz_page *page_)
for (ch = doc->spine; ch; ch = ch->next)
{
- int cn = ceilf(ch->html->root->h / ch->html->page_h);
+ int cn = ceilf(ch->html->root->b / ch->html->page_h);
if (n < count + cn)
return fz_load_html_links(ctx, ch->html, n - count, ch->path, doc);
count += cn;
@@ -191,7 +191,7 @@ epub_make_bookmark(fz_context *ctx, fz_document *doc_, int n)
for (ch = doc->spine; ch; ch = ch->next)
{
- int cn = ceilf(ch->html->root->h / ch->html->page_h);
+ int cn = ceilf(ch->html->root->b / ch->html->page_h);
if (n < count + cn)
return fz_make_html_bookmark(ctx, ch->html, n - count);
count += cn;
diff --git a/source/html/html-doc.c b/source/html/html-doc.c
index 8cfa233f..c43c7f3c 100644
--- a/source/html/html-doc.c
+++ b/source/html/html-doc.c
@@ -56,7 +56,7 @@ static int
htdoc_count_pages(fz_context *ctx, fz_document *doc_)
{
html_document *doc = (html_document*)doc_;
- int count = ceilf(doc->html->root->h / doc->html->page_h);
+ int count = ceilf(doc->html->root->b / doc->html->page_h);
return count;
}
diff --git a/source/html/html-imp.h b/source/html/html-imp.h
index 7ed4341f..a272548c 100644
--- a/source/html/html-imp.h
+++ b/source/html/html-imp.h
@@ -200,7 +200,7 @@ struct fz_html_box_s
unsigned int is_first_flow : 1; /* for text-indent */
unsigned int markup_dir : 2;
unsigned int list_item : 27;
- float x, y, w, h; /* content */
+ float x, y, w, b; /* content */
float padding[4];
float margin[4];
float border[4];
diff --git a/source/html/html-layout.c b/source/html/html-layout.c
index 1416b502..41b1b676 100644
--- a/source/html/html-layout.c
+++ b/source/html/html-layout.c
@@ -468,7 +468,7 @@ static void init_box(fz_context *ctx, fz_html_box *box, fz_bidi_direction markup
{
box->type = BOX_BLOCK;
box->x = box->y = 0;
- box->w = box->h = 0;
+ box->w = box->b = 0;
box->up = NULL;
box->last = NULL;
@@ -1061,7 +1061,7 @@ static float measure_line(fz_html_flow *node, fz_html_flow *end, float *baseline
static void layout_line(fz_context *ctx, float indent, float page_w, float line_w, int align, fz_html_flow *start, fz_html_flow *end, fz_html_box *box, float baseline, float line_h)
{
float x = box->x + indent;
- float y = box->y + box->h;
+ float y = box->b;
float slop = page_w - line_w;
float justify = 0;
float va;
@@ -1211,12 +1211,12 @@ static void flush_line(fz_context *ctx, fz_html_box *box, float page_h, float pa
line_h = measure_line(a, b, &baseline);
if (page_h > 0)
{
- avail = page_h - fmodf(box->y + box->h, page_h);
+ avail = page_h - fmodf(box->b, page_h);
if (line_h > avail)
- box->h += avail;
+ box->b += avail;
}
layout_line(ctx, indent, page_w, line_w, align, a, b, box, baseline, line_h);
- box->h += line_h;
+ box->b += line_h;
}
static void layout_flow_inline(fz_context *ctx, fz_html_box *box, fz_html_box *top)
@@ -1250,9 +1250,9 @@ static void layout_flow(fz_context *ctx, fz_html_box *box, fz_html_box *top, flo
}
box->x = top->x;
- box->y = top->y + top->h;
+ box->y = top->b;
box->w = top->w;
- box->h = 0;
+ box->b = box->y;
if (!box->flow_head)
return;
@@ -1351,28 +1351,29 @@ static void layout_flow(fz_context *ctx, fz_html_box *box, fz_html_box *top, flo
}
}
-static int layout_block_page_break(fz_context *ctx, fz_html_box *box, float page_h, float vertical, int page_break)
+static int layout_block_page_break(fz_context *ctx, float *yp, float page_h, float vertical, int page_break)
{
if (page_h <= 0)
return 0;
if (page_break == PB_ALWAYS || page_break == PB_LEFT || page_break == PB_RIGHT)
{
- float avail = page_h - fmodf(box->y + box->h - vertical, page_h);
- int number = (box->y + box->h + (page_h * 0.1f)) / page_h;
+ float avail = page_h - fmodf(*yp - vertical, page_h);
+ int number = (*yp + (page_h * 0.1f)) / page_h;
if (avail > 0 && avail < page_h)
{
- box->h += avail - vertical;
+ *yp += avail - vertical;
if (page_break == PB_LEFT && (number & 1) == 0) /* right side pages are even */
- box->h += page_h;
+ *yp += page_h;
if (page_break == PB_RIGHT && (number & 1) == 1) /* left side pages are odd */
- box->h += page_h;
+ *yp += page_h;
return 1;
}
}
return 0;
}
-static float layout_block(fz_context *ctx, fz_html_box *box, fz_html_box *top, float page_h, float vertical, hb_buffer_t *hb_buf)
+static float layout_block(fz_context *ctx, fz_html_box *box, float em, float top_x, float *top_b, float top_w,
+ float page_h, float vertical, hb_buffer_t *hb_buf)
{
fz_html_box *child;
float auto_width;
@@ -1383,30 +1384,30 @@ static float layout_block(fz_context *ctx, fz_html_box *box, fz_html_box *top, f
float *border = box->border;
float *padding = box->padding;
- float em = box->em = fz_from_css_number(style->font_size, top->em, top->em, top->em);
+ em = box->em = fz_from_css_number(style->font_size, em, em, em);
- margin[0] = fz_from_css_number(style->margin[0], em, top->w, 0);
- margin[1] = fz_from_css_number(style->margin[1], em, top->w, 0);
- margin[2] = fz_from_css_number(style->margin[2], em, top->w, 0);
- margin[3] = fz_from_css_number(style->margin[3], em, top->w, 0);
+ margin[0] = fz_from_css_number(style->margin[0], em, top_w, 0);
+ margin[1] = fz_from_css_number(style->margin[1], em, top_w, 0);
+ margin[2] = fz_from_css_number(style->margin[2], em, top_w, 0);
+ margin[3] = fz_from_css_number(style->margin[3], em, top_w, 0);
- padding[0] = fz_from_css_number(style->padding[0], em, top->w, 0);
- padding[1] = fz_from_css_number(style->padding[1], em, top->w, 0);
- padding[2] = fz_from_css_number(style->padding[2], em, top->w, 0);
- padding[3] = fz_from_css_number(style->padding[3], em, top->w, 0);
+ padding[0] = fz_from_css_number(style->padding[0], em, top_w, 0);
+ padding[1] = fz_from_css_number(style->padding[1], em, top_w, 0);
+ padding[2] = fz_from_css_number(style->padding[2], em, top_w, 0);
+ padding[3] = fz_from_css_number(style->padding[3], em, top_w, 0);
- border[0] = style->border_style_0 ? fz_from_css_number(style->border_width[0], em, top->w, 0) : 0;
- border[1] = style->border_style_1 ? fz_from_css_number(style->border_width[1], em, top->w, 0) : 0;
- border[2] = style->border_style_2 ? fz_from_css_number(style->border_width[2], em, top->w, 0) : 0;
- border[3] = style->border_style_3 ? fz_from_css_number(style->border_width[3], em, top->w, 0) : 0;
+ border[0] = style->border_style_0 ? fz_from_css_number(style->border_width[0], em, top_w, 0) : 0;
+ border[1] = style->border_style_1 ? fz_from_css_number(style->border_width[1], em, top_w, 0) : 0;
+ border[2] = style->border_style_2 ? fz_from_css_number(style->border_width[2], em, top_w, 0) : 0;
+ border[3] = style->border_style_3 ? fz_from_css_number(style->border_width[3], em, top_w, 0) : 0;
/* TODO: remove 'vertical' margin adjustments across automatic page breaks */
- if (layout_block_page_break(ctx, top, page_h, vertical, style->page_break_before))
+ if (layout_block_page_break(ctx, top_b, page_h, vertical, style->page_break_before))
vertical = 0;
- box->x = top->x + margin[L] + border[L] + padding[L];
- auto_width = top->w - (margin[L] + margin[R] + border[L] + border[R] + padding[L] + padding[R]);
+ box->x = top_x + margin[L] + border[L] + padding[L];
+ auto_width = top_w - (margin[L] + margin[R] + border[L] + border[R] + padding[L] + padding[R]);
box->w = fz_from_css_number(style->width, em, auto_width, auto_width);
if (margin[T] > vertical)
@@ -1419,15 +1420,14 @@ static float layout_block(fz_context *ctx, fz_html_box *box, fz_html_box *top, f
else
vertical = 0;
- box->y = top->y + top->h + margin[T] + border[T] + padding[T];
- box->h = 0;
+ box->y = box->b = *top_b + margin[T] + border[T] + padding[T];
first = 1;
for (child = box->down; child; child = child->next)
{
if (child->type == BOX_BLOCK)
{
- vertical = layout_block(ctx, child, box, page_h, vertical, hb_buf);
+ vertical = layout_block(ctx, child, em, box->x, &box->b, box->w, page_h, vertical, hb_buf);
if (first)
{
/* move collapsed parent/child top margins to parent */
@@ -1436,23 +1436,20 @@ static float layout_block(fz_context *ctx, fz_html_box *box, fz_html_box *top, f
child->margin[T] = 0;
first = 0;
}
- box->h += child->h +
- child->padding[T] + child->padding[B] +
- child->border[T] + child->border[B] +
- child->margin[T] + child->margin[B];
+ box->b = child->b + child->padding[B] + child->border[B] + child->margin[B];
}
else if (child->type == BOX_BREAK)
{
- box->h += fz_from_css_number_scale(style->line_height, em);
+ box->b += fz_from_css_number_scale(style->line_height, em);
vertical = 0;
first = 0;
}
else if (child->type == BOX_FLOW)
{
layout_flow(ctx, child, box, page_h, hb_buf);
- if (child->h > 0)
+ if (child->b > child->y)
{
- box->h += child->h;
+ box->b = child->b;
vertical = 0;
first = 0;
}
@@ -1460,19 +1457,19 @@ static float layout_block(fz_context *ctx, fz_html_box *box, fz_html_box *top, f
}
/* reserve space for the list mark */
- if (box->list_item && box->h == 0)
+ if (box->list_item && box->y == box->b)
{
- box->h += fz_from_css_number_scale(style->line_height, em);
+ box->b += fz_from_css_number_scale(style->line_height, em);
vertical = 0;
}
- if (layout_block_page_break(ctx, box, page_h, 0, style->page_break_after))
+ if (layout_block_page_break(ctx, &box->b, page_h, 0, style->page_break_after))
{
vertical = 0;
margin[B] = 0;
}
- if (box->h == 0)
+ if (box->y == box->b)
{
if (margin[B] > vertical)
margin[B] -= vertical;
@@ -1481,7 +1478,7 @@ static float layout_block(fz_context *ctx, fz_html_box *box, fz_html_box *top, f
}
else
{
- box->h -= vertical;
+ box->b -= vertical;
vertical = fz_max(margin[B], vertical);
margin[B] = vertical;
}
@@ -1845,7 +1842,7 @@ static void draw_block_box(fz_context *ctx, fz_html_box *box, float page_top, fl
x0 = box->x - padding[L];
y0 = box->y - padding[T];
x1 = box->x + box->w + padding[R];
- y1 = box->y + box->h + padding[B];
+ y1 = box->b + padding[B];
if (y0 > page_bot || y1 < page_top)
return;
@@ -2416,7 +2413,7 @@ fz_debug_html_box(fz_context *ctx, fz_html_box *box, int level)
case BOX_INLINE: printf("inline"); break;
}
- printf(" em=%g x=%g y=%g w=%g h=%g\n", box->em, box->x, box->y, box->w, box->h);
+ printf(" em=%g x=%g y=%g w=%g b=%g\n", box->em, box->x, box->y, box->w, box->b);
indent(level);
printf("{\n");
@@ -2499,12 +2496,12 @@ fz_layout_html(fz_context *ctx, fz_html *html, float w, float h, float em)
box->em = em;
box->w = html->page_w;
- box->h = 0;
+ box->b = box->y;
if (box->down)
{
- layout_block(ctx, box->down, box, html->page_h, 0, hb_buf);
- box->h = box->down->h;
+ layout_block(ctx, box->down, box->em, box->x, &box->b, box->w, html->page_h, 0, hb_buf);
+ box->b = box->down->b;
}
}
fz_always(ctx)
@@ -2520,7 +2517,7 @@ fz_layout_html(fz_context *ctx, fz_html *html, float w, float h, float em)
}
if (h == 0)
- html->page_h = box->h;
+ html->page_h = box->b;
#ifndef NDEBUG
if (fz_atoi(getenv("FZ_DEBUG_HTML")))