2003-06-30 16:44:03 +04:00
|
|
|
/*
|
2010-06-04 13:35:08 +04:00
|
|
|
* Copyright 2008 Michael Drake <tlsa@netsurf-browser.org>
|
2020-04-29 22:37:42 +03:00
|
|
|
* Copyright 2020 Vincent Sanders <vince@netsurf-browser.org>
|
2007-08-08 20:16:03 +04:00
|
|
|
*
|
|
|
|
* This file is part of NetSurf, http://www.netsurf-browser.org/
|
|
|
|
*
|
|
|
|
* NetSurf is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; version 2 of the License.
|
|
|
|
*
|
|
|
|
* NetSurf is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2002-05-04 23:57:18 +04:00
|
|
|
*/
|
|
|
|
|
2017-01-20 00:15:08 +03:00
|
|
|
/**
|
|
|
|
* \file
|
2020-04-29 22:37:42 +03:00
|
|
|
* implementation of box tree inspection.
|
2004-07-19 18:31:31 +04:00
|
|
|
*/
|
|
|
|
|
2007-08-20 06:39:49 +04:00
|
|
|
#include <stdio.h>
|
2012-03-25 00:55:22 +04:00
|
|
|
#include <dom/dom.h>
|
2016-04-26 14:50:16 +03:00
|
|
|
|
2019-11-12 21:34:39 +03:00
|
|
|
#include "utils/nsurl.h"
|
2020-04-29 22:37:42 +03:00
|
|
|
#include "utils/errors.h"
|
|
|
|
#include "netsurf/types.h"
|
2016-06-06 10:59:23 +03:00
|
|
|
#include "netsurf/content.h"
|
|
|
|
#include "netsurf/mouse.h"
|
2016-06-06 16:47:27 +03:00
|
|
|
#include "css/utils.h"
|
|
|
|
#include "css/dump.h"
|
2011-05-10 02:49:17 +04:00
|
|
|
#include "desktop/scrollbar.h"
|
2016-04-26 14:50:16 +03:00
|
|
|
|
2020-05-02 22:47:53 +03:00
|
|
|
#include "html/private.h"
|
2018-05-10 13:34:26 +03:00
|
|
|
#include "html/box.h"
|
2020-04-29 22:37:42 +03:00
|
|
|
#include "html/box_inspect.h"
|
2004-08-02 00:28:02 +04:00
|
|
|
|
2010-04-28 01:38:41 +04:00
|
|
|
/**
|
2020-04-29 22:37:42 +03:00
|
|
|
* Direction to move in a box-tree walk
|
2010-04-28 01:38:41 +04:00
|
|
|
*/
|
2020-04-29 22:37:42 +03:00
|
|
|
enum box_walk_dir {
|
|
|
|
BOX_WALK_CHILDREN,
|
|
|
|
BOX_WALK_PARENT,
|
|
|
|
BOX_WALK_NEXT_SIBLING,
|
|
|
|
BOX_WALK_FLOAT_CHILDREN,
|
|
|
|
BOX_WALK_NEXT_FLOAT_SIBLING,
|
|
|
|
BOX_WALK_FLOAT_CONTAINER
|
|
|
|
};
|
2006-02-16 02:09:55 +03:00
|
|
|
|
2020-04-29 22:37:42 +03:00
|
|
|
#define box_is_float(box) (box->type == BOX_FLOAT_LEFT || \
|
|
|
|
box->type == BOX_FLOAT_RIGHT)
|
2006-02-16 02:09:55 +03:00
|
|
|
|
2014-08-31 19:26:50 +04:00
|
|
|
/**
|
|
|
|
* Determine if a point lies within a box.
|
|
|
|
*
|
2018-01-04 02:58:18 +03:00
|
|
|
* \param[in] len_ctx CSS length conversion context to use.
|
|
|
|
* \param[in] box Box to consider
|
|
|
|
* \param[in] x Coordinate relative to box
|
|
|
|
* \param[in] y Coordinate relative to box
|
|
|
|
* \param[out] physically If function returning true, physically is set true
|
|
|
|
* iff point is within the box's physical dimensions and
|
|
|
|
* false if the point is not within the box's physical
|
|
|
|
* dimensions but is in the area defined by the box's
|
|
|
|
* descendants. If function returns false, physically
|
|
|
|
* is undefined.
|
2014-08-31 19:26:50 +04:00
|
|
|
* \return true if the point is within the box or a descendant box
|
|
|
|
*
|
|
|
|
* This is a helper function for box_at_point().
|
|
|
|
*/
|
2020-04-29 22:37:42 +03:00
|
|
|
static bool
|
|
|
|
box_contains_point(const nscss_len_ctx *len_ctx,
|
|
|
|
const struct box *box,
|
|
|
|
int x,
|
|
|
|
int y,
|
|
|
|
bool *physically)
|
2014-08-31 19:26:50 +04:00
|
|
|
{
|
|
|
|
css_computed_clip_rect css_rect;
|
|
|
|
|
|
|
|
if (box->style != NULL &&
|
2020-04-29 22:37:42 +03:00
|
|
|
css_computed_position(box->style) == CSS_POSITION_ABSOLUTE &&
|
|
|
|
css_computed_clip(box->style, &css_rect) == CSS_CLIP_RECT) {
|
2014-08-31 19:26:50 +04:00
|
|
|
/* We have an absolutly positioned box with a clip rect */
|
|
|
|
struct rect r = {
|
2020-04-29 22:37:42 +03:00
|
|
|
.x0 = box->border[LEFT].width,
|
|
|
|
.y0 = box->border[TOP].width,
|
|
|
|
.x1 = box->padding[LEFT] + box->width +
|
|
|
|
box->border[RIGHT].width +
|
|
|
|
box->padding[RIGHT],
|
|
|
|
.y1 = box->padding[TOP] + box->height +
|
|
|
|
box->border[BOTTOM].width +
|
|
|
|
box->padding[BOTTOM]
|
2014-08-31 19:26:50 +04:00
|
|
|
};
|
2020-04-29 22:37:42 +03:00
|
|
|
if (x >= r.x0 && x < r.x1 && y >= r.y0 && y < r.y1) {
|
2014-08-31 19:26:50 +04:00
|
|
|
*physically = true;
|
2020-04-29 22:37:42 +03:00
|
|
|
} else {
|
2014-08-31 19:26:50 +04:00
|
|
|
*physically = false;
|
2020-04-29 22:37:42 +03:00
|
|
|
}
|
2014-08-31 19:26:50 +04:00
|
|
|
|
|
|
|
/* Adjust rect to css clip region */
|
|
|
|
if (css_rect.left_auto == false) {
|
2018-01-04 02:58:18 +03:00
|
|
|
r.x0 += FIXTOINT(nscss_len2px(len_ctx,
|
2020-04-29 22:37:42 +03:00
|
|
|
css_rect.left,
|
|
|
|
css_rect.lunit,
|
|
|
|
box->style));
|
2014-08-31 19:26:50 +04:00
|
|
|
}
|
|
|
|
if (css_rect.top_auto == false) {
|
2018-01-04 02:58:18 +03:00
|
|
|
r.y0 += FIXTOINT(nscss_len2px(len_ctx,
|
2020-04-29 22:37:42 +03:00
|
|
|
css_rect.top,
|
|
|
|
css_rect.tunit,
|
|
|
|
box->style));
|
2014-08-31 19:26:50 +04:00
|
|
|
}
|
|
|
|
if (css_rect.right_auto == false) {
|
|
|
|
r.x1 = box->border[LEFT].width +
|
2020-04-29 22:37:42 +03:00
|
|
|
FIXTOINT(nscss_len2px(len_ctx,
|
|
|
|
css_rect.right,
|
|
|
|
css_rect.runit,
|
|
|
|
box->style));
|
2014-08-31 19:26:50 +04:00
|
|
|
}
|
|
|
|
if (css_rect.bottom_auto == false) {
|
|
|
|
r.y1 = box->border[TOP].width +
|
2020-04-29 22:37:42 +03:00
|
|
|
FIXTOINT(nscss_len2px(len_ctx,
|
|
|
|
css_rect.bottom,
|
|
|
|
css_rect.bunit,
|
|
|
|
box->style));
|
2014-08-31 19:26:50 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Test if point is in clipped box */
|
|
|
|
if (x >= r.x0 && x < r.x1 && y >= r.y0 && y < r.y1) {
|
|
|
|
/* inside clip area */
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Not inside clip area */
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (x >= -box->border[LEFT].width &&
|
2020-04-29 22:37:42 +03:00
|
|
|
x < box->padding[LEFT] + box->width +
|
|
|
|
box->padding[RIGHT] + box->border[RIGHT].width &&
|
|
|
|
y >= -box->border[TOP].width &&
|
|
|
|
y < box->padding[TOP] + box->height +
|
|
|
|
box->padding[BOTTOM] + box->border[BOTTOM].width) {
|
2014-08-31 19:26:50 +04:00
|
|
|
*physically = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (box->list_marker && box->list_marker->x - box->x <= x +
|
2020-04-29 22:37:42 +03:00
|
|
|
box->list_marker->border[LEFT].width &&
|
|
|
|
x < box->list_marker->x - box->x +
|
|
|
|
box->list_marker->padding[LEFT] +
|
|
|
|
box->list_marker->width +
|
|
|
|
box->list_marker->border[RIGHT].width +
|
|
|
|
box->list_marker->padding[RIGHT] &&
|
|
|
|
box->list_marker->y - box->y <= y +
|
|
|
|
box->list_marker->border[TOP].width &&
|
|
|
|
y < box->list_marker->y - box->y +
|
|
|
|
box->list_marker->padding[TOP] +
|
|
|
|
box->list_marker->height +
|
|
|
|
box->list_marker->border[BOTTOM].width +
|
|
|
|
box->list_marker->padding[BOTTOM]) {
|
2014-08-31 19:26:50 +04:00
|
|
|
*physically = true;
|
|
|
|
return true;
|
|
|
|
}
|
2018-05-10 13:34:26 +03:00
|
|
|
if ((box->style && css_computed_overflow_x(box->style) ==
|
2020-04-29 22:37:42 +03:00
|
|
|
CSS_OVERFLOW_VISIBLE) || !box->style) {
|
2014-08-31 19:26:50 +04:00
|
|
|
if (box->descendant_x0 <= x &&
|
2020-04-29 22:37:42 +03:00
|
|
|
x < box->descendant_x1) {
|
2014-08-31 19:26:50 +04:00
|
|
|
*physically = false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2018-05-10 13:34:26 +03:00
|
|
|
if ((box->style && css_computed_overflow_y(box->style) ==
|
2020-04-29 22:37:42 +03:00
|
|
|
CSS_OVERFLOW_VISIBLE) || !box->style) {
|
2014-08-31 19:26:50 +04:00
|
|
|
if (box->descendant_y0 <= y &&
|
2020-04-29 22:37:42 +03:00
|
|
|
y < box->descendant_y1) {
|
2014-08-31 19:26:50 +04:00
|
|
|
*physically = false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-08-31 19:24:35 +04:00
|
|
|
/**
|
|
|
|
* Move from box to next box in given direction, adjusting for box coord change
|
|
|
|
*
|
2020-04-29 22:37:42 +03:00
|
|
|
* \param b box to move from from
|
|
|
|
* \param dir direction to move in
|
|
|
|
* \param x box's global x-coord, updated to position of next box
|
|
|
|
* \param y box's global y-coord, updated to position of next box
|
2014-08-31 19:24:35 +04:00
|
|
|
*
|
|
|
|
* If no box can be found in given direction, NULL is returned.
|
|
|
|
*/
|
2020-04-29 01:30:20 +03:00
|
|
|
static inline struct box *
|
|
|
|
box_move_xy(struct box *b, enum box_walk_dir dir, int *x, int *y)
|
2014-08-31 19:24:35 +04:00
|
|
|
{
|
2015-05-03 19:23:44 +03:00
|
|
|
struct box *rb = NULL;
|
|
|
|
|
2014-08-31 19:24:35 +04:00
|
|
|
switch (dir) {
|
|
|
|
case BOX_WALK_CHILDREN:
|
|
|
|
b = b->children;
|
|
|
|
if (b == NULL)
|
2015-05-03 19:23:44 +03:00
|
|
|
break;
|
2014-08-31 19:24:35 +04:00
|
|
|
*x += b->x;
|
|
|
|
*y += b->y;
|
|
|
|
if (!box_is_float(b)) {
|
2015-05-03 19:23:44 +03:00
|
|
|
rb = b;
|
|
|
|
break;
|
2014-08-31 19:24:35 +04:00
|
|
|
}
|
2018-09-07 14:53:51 +03:00
|
|
|
/* fall through */
|
2014-08-31 19:24:35 +04:00
|
|
|
|
|
|
|
case BOX_WALK_NEXT_SIBLING:
|
|
|
|
do {
|
|
|
|
*x -= b->x;
|
|
|
|
*y -= b->y;
|
|
|
|
b = b->next;
|
|
|
|
if (b == NULL)
|
|
|
|
break;
|
|
|
|
*x += b->x;
|
|
|
|
*y += b->y;
|
|
|
|
} while (box_is_float(b));
|
2015-05-03 19:23:44 +03:00
|
|
|
rb = b;
|
|
|
|
break;
|
2014-08-31 19:24:35 +04:00
|
|
|
|
|
|
|
case BOX_WALK_PARENT:
|
|
|
|
*x -= b->x;
|
|
|
|
*y -= b->y;
|
2015-05-03 19:23:44 +03:00
|
|
|
rb = b->parent;
|
|
|
|
break;
|
2014-08-31 19:24:35 +04:00
|
|
|
|
|
|
|
case BOX_WALK_FLOAT_CHILDREN:
|
|
|
|
b = b->float_children;
|
|
|
|
if (b == NULL)
|
2015-05-03 19:23:44 +03:00
|
|
|
break;
|
2014-08-31 19:24:35 +04:00
|
|
|
*x += b->x;
|
|
|
|
*y += b->y;
|
2015-05-03 19:23:44 +03:00
|
|
|
rb = b;
|
|
|
|
break;
|
2014-08-31 19:24:35 +04:00
|
|
|
|
|
|
|
case BOX_WALK_NEXT_FLOAT_SIBLING:
|
|
|
|
*x -= b->x;
|
|
|
|
*y -= b->y;
|
|
|
|
b = b->next_float;
|
|
|
|
if (b == NULL)
|
2015-05-03 19:23:44 +03:00
|
|
|
break;
|
2014-08-31 19:24:35 +04:00
|
|
|
*x += b->x;
|
|
|
|
*y += b->y;
|
2015-05-03 19:23:44 +03:00
|
|
|
rb = b;
|
|
|
|
break;
|
2014-08-31 19:24:35 +04:00
|
|
|
|
|
|
|
case BOX_WALK_FLOAT_CONTAINER:
|
|
|
|
*x -= b->x;
|
|
|
|
*y -= b->y;
|
2015-05-03 19:23:44 +03:00
|
|
|
rb = b->float_container;
|
|
|
|
break;
|
2014-08-31 19:24:35 +04:00
|
|
|
|
|
|
|
default:
|
|
|
|
assert(0 && "Bad box walk type.");
|
|
|
|
}
|
2015-05-03 19:23:44 +03:00
|
|
|
|
|
|
|
return rb;
|
2014-08-31 19:24:35 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Itterator for walking to next box in interaction order
|
|
|
|
*
|
|
|
|
* \param b box to find next box from
|
|
|
|
* \param x box's global x-coord, updated to position of next box
|
|
|
|
* \param y box's global y-coord, updated to position of next box
|
|
|
|
* \param skip_children whether to skip box's children
|
|
|
|
*
|
|
|
|
* This walks to a boxes float children before its children. When walking
|
|
|
|
* children, floating boxes are skipped.
|
|
|
|
*/
|
2020-04-29 22:37:42 +03:00
|
|
|
static inline struct box *
|
|
|
|
box_next_xy(struct box *b, int *x, int *y, bool skip_children)
|
2014-08-31 19:24:35 +04:00
|
|
|
{
|
|
|
|
struct box *n;
|
|
|
|
int tx, ty;
|
|
|
|
|
|
|
|
assert(b != NULL);
|
|
|
|
|
|
|
|
if (skip_children) {
|
|
|
|
/* Caller is not interested in any kind of children */
|
|
|
|
goto skip_children;
|
|
|
|
}
|
|
|
|
|
|
|
|
tx = *x; ty = *y;
|
|
|
|
n = box_move_xy(b, BOX_WALK_FLOAT_CHILDREN, &tx, &ty);
|
|
|
|
if (n) {
|
|
|
|
/* Next node is float child */
|
|
|
|
*x = tx;
|
|
|
|
*y = ty;
|
|
|
|
return n;
|
|
|
|
}
|
2020-04-29 22:37:42 +03:00
|
|
|
done_float_children:
|
2014-08-31 19:24:35 +04:00
|
|
|
|
|
|
|
tx = *x; ty = *y;
|
|
|
|
n = box_move_xy(b, BOX_WALK_CHILDREN, &tx, &ty);
|
|
|
|
if (n) {
|
|
|
|
/* Next node is child */
|
|
|
|
*x = tx;
|
|
|
|
*y = ty;
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
2020-04-29 22:37:42 +03:00
|
|
|
skip_children:
|
2014-08-31 19:24:35 +04:00
|
|
|
tx = *x; ty = *y;
|
|
|
|
n = box_move_xy(b, BOX_WALK_NEXT_FLOAT_SIBLING, &tx, &ty);
|
|
|
|
if (n) {
|
|
|
|
/* Go to next float sibling */
|
|
|
|
*x = tx;
|
|
|
|
*y = ty;
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (box_is_float(b)) {
|
|
|
|
/* Done floats, but the float container may have children,
|
|
|
|
* or siblings, or ansestors with siblings. Change to
|
|
|
|
* float container and move past handling its float children.
|
|
|
|
*/
|
|
|
|
b = box_move_xy(b, BOX_WALK_FLOAT_CONTAINER, x, y);
|
|
|
|
goto done_float_children;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Go to next sibling, or nearest ancestor with next sibling. */
|
|
|
|
while (b) {
|
|
|
|
while (!b->next && b->parent) {
|
|
|
|
b = box_move_xy(b, BOX_WALK_PARENT, x, y);
|
|
|
|
if (box_is_float(b)) {
|
|
|
|
/* Go on to next float, if there is one */
|
|
|
|
goto skip_children;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!b->next) {
|
|
|
|
/* No more boxes */
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
tx = *x; ty = *y;
|
|
|
|
n = box_move_xy(b, BOX_WALK_NEXT_SIBLING, &tx, &ty);
|
|
|
|
if (n) {
|
|
|
|
/* Go to non-float (ancestor) sibling */
|
|
|
|
*x = tx;
|
|
|
|
*y = ty;
|
|
|
|
return n;
|
|
|
|
|
|
|
|
} else if (b->parent) {
|
|
|
|
b = box_move_xy(b, BOX_WALK_PARENT, x, y);
|
|
|
|
if (box_is_float(b)) {
|
|
|
|
/* Go on to next float, if there is one */
|
|
|
|
goto skip_children;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
/* No more boxes */
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(b != NULL);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-06-04 13:35:08 +04:00
|
|
|
/**
|
|
|
|
* Check whether box is nearer mouse coordinates than current nearest box
|
|
|
|
*
|
|
|
|
* \param box box to test
|
|
|
|
* \param bx position of box, in global document coordinates
|
|
|
|
* \param by position of box, in global document coordinates
|
|
|
|
* \param x mouse point, in global document coordinates
|
|
|
|
* \param y mouse point, in global document coordinates
|
|
|
|
* \param dir direction in which to search (-1 = above-left,
|
|
|
|
* +1 = below-right)
|
|
|
|
* \param nearest nearest text box found, or NULL if none
|
|
|
|
* updated if box is nearer than existing nearest
|
|
|
|
* \param tx position of text_box, in global document coordinates
|
|
|
|
* updated if box is nearer than existing nearest
|
|
|
|
* \param ty position of text_box, in global document coordinates
|
|
|
|
* updated if box is nearer than existing nearest
|
|
|
|
* \param nr_xd distance to nearest text box found
|
|
|
|
* updated if box is nearer than existing nearest
|
2014-11-10 23:15:14 +03:00
|
|
|
* \param nr_yd distance to nearest text box found
|
2010-06-04 13:35:08 +04:00
|
|
|
* updated if box is nearer than existing nearest
|
|
|
|
* \return true if mouse point is inside box
|
|
|
|
*/
|
2020-04-29 01:30:20 +03:00
|
|
|
static bool
|
|
|
|
box_nearer_text_box(struct box *box,
|
|
|
|
int bx, int by,
|
|
|
|
int x, int y,
|
|
|
|
int dir,
|
|
|
|
struct box **nearest,
|
|
|
|
int *tx, int *ty,
|
|
|
|
int *nr_xd, int *nr_yd)
|
2010-06-04 13:35:08 +04:00
|
|
|
{
|
|
|
|
int w = box->padding[LEFT] + box->width + box->padding[RIGHT];
|
|
|
|
int h = box->padding[TOP] + box->height + box->padding[BOTTOM];
|
|
|
|
int y1 = by + h;
|
|
|
|
int x1 = bx + w;
|
|
|
|
int yd = INT_MAX;
|
|
|
|
int xd = INT_MAX;
|
|
|
|
|
|
|
|
if (x >= bx && x1 > x && y >= by && y1 > y) {
|
|
|
|
*nearest = box;
|
|
|
|
*tx = bx;
|
|
|
|
*ty = by;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (box->parent->list_marker != box) {
|
|
|
|
if (dir < 0) {
|
|
|
|
/* consider only those children (partly) above-left */
|
|
|
|
if (by <= y && bx < x) {
|
|
|
|
yd = y <= y1 ? 0 : y - y1;
|
|
|
|
xd = x <= x1 ? 0 : x - x1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* consider only those children (partly) below-right */
|
|
|
|
if (y1 > y && x1 > x) {
|
|
|
|
yd = y > by ? 0 : by - y;
|
|
|
|
xd = x > bx ? 0 : bx - x;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* give y displacement precedence over x */
|
|
|
|
if (yd < *nr_yd || (yd == *nr_yd && xd <= *nr_xd)) {
|
|
|
|
*nr_yd = yd;
|
|
|
|
*nr_xd = xd;
|
|
|
|
*nearest = box;
|
|
|
|
*tx = bx;
|
|
|
|
*ty = by;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Pick the text box child of 'box' that is closest to and above-left
|
|
|
|
* (dir -ve) or below-right (dir +ve) of the point 'x,y'
|
|
|
|
*
|
|
|
|
* \param box parent box
|
|
|
|
* \param bx position of box, in global document coordinates
|
|
|
|
* \param by position of box, in global document coordinates
|
|
|
|
* \param fx position of float parent, in global document coordinates
|
|
|
|
* \param fy position of float parent, in global document coordinates
|
|
|
|
* \param x mouse point, in global document coordinates
|
|
|
|
* \param y mouse point, in global document coordinates
|
|
|
|
* \param dir direction in which to search (-1 = above-left,
|
|
|
|
* +1 = below-right)
|
|
|
|
* \param nearest nearest text box found, or NULL if none
|
|
|
|
* updated if a descendant of box is nearer than old nearest
|
|
|
|
* \param tx position of nearest, in global document coordinates
|
|
|
|
* updated if a descendant of box is nearer than old nearest
|
|
|
|
* \param ty position of nearest, in global document coordinates
|
|
|
|
* updated if a descendant of box is nearer than old nearest
|
|
|
|
* \param nr_xd distance to nearest text box found
|
|
|
|
* updated if a descendant of box is nearer than old nearest
|
2014-11-10 23:15:14 +03:00
|
|
|
* \param nr_yd distance to nearest text box found
|
2010-06-04 13:35:08 +04:00
|
|
|
* updated if a descendant of box is nearer than old nearest
|
|
|
|
* \return true if mouse point is inside text_box
|
|
|
|
*/
|
2020-04-29 22:37:42 +03:00
|
|
|
static bool
|
|
|
|
box_nearest_text_box(struct box *box,
|
|
|
|
int bx, int by,
|
|
|
|
int fx, int fy,
|
|
|
|
int x, int y,
|
|
|
|
int dir,
|
|
|
|
struct box **nearest,
|
|
|
|
int *tx, int *ty,
|
|
|
|
int *nr_xd, int *nr_yd)
|
2010-06-04 13:35:08 +04:00
|
|
|
{
|
|
|
|
struct box *child = box->children;
|
|
|
|
int c_bx, c_by;
|
|
|
|
int c_fx, c_fy;
|
|
|
|
bool in_box = false;
|
|
|
|
|
|
|
|
if (*nearest == NULL) {
|
|
|
|
*nr_xd = INT_MAX / 2; /* displacement of 'nearest so far' */
|
|
|
|
*nr_yd = INT_MAX / 2;
|
|
|
|
}
|
|
|
|
if (box->type == BOX_INLINE_CONTAINER) {
|
|
|
|
int bw = box->padding[LEFT] + box->width + box->padding[RIGHT];
|
|
|
|
int bh = box->padding[TOP] + box->height + box->padding[BOTTOM];
|
|
|
|
int b_y1 = by + bh;
|
|
|
|
int b_x1 = bx + bw;
|
|
|
|
if (x >= bx && b_x1 > x && y >= by && b_y1 > y) {
|
|
|
|
in_box = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
while (child) {
|
|
|
|
if (child->type == BOX_FLOAT_LEFT ||
|
2020-04-29 22:37:42 +03:00
|
|
|
child->type == BOX_FLOAT_RIGHT) {
|
2010-06-04 13:35:08 +04:00
|
|
|
c_bx = fx + child->x -
|
2020-04-29 22:37:42 +03:00
|
|
|
scrollbar_get_offset(child->scroll_x);
|
2010-06-04 13:35:08 +04:00
|
|
|
c_by = fy + child->y -
|
2020-04-29 22:37:42 +03:00
|
|
|
scrollbar_get_offset(child->scroll_y);
|
2010-06-04 13:35:08 +04:00
|
|
|
} else {
|
|
|
|
c_bx = bx + child->x -
|
2020-04-29 22:37:42 +03:00
|
|
|
scrollbar_get_offset(child->scroll_x);
|
2010-06-04 13:35:08 +04:00
|
|
|
c_by = by + child->y -
|
2020-04-29 22:37:42 +03:00
|
|
|
scrollbar_get_offset(child->scroll_y);
|
2010-06-04 13:35:08 +04:00
|
|
|
}
|
|
|
|
if (child->float_children) {
|
|
|
|
c_fx = c_bx;
|
|
|
|
c_fy = c_by;
|
|
|
|
} else {
|
|
|
|
c_fx = fx;
|
|
|
|
c_fy = fy;
|
|
|
|
}
|
|
|
|
if (in_box && child->text && !child->object) {
|
|
|
|
if (box_nearer_text_box(child,
|
2020-04-29 22:37:42 +03:00
|
|
|
c_bx, c_by, x, y, dir, nearest,
|
|
|
|
tx, ty, nr_xd, nr_yd))
|
2010-06-04 13:35:08 +04:00
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
if (child->list_marker) {
|
|
|
|
if (box_nearer_text_box(
|
|
|
|
child->list_marker,
|
|
|
|
c_bx + child->list_marker->x,
|
|
|
|
c_by + child->list_marker->y,
|
|
|
|
x, y, dir, nearest,
|
|
|
|
tx, ty, nr_xd, nr_yd))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (box_nearest_text_box(child, c_bx, c_by,
|
2020-04-29 22:37:42 +03:00
|
|
|
c_fx, c_fy,
|
|
|
|
x, y, dir, nearest, tx, ty,
|
|
|
|
nr_xd, nr_yd))
|
2010-06-04 13:35:08 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
child = child->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-04-29 01:30:20 +03:00
|
|
|
/* Exported function documented in html/box.h */
|
2020-04-29 22:37:42 +03:00
|
|
|
void box_coords(struct box *box, int *x, int *y)
|
2010-06-04 13:35:08 +04:00
|
|
|
{
|
2020-04-29 22:37:42 +03:00
|
|
|
*x = box->x;
|
|
|
|
*y = box->y;
|
|
|
|
while (box->parent) {
|
|
|
|
if (box_is_float(box)) {
|
|
|
|
assert(box->float_container);
|
|
|
|
box = box->float_container;
|
|
|
|
} else {
|
|
|
|
box = box->parent;
|
|
|
|
}
|
|
|
|
*x += box->x - scrollbar_get_offset(box->scroll_x);
|
|
|
|
*y += box->y - scrollbar_get_offset(box->scroll_y);
|
|
|
|
}
|
|
|
|
}
|
2010-06-04 13:35:08 +04:00
|
|
|
|
|
|
|
|
2020-04-29 22:37:42 +03:00
|
|
|
/* Exported function documented in html/box.h */
|
|
|
|
void box_bounds(struct box *box, struct rect *r)
|
|
|
|
{
|
|
|
|
int width, height;
|
2011-08-31 21:53:40 +04:00
|
|
|
|
2020-04-29 22:37:42 +03:00
|
|
|
box_coords(box, &r->x0, &r->y0);
|
2011-08-31 21:53:40 +04:00
|
|
|
|
2020-04-29 22:37:42 +03:00
|
|
|
width = box->padding[LEFT] + box->width + box->padding[RIGHT];
|
|
|
|
height = box->padding[TOP] + box->height + box->padding[BOTTOM];
|
2011-08-31 21:53:40 +04:00
|
|
|
|
2020-04-29 22:37:42 +03:00
|
|
|
r->x1 = r->x0 + width;
|
|
|
|
r->y1 = r->y0 + height;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Exported function documented in html/box.h */
|
|
|
|
struct box *
|
|
|
|
box_at_point(const nscss_len_ctx *len_ctx,
|
|
|
|
struct box *box,
|
|
|
|
const int x, const int y,
|
|
|
|
int *box_x, int *box_y)
|
|
|
|
{
|
|
|
|
bool skip_children;
|
|
|
|
bool physically;
|
|
|
|
|
|
|
|
assert(box);
|
|
|
|
|
|
|
|
skip_children = false;
|
|
|
|
while ((box = box_next_xy(box, box_x, box_y, skip_children))) {
|
|
|
|
if (box_contains_point(len_ctx, box, x - *box_x, y - *box_y,
|
|
|
|
&physically)) {
|
|
|
|
*box_x -= scrollbar_get_offset(box->scroll_x);
|
|
|
|
*box_y -= scrollbar_get_offset(box->scroll_y);
|
|
|
|
|
|
|
|
if (physically)
|
|
|
|
return box;
|
|
|
|
|
|
|
|
skip_children = false;
|
|
|
|
} else {
|
|
|
|
skip_children = true;
|
2011-08-31 21:53:40 +04:00
|
|
|
}
|
2010-06-04 13:35:08 +04:00
|
|
|
}
|
|
|
|
|
2020-04-29 22:37:42 +03:00
|
|
|
return NULL;
|
2010-06-04 13:35:08 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-04-29 01:30:20 +03:00
|
|
|
/* Exported function documented in html/box.h */
|
2011-10-29 15:37:05 +04:00
|
|
|
struct box *box_find_by_id(struct box *box, lwc_string *id)
|
2004-08-07 02:19:13 +04:00
|
|
|
{
|
|
|
|
struct box *a, *b;
|
2011-10-29 15:37:05 +04:00
|
|
|
bool m;
|
2004-08-07 02:19:13 +04:00
|
|
|
|
2011-10-29 15:37:05 +04:00
|
|
|
if (box->id != NULL &&
|
2020-04-29 22:37:42 +03:00
|
|
|
lwc_string_isequal(id, box->id, &m) == lwc_error_ok &&
|
|
|
|
m == true) {
|
2004-08-07 02:19:13 +04:00
|
|
|
return box;
|
2020-04-29 22:37:42 +03:00
|
|
|
}
|
2004-08-07 02:19:13 +04:00
|
|
|
|
|
|
|
for (a = box->children; a; a = a->next) {
|
2020-04-29 22:37:42 +03:00
|
|
|
if ((b = box_find_by_id(a, id)) != NULL) {
|
2004-08-07 02:19:13 +04:00
|
|
|
return b;
|
2020-04-29 22:37:42 +03:00
|
|
|
}
|
2004-08-07 02:19:13 +04:00
|
|
|
}
|
|
|
|
|
2004-08-14 18:30:12 +04:00
|
|
|
return NULL;
|
2004-08-07 02:19:13 +04:00
|
|
|
}
|
2005-03-26 04:12:27 +03:00
|
|
|
|
|
|
|
|
2020-04-29 01:30:20 +03:00
|
|
|
/* Exported function documented in html/box.h */
|
2007-01-14 16:02:09 +03:00
|
|
|
bool box_visible(struct box *box)
|
2007-01-01 02:47:17 +03:00
|
|
|
{
|
|
|
|
/* visibility: hidden */
|
2020-04-29 22:37:42 +03:00
|
|
|
if (box->style &&
|
|
|
|
css_computed_visibility(box->style) == CSS_VISIBILITY_HIDDEN) {
|
2007-01-01 02:47:17 +03:00
|
|
|
return false;
|
2020-04-29 22:37:42 +03:00
|
|
|
}
|
2007-01-01 02:47:17 +03:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-04-29 01:30:20 +03:00
|
|
|
/* Exported function documented in html/box.h */
|
2014-07-13 21:07:12 +04:00
|
|
|
void box_dump(FILE *stream, struct box *box, unsigned int depth, bool style)
|
2005-03-26 04:12:27 +03:00
|
|
|
{
|
|
|
|
unsigned int i;
|
2005-04-14 01:58:28 +04:00
|
|
|
struct box *c, *prev;
|
2005-03-26 04:12:27 +03:00
|
|
|
|
2020-04-29 22:37:42 +03:00
|
|
|
for (i = 0; i != depth; i++) {
|
2007-08-20 06:39:49 +04:00
|
|
|
fprintf(stream, " ");
|
2020-04-29 22:37:42 +03:00
|
|
|
}
|
2005-03-26 04:12:27 +03:00
|
|
|
|
2007-08-20 06:39:49 +04:00
|
|
|
fprintf(stream, "%p ", box);
|
2020-04-29 22:37:42 +03:00
|
|
|
fprintf(stream, "x%i y%i w%i h%i ",
|
|
|
|
box->x, box->y, box->width, box->height);
|
|
|
|
if (box->max_width != UNKNOWN_MAX_WIDTH) {
|
2007-08-20 06:39:49 +04:00
|
|
|
fprintf(stream, "min%i max%i ", box->min_width, box->max_width);
|
2020-04-29 22:37:42 +03:00
|
|
|
}
|
2007-08-20 06:39:49 +04:00
|
|
|
fprintf(stream, "(%i %i %i %i) ",
|
2020-04-29 22:37:42 +03:00
|
|
|
box->descendant_x0, box->descendant_y0,
|
|
|
|
box->descendant_x1, box->descendant_y1);
|
2008-10-13 01:22:28 +04:00
|
|
|
|
First merge of Adam Blokus' GSoC work from his branch 'branches/adamblokus/netsurf'.
Merged revisions 4212-4552,4554-4709,4711-4724 via svnmerge from
svn://svn.netsurf-browser.org/branches/adamblokus/netsurf
........
r4212 | adamblokus | 2008-05-26 19:42:31 +0200 (Mon, 26 May 2008) | 4 lines
Pdf plotting skeleton pinned on Print Preview in GTK.
Just creates a file and draws lines.
........
r4213 | adamblokus | 2008-05-27 00:11:03 +0200 (Tue, 27 May 2008) | 4 lines
Pdf plotter - added drawing some graphic primitives.
Still with limited functionality, but a snapshot of the
currently viewed page can be made and resembles the original.
........
r4214 | adamblokus | 2008-05-27 11:43:31 +0200 (Tue, 27 May 2008) | 2 lines
Corrected encoding name
........
r4215 | adamblokus | 2008-05-27 12:47:26 +0200 (Tue, 27 May 2008) | 3 lines
Colours and polygons added.
........
r4217 | adamblokus | 2008-05-27 21:39:35 +0200 (Tue, 27 May 2008) | 6 lines
Added rectangles, filled boxes and clipping.
Taken into consideration joty's comments.
Added a todo list for this part.
Added some debug stuff and checking boundaries.
........
r4218 | adamblokus | 2008-05-28 12:37:30 +0200 (Wed, 28 May 2008) | 2 lines
Added path ploting (not sure if valid argument order for bezier) and dashed/dotted line styles
........
r4221 | adamblokus | 2008-05-28 22:11:05 +0200 (Wed, 28 May 2008) | 3 lines
Some more options in graphic primitives and normalizing some parameters.
........
r4235 | adamblokus | 2008-05-31 22:54:56 +0200 (Sat, 31 May 2008) | 4 lines
Plotting changed as jmb suggested (is the least invasive one from the possible)
Added dummy bitmap plotting - way of plotting an image is determined by its type.
........
r4251 | adamblokus | 2008-06-03 17:12:15 +0200 (Tue, 03 Jun 2008) | 3 lines
Added plotting jpg and png images - quite a lot to improve in this code, but it seems to work ;)
........
r4263 | adamblokus | 2008-06-05 14:20:32 +0200 (Thu, 05 Jun 2008) | 3 lines
Added hadling images other than png and jpeg - with transparency.
........
r4267 | adamblokus | 2008-06-06 15:36:34 +0200 (Fri, 06 Jun 2008) | 5 lines
Added handling NULL-returns from all mallocs.
Added plot_bitmap_tile handling.
Changed code style a little.
........
r4327 | adamblokus | 2008-06-12 17:46:34 +0200 (Thu, 12 Jun 2008) | 5 lines
Added a first prototype of the paged-output organization.
Still not sure about naming, file locations etc.
Works with the same pdf plotting as before.
........
r4328 | adamblokus | 2008-06-13 13:52:15 +0200 (Fri, 13 Jun 2008) | 4 lines
Added primitive width adjustment and outputing the whole
website in multiple pages.
........
r4336 | joty | 2008-06-15 15:06:57 +0200 (Sun, 15 Jun 2008) | 1 line
Fix RISC OS build failure (change r4235 wasn't complete).
........
r4337 | joty | 2008-06-15 18:15:32 +0200 (Sun, 15 Jun 2008) | 16 lines
This enables "Export PDF" in RISC OS build:
- Docs/Doxyfile(PREDEFINED): Added WITH_PDF_EXPORT
- Makefile.sources(S_PDF): Add to RISC OS target as well.
- utils/config.h: Define WITH_PDF_EXPORT which controls if we want to have
PDF export functionality or not.
- riscos/save_pdf.c,riscos/save_pdf.h(save_as_pdf): Use PDF print API made
by Adam Blokus to write a PDF file under RISC OS.
- riscos/save.c: Call save_as_pdf added.
- riscos/menus.c: Add 'Export->PDF' menu entry.
- riscos/menus.h(menu_action): Added BROWSER_EXPORT_PDF.
- desktop/gui.h(gui_save_type): Added GUI_SAVE_PDF.
- desktop/print.c(print_run): Added return value.
- Makefile(CCACHE): Moved closed to the place where CC is set for the first time.
(LDFLAGS): Centralised adding all non-pkgconfig libraries and added Haru + PNG libs.
........
r4343 | adamblokus | 2008-06-16 01:08:52 +0200 (Mon, 16 Jun 2008) | 3 lines
Added margins and page size adjustment.
........
r4412 | adamblokus | 2008-06-21 20:22:07 +0200 (Sat, 21 Jun 2008) | 4 lines
Added 'fuzzy' margins on page bottom.
Disabled direct png embedding, because it is too unstable in Haru now.
........
r4421 | adamblokus | 2008-06-22 18:52:28 +0200 (Sun, 22 Jun 2008) | 2 lines
Added "Save as.." dialog and Export->PDF menu entry. Print preview still works with default path.
........
r4437 | adamblokus | 2008-06-25 02:44:46 +0200 (Wed, 25 Jun 2008) | 4 lines
Added skeleton of applying loose layout.
Minor code cleaning-up.
........
r4492 | adamblokus | 2008-07-02 09:02:42 +0200 (Wed, 02 Jul 2008) | 5 lines
Implemented the elementar ideas of the loose layout.
Added scaling in the printing routine.
Added some basic demonstrations.
........
r4493 | adamblokus | 2008-07-02 09:05:55 +0200 (Wed, 02 Jul 2008) | 3 lines
Cleaned up the loosing code - commited to much of leftover rubbish code.
........
r4507 | adamblokus | 2008-07-04 14:25:48 +0200 (Fri, 04 Jul 2008) | 4 lines
Added duplicating box tree and current content - window flickering during printing solved.
Minor error checking after new HPDF_Image_AddSMask call.
........
r4515 | adamblokus | 2008-07-06 22:28:16 +0200 (Sun, 06 Jul 2008) | 2 lines
Changes in loosen layout (image resizing).
........
r4517 | adamblokus | 2008-07-06 22:38:23 +0200 (Sun, 06 Jul 2008) | 2 lines
Added pdf font handling and rendering functions with the use of Haru functions.
........
r4555 | adamblokus | 2008-07-10 00:59:05 +0200 (Thu, 10 Jul 2008) | 2 lines
Added a very basic and still buggy GTK print implementation.
........
r4565 | adamblokus | 2008-07-10 14:50:16 +0200 (Thu, 10 Jul 2008) | 2 lines
Added gtk printing one more time - I have forgotten to add the main file.
........
r4566 | adamblokus | 2008-07-10 14:57:02 +0200 (Thu, 10 Jul 2008) | 2 lines
removed error with comment
........
r4569 | adamblokus | 2008-07-10 15:52:55 +0200 (Thu, 10 Jul 2008) | 5 lines
Major style improvements - added a lot of doxygen comments,
followed tlsa's style guide.
Added some more error checking, too.
........
r4575 | adamblokus | 2008-07-10 18:48:26 +0200 (Thu, 10 Jul 2008) | 2 lines
Cleaned up the code.
........
r4687 | adamblokus | 2008-07-17 14:17:19 +0200 (Thu, 17 Jul 2008) | 2 lines
Changed everything according to jmb's review plus some minor bug fixes to gtk_print.
........
r4688 | adamblokus | 2008-07-17 17:16:34 +0200 (Thu, 17 Jul 2008) | 2 lines
Solved the netsurf.glade clash from r4421.
........
r4693 | adamblokus | 2008-07-18 18:11:51 +0200 (Fri, 18 Jul 2008) | 2 lines
Fixed bug with wrong number of pages in gtk printing.
........
r4695 | adamblokus | 2008-07-18 19:59:24 +0200 (Fri, 18 Jul 2008) | 3 lines
- fixed uncommented line from the previous commit
- fixed bug with scale bigger than 1.0 (incorretly clipped page)
........
r4696 | adamblokus | 2008-07-18 23:28:00 +0200 (Fri, 18 Jul 2008) | 2 lines
Fixed bug in gtk_print_font_paint (and nsfont_paint).
........
r4697 | adamblokus | 2008-07-18 23:35:38 +0200 (Fri, 18 Jul 2008) | 2 lines
Bug fix in nsfont_paint.
........
r4711 | adamblokus | 2008-07-19 22:44:15 +0200 (Sat, 19 Jul 2008) | 2 lines
Added gtk_selection files.
........
r4712 | adamblokus | 2008-07-20 11:15:06 +0200 (Sun, 20 Jul 2008) | 2 lines
Addam missing glade files.
........
r4713 | joty | 2008-07-20 17:13:10 +0200 (Sun, 20 Jul 2008) | 1 line
Follow change r4517 for RISC OS and BeOS platforms : Added pdf font handling and rendering functions with the use of Haru functions.
........
r4714 | joty | 2008-07-20 18:19:50 +0200 (Sun, 20 Jul 2008) | 1 line
Declare haru_nsfont iso define an instance for each C source including the font_haru.h header. This fixes breakage of PDF export on RISC OS.
........
r4724 | adamblokus | 2008-07-23 03:30:08 +0200 (Wed, 23 Jul 2008) | 6 lines
Applied changes according to joty's review.
Added checking the dimensions of a plotted image to pdf plotter.
Commented out jpg embedding (it seems to cause some problems
I'll bring it back when I figure out what's wrong) .
Added back some files removed by mistake.
........
svn path=/trunk/netsurf/; revision=4741
2008-07-26 20:01:59 +04:00
|
|
|
fprintf(stream, "m(%i %i %i %i) ",
|
2020-04-29 22:37:42 +03:00
|
|
|
box->margin[TOP], box->margin[LEFT],
|
|
|
|
box->margin[BOTTOM], box->margin[RIGHT]);
|
2005-03-26 04:12:27 +03:00
|
|
|
|
|
|
|
switch (box->type) {
|
2020-04-29 22:37:42 +03:00
|
|
|
case BOX_BLOCK:
|
|
|
|
fprintf(stream, "BLOCK ");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BOX_INLINE_CONTAINER:
|
|
|
|
fprintf(stream, "INLINE_CONTAINER ");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BOX_INLINE:
|
|
|
|
fprintf(stream, "INLINE ");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BOX_INLINE_END:
|
|
|
|
fprintf(stream, "INLINE_END ");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BOX_INLINE_BLOCK:
|
|
|
|
fprintf(stream, "INLINE_BLOCK ");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BOX_TABLE:
|
|
|
|
fprintf(stream, "TABLE [columns %i] ", box->columns);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BOX_TABLE_ROW:
|
|
|
|
fprintf(stream, "TABLE_ROW ");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BOX_TABLE_CELL:
|
|
|
|
fprintf(stream, "TABLE_CELL [columns %i, start %i, rows %i] ",
|
|
|
|
box->columns,
|
|
|
|
box->start_column,
|
|
|
|
box->rows);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BOX_TABLE_ROW_GROUP:
|
|
|
|
fprintf(stream, "TABLE_ROW_GROUP ");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BOX_FLOAT_LEFT:
|
|
|
|
fprintf(stream, "FLOAT_LEFT ");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BOX_FLOAT_RIGHT:
|
|
|
|
fprintf(stream, "FLOAT_RIGHT ");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BOX_BR:
|
|
|
|
fprintf(stream, "BR ");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BOX_TEXT:
|
|
|
|
fprintf(stream, "TEXT ");
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
fprintf(stream, "Unknown box type ");
|
2005-03-26 04:12:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (box->text)
|
2007-08-20 06:39:49 +04:00
|
|
|
fprintf(stream, "%li '%.*s' ", (unsigned long) box->byte_offset,
|
2020-04-29 22:37:42 +03:00
|
|
|
(int) box->length, box->text);
|
2005-03-26 04:12:27 +03:00
|
|
|
if (box->space)
|
2007-08-20 06:39:49 +04:00
|
|
|
fprintf(stream, "space ");
|
2010-03-28 16:56:39 +04:00
|
|
|
if (box->object) {
|
2018-05-10 13:34:26 +03:00
|
|
|
fprintf(stream, "(object '%s') ",
|
2020-04-29 22:37:42 +03:00
|
|
|
nsurl_access(hlcache_handle_get_url(box->object)));
|
2010-03-28 16:56:39 +04:00
|
|
|
}
|
2011-06-15 00:00:18 +04:00
|
|
|
if (box->iframe) {
|
|
|
|
fprintf(stream, "(iframe) ");
|
|
|
|
}
|
2008-01-28 16:48:59 +03:00
|
|
|
if (box->gadget)
|
|
|
|
fprintf(stream, "(gadget) ");
|
2014-07-13 21:07:12 +04:00
|
|
|
if (style && box->style)
|
2009-07-24 03:05:34 +04:00
|
|
|
nscss_dump_computed_style(stream, box->style);
|
2005-08-21 02:52:20 +04:00
|
|
|
if (box->href)
|
2011-10-04 00:28:29 +04:00
|
|
|
fprintf(stream, " -> '%s'", nsurl_access(box->href));
|
2005-08-21 02:52:20 +04:00
|
|
|
if (box->target)
|
2007-08-20 06:39:49 +04:00
|
|
|
fprintf(stream, " |%s|", box->target);
|
2005-08-21 02:52:20 +04:00
|
|
|
if (box->title)
|
2007-08-20 06:39:49 +04:00
|
|
|
fprintf(stream, " [%s]", box->title);
|
2005-08-21 02:52:20 +04:00
|
|
|
if (box->id)
|
2017-04-26 17:20:31 +03:00
|
|
|
fprintf(stream, " ID:%s", lwc_string_data(box->id));
|
2005-06-06 00:54:37 +04:00
|
|
|
if (box->type == BOX_INLINE || box->type == BOX_INLINE_END)
|
2007-08-20 06:39:49 +04:00
|
|
|
fprintf(stream, " inline_end %p", box->inline_end);
|
2005-03-26 04:12:27 +03:00
|
|
|
if (box->float_children)
|
2007-08-20 06:39:49 +04:00
|
|
|
fprintf(stream, " float_children %p", box->float_children);
|
2005-03-26 04:12:27 +03:00
|
|
|
if (box->next_float)
|
2007-08-20 06:39:49 +04:00
|
|
|
fprintf(stream, " next_float %p", box->next_float);
|
2014-08-31 19:22:33 +04:00
|
|
|
if (box->float_container)
|
|
|
|
fprintf(stream, " float_container %p", box->float_container);
|
2005-07-02 21:49:40 +04:00
|
|
|
if (box->col) {
|
2007-08-20 06:39:49 +04:00
|
|
|
fprintf(stream, " (columns");
|
2020-04-29 22:37:42 +03:00
|
|
|
for (i = 0; i != box->columns; i++) {
|
2008-04-20 19:49:25 +04:00
|
|
|
fprintf(stream, " (%s %s %i %i %i)",
|
2020-04-29 22:37:42 +03:00
|
|
|
((const char *[]) {
|
|
|
|
"UNKNOWN",
|
|
|
|
"FIXED",
|
|
|
|
"AUTO",
|
|
|
|
"PERCENT",
|
|
|
|
"RELATIVE"
|
|
|
|
})
|
|
|
|
[box->col[i].type],
|
|
|
|
((const char *[]) {
|
|
|
|
"normal",
|
2008-04-20 19:49:25 +04:00
|
|
|
"positioned"})
|
2020-04-29 22:37:42 +03:00
|
|
|
[box->col[i].positioned],
|
|
|
|
box->col[i].width,
|
|
|
|
box->col[i].min, box->col[i].max);
|
|
|
|
}
|
2007-08-20 06:39:49 +04:00
|
|
|
fprintf(stream, ")");
|
2005-07-02 21:49:40 +04:00
|
|
|
}
|
2017-04-26 17:20:31 +03:00
|
|
|
if (box->node != NULL) {
|
|
|
|
dom_string *name;
|
|
|
|
if (dom_node_get_node_name(box->node, &name) == DOM_NO_ERR) {
|
|
|
|
fprintf(stream, " <%s>", dom_string_data(name));
|
|
|
|
dom_string_unref(name);
|
|
|
|
}
|
|
|
|
}
|
2007-08-20 06:39:49 +04:00
|
|
|
fprintf(stream, "\n");
|
2005-03-26 04:12:27 +03:00
|
|
|
|
2006-11-05 15:58:24 +03:00
|
|
|
if (box->list_marker) {
|
|
|
|
for (i = 0; i != depth; i++)
|
2007-08-20 06:39:49 +04:00
|
|
|
fprintf(stream, " ");
|
|
|
|
fprintf(stream, "list_marker:\n");
|
2014-07-13 21:07:12 +04:00
|
|
|
box_dump(stream, box->list_marker, depth + 1, style);
|
2006-11-05 15:58:24 +03:00
|
|
|
}
|
|
|
|
|
2005-04-17 20:42:37 +04:00
|
|
|
for (c = box->children; c && c->next; c = c->next)
|
2005-04-14 01:58:28 +04:00
|
|
|
;
|
|
|
|
if (box->last != c)
|
2007-08-20 06:39:49 +04:00
|
|
|
fprintf(stream, "warning: box->last %p (should be %p) "
|
2020-04-29 22:37:42 +03:00
|
|
|
"(box %p)\n", box->last, c, box);
|
2005-04-14 01:58:28 +04:00
|
|
|
for (prev = 0, c = box->children; c; prev = c, c = c->next) {
|
|
|
|
if (c->parent != box)
|
2007-08-20 06:39:49 +04:00
|
|
|
fprintf(stream, "warning: box->parent %p (should be "
|
2020-04-29 22:37:42 +03:00
|
|
|
"%p) (box on next line)\n",
|
|
|
|
c->parent, box);
|
2005-04-14 01:58:28 +04:00
|
|
|
if (c->prev != prev)
|
2007-08-20 06:39:49 +04:00
|
|
|
fprintf(stream, "warning: box->prev %p (should be "
|
2020-04-29 22:37:42 +03:00
|
|
|
"%p) (box on next line)\n",
|
|
|
|
c->prev, prev);
|
2014-07-13 21:07:12 +04:00
|
|
|
box_dump(stream, c, depth + 1, style);
|
2005-04-14 01:58:28 +04:00
|
|
|
}
|
2005-03-26 04:12:27 +03:00
|
|
|
}
|
First merge of Adam Blokus' GSoC work from his branch 'branches/adamblokus/netsurf'.
Merged revisions 4212-4552,4554-4709,4711-4724 via svnmerge from
svn://svn.netsurf-browser.org/branches/adamblokus/netsurf
........
r4212 | adamblokus | 2008-05-26 19:42:31 +0200 (Mon, 26 May 2008) | 4 lines
Pdf plotting skeleton pinned on Print Preview in GTK.
Just creates a file and draws lines.
........
r4213 | adamblokus | 2008-05-27 00:11:03 +0200 (Tue, 27 May 2008) | 4 lines
Pdf plotter - added drawing some graphic primitives.
Still with limited functionality, but a snapshot of the
currently viewed page can be made and resembles the original.
........
r4214 | adamblokus | 2008-05-27 11:43:31 +0200 (Tue, 27 May 2008) | 2 lines
Corrected encoding name
........
r4215 | adamblokus | 2008-05-27 12:47:26 +0200 (Tue, 27 May 2008) | 3 lines
Colours and polygons added.
........
r4217 | adamblokus | 2008-05-27 21:39:35 +0200 (Tue, 27 May 2008) | 6 lines
Added rectangles, filled boxes and clipping.
Taken into consideration joty's comments.
Added a todo list for this part.
Added some debug stuff and checking boundaries.
........
r4218 | adamblokus | 2008-05-28 12:37:30 +0200 (Wed, 28 May 2008) | 2 lines
Added path ploting (not sure if valid argument order for bezier) and dashed/dotted line styles
........
r4221 | adamblokus | 2008-05-28 22:11:05 +0200 (Wed, 28 May 2008) | 3 lines
Some more options in graphic primitives and normalizing some parameters.
........
r4235 | adamblokus | 2008-05-31 22:54:56 +0200 (Sat, 31 May 2008) | 4 lines
Plotting changed as jmb suggested (is the least invasive one from the possible)
Added dummy bitmap plotting - way of plotting an image is determined by its type.
........
r4251 | adamblokus | 2008-06-03 17:12:15 +0200 (Tue, 03 Jun 2008) | 3 lines
Added plotting jpg and png images - quite a lot to improve in this code, but it seems to work ;)
........
r4263 | adamblokus | 2008-06-05 14:20:32 +0200 (Thu, 05 Jun 2008) | 3 lines
Added hadling images other than png and jpeg - with transparency.
........
r4267 | adamblokus | 2008-06-06 15:36:34 +0200 (Fri, 06 Jun 2008) | 5 lines
Added handling NULL-returns from all mallocs.
Added plot_bitmap_tile handling.
Changed code style a little.
........
r4327 | adamblokus | 2008-06-12 17:46:34 +0200 (Thu, 12 Jun 2008) | 5 lines
Added a first prototype of the paged-output organization.
Still not sure about naming, file locations etc.
Works with the same pdf plotting as before.
........
r4328 | adamblokus | 2008-06-13 13:52:15 +0200 (Fri, 13 Jun 2008) | 4 lines
Added primitive width adjustment and outputing the whole
website in multiple pages.
........
r4336 | joty | 2008-06-15 15:06:57 +0200 (Sun, 15 Jun 2008) | 1 line
Fix RISC OS build failure (change r4235 wasn't complete).
........
r4337 | joty | 2008-06-15 18:15:32 +0200 (Sun, 15 Jun 2008) | 16 lines
This enables "Export PDF" in RISC OS build:
- Docs/Doxyfile(PREDEFINED): Added WITH_PDF_EXPORT
- Makefile.sources(S_PDF): Add to RISC OS target as well.
- utils/config.h: Define WITH_PDF_EXPORT which controls if we want to have
PDF export functionality or not.
- riscos/save_pdf.c,riscos/save_pdf.h(save_as_pdf): Use PDF print API made
by Adam Blokus to write a PDF file under RISC OS.
- riscos/save.c: Call save_as_pdf added.
- riscos/menus.c: Add 'Export->PDF' menu entry.
- riscos/menus.h(menu_action): Added BROWSER_EXPORT_PDF.
- desktop/gui.h(gui_save_type): Added GUI_SAVE_PDF.
- desktop/print.c(print_run): Added return value.
- Makefile(CCACHE): Moved closed to the place where CC is set for the first time.
(LDFLAGS): Centralised adding all non-pkgconfig libraries and added Haru + PNG libs.
........
r4343 | adamblokus | 2008-06-16 01:08:52 +0200 (Mon, 16 Jun 2008) | 3 lines
Added margins and page size adjustment.
........
r4412 | adamblokus | 2008-06-21 20:22:07 +0200 (Sat, 21 Jun 2008) | 4 lines
Added 'fuzzy' margins on page bottom.
Disabled direct png embedding, because it is too unstable in Haru now.
........
r4421 | adamblokus | 2008-06-22 18:52:28 +0200 (Sun, 22 Jun 2008) | 2 lines
Added "Save as.." dialog and Export->PDF menu entry. Print preview still works with default path.
........
r4437 | adamblokus | 2008-06-25 02:44:46 +0200 (Wed, 25 Jun 2008) | 4 lines
Added skeleton of applying loose layout.
Minor code cleaning-up.
........
r4492 | adamblokus | 2008-07-02 09:02:42 +0200 (Wed, 02 Jul 2008) | 5 lines
Implemented the elementar ideas of the loose layout.
Added scaling in the printing routine.
Added some basic demonstrations.
........
r4493 | adamblokus | 2008-07-02 09:05:55 +0200 (Wed, 02 Jul 2008) | 3 lines
Cleaned up the loosing code - commited to much of leftover rubbish code.
........
r4507 | adamblokus | 2008-07-04 14:25:48 +0200 (Fri, 04 Jul 2008) | 4 lines
Added duplicating box tree and current content - window flickering during printing solved.
Minor error checking after new HPDF_Image_AddSMask call.
........
r4515 | adamblokus | 2008-07-06 22:28:16 +0200 (Sun, 06 Jul 2008) | 2 lines
Changes in loosen layout (image resizing).
........
r4517 | adamblokus | 2008-07-06 22:38:23 +0200 (Sun, 06 Jul 2008) | 2 lines
Added pdf font handling and rendering functions with the use of Haru functions.
........
r4555 | adamblokus | 2008-07-10 00:59:05 +0200 (Thu, 10 Jul 2008) | 2 lines
Added a very basic and still buggy GTK print implementation.
........
r4565 | adamblokus | 2008-07-10 14:50:16 +0200 (Thu, 10 Jul 2008) | 2 lines
Added gtk printing one more time - I have forgotten to add the main file.
........
r4566 | adamblokus | 2008-07-10 14:57:02 +0200 (Thu, 10 Jul 2008) | 2 lines
removed error with comment
........
r4569 | adamblokus | 2008-07-10 15:52:55 +0200 (Thu, 10 Jul 2008) | 5 lines
Major style improvements - added a lot of doxygen comments,
followed tlsa's style guide.
Added some more error checking, too.
........
r4575 | adamblokus | 2008-07-10 18:48:26 +0200 (Thu, 10 Jul 2008) | 2 lines
Cleaned up the code.
........
r4687 | adamblokus | 2008-07-17 14:17:19 +0200 (Thu, 17 Jul 2008) | 2 lines
Changed everything according to jmb's review plus some minor bug fixes to gtk_print.
........
r4688 | adamblokus | 2008-07-17 17:16:34 +0200 (Thu, 17 Jul 2008) | 2 lines
Solved the netsurf.glade clash from r4421.
........
r4693 | adamblokus | 2008-07-18 18:11:51 +0200 (Fri, 18 Jul 2008) | 2 lines
Fixed bug with wrong number of pages in gtk printing.
........
r4695 | adamblokus | 2008-07-18 19:59:24 +0200 (Fri, 18 Jul 2008) | 3 lines
- fixed uncommented line from the previous commit
- fixed bug with scale bigger than 1.0 (incorretly clipped page)
........
r4696 | adamblokus | 2008-07-18 23:28:00 +0200 (Fri, 18 Jul 2008) | 2 lines
Fixed bug in gtk_print_font_paint (and nsfont_paint).
........
r4697 | adamblokus | 2008-07-18 23:35:38 +0200 (Fri, 18 Jul 2008) | 2 lines
Bug fix in nsfont_paint.
........
r4711 | adamblokus | 2008-07-19 22:44:15 +0200 (Sat, 19 Jul 2008) | 2 lines
Added gtk_selection files.
........
r4712 | adamblokus | 2008-07-20 11:15:06 +0200 (Sun, 20 Jul 2008) | 2 lines
Addam missing glade files.
........
r4713 | joty | 2008-07-20 17:13:10 +0200 (Sun, 20 Jul 2008) | 1 line
Follow change r4517 for RISC OS and BeOS platforms : Added pdf font handling and rendering functions with the use of Haru functions.
........
r4714 | joty | 2008-07-20 18:19:50 +0200 (Sun, 20 Jul 2008) | 1 line
Declare haru_nsfont iso define an instance for each C source including the font_haru.h header. This fixes breakage of PDF export on RISC OS.
........
r4724 | adamblokus | 2008-07-23 03:30:08 +0200 (Wed, 23 Jul 2008) | 6 lines
Applied changes according to joty's review.
Added checking the dimensions of a plotted image to pdf plotter.
Commented out jpg embedding (it seems to cause some problems
I'll bring it back when I figure out what's wrong) .
Added back some files removed by mistake.
........
svn path=/trunk/netsurf/; revision=4741
2008-07-26 20:01:59 +04:00
|
|
|
|
2019-11-06 02:05:42 +03:00
|
|
|
|
|
|
|
/* exported interface documented in html/box.h */
|
2020-04-29 22:37:42 +03:00
|
|
|
bool box_vscrollbar_present(const struct box * const box)
|
2009-08-14 14:37:33 +04:00
|
|
|
{
|
2020-04-29 22:37:42 +03:00
|
|
|
return box->padding[TOP] +
|
|
|
|
box->height +
|
|
|
|
box->padding[BOTTOM] +
|
|
|
|
box->border[BOTTOM].width < box->descendant_y1;
|
2009-08-14 14:37:33 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-04-29 01:30:20 +03:00
|
|
|
/* exported interface documented in html/box.h */
|
2020-04-29 22:37:42 +03:00
|
|
|
bool box_hscrollbar_present(const struct box * const box)
|
2009-08-14 14:37:33 +04:00
|
|
|
{
|
2020-04-29 22:37:42 +03:00
|
|
|
return box->padding[LEFT] +
|
|
|
|
box->width +
|
|
|
|
box->padding[RIGHT] +
|
|
|
|
box->border[RIGHT].width < box->descendant_x1;
|
2009-08-14 14:37:33 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-04-29 22:37:42 +03:00
|
|
|
/* Exported function documented in html/box.h */
|
|
|
|
struct box *
|
|
|
|
box_pick_text_box(struct html_content *html,
|
|
|
|
int x, int y,
|
|
|
|
int dir,
|
|
|
|
int *dx, int *dy)
|
2009-08-14 14:37:33 +04:00
|
|
|
{
|
2020-04-29 22:37:42 +03:00
|
|
|
struct box *text_box = NULL;
|
|
|
|
struct box *box;
|
|
|
|
int nr_xd, nr_yd;
|
|
|
|
int bx, by;
|
|
|
|
int fx, fy;
|
|
|
|
int tx, ty;
|
|
|
|
|
|
|
|
if (html == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
box = html->layout;
|
|
|
|
bx = box->margin[LEFT];
|
|
|
|
by = box->margin[TOP];
|
|
|
|
fx = bx;
|
|
|
|
fy = by;
|
|
|
|
|
|
|
|
if (!box_nearest_text_box(box, bx, by, fx, fy, x, y,
|
|
|
|
dir, &text_box, &tx, &ty, &nr_xd, &nr_yd)) {
|
|
|
|
if (text_box && text_box->text && !text_box->object) {
|
|
|
|
int w = (text_box->padding[LEFT] +
|
|
|
|
text_box->width +
|
|
|
|
text_box->padding[RIGHT]);
|
|
|
|
int h = (text_box->padding[TOP] +
|
|
|
|
text_box->height +
|
|
|
|
text_box->padding[BOTTOM]);
|
|
|
|
int x1, y1;
|
|
|
|
|
|
|
|
y1 = ty + h;
|
|
|
|
x1 = tx + w;
|
|
|
|
|
|
|
|
/* ensure point lies within the text box */
|
|
|
|
if (x < tx) x = tx;
|
|
|
|
if (y < ty) y = ty;
|
|
|
|
if (y > y1) y = y1;
|
|
|
|
if (x > x1) x = x1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* return coordinates relative to box */
|
|
|
|
*dx = x - tx;
|
|
|
|
*dy = y - ty;
|
|
|
|
|
|
|
|
return text_box;
|
2009-08-14 14:37:33 +04:00
|
|
|
}
|