2003-06-30 16:44:03 +04:00
|
|
|
/*
|
|
|
|
* This file is part of NetSurf, http://netsurf.sourceforge.net/
|
|
|
|
* Licensed under the GNU General Public License,
|
|
|
|
* http://www.opensource.org/licenses/gpl-license
|
|
|
|
* Copyright 2003 James Bursa <bursa@users.sourceforge.net>
|
|
|
|
* Copyright 2003 Phil Mellor <monkeyson@users.sourceforge.net>
|
|
|
|
* Copyright 2003 John M Bell <jmb202@ecs.soton.ac.uk>
|
2002-05-04 23:57:18 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include "libxml/HTMLparser.h"
|
2003-04-15 21:53:00 +04:00
|
|
|
#include "netsurf/content/fetchcache.h"
|
2003-04-04 19:19:32 +04:00
|
|
|
#include "netsurf/css/css.h"
|
2002-08-18 20:46:45 +04:00
|
|
|
#include "netsurf/render/box.h"
|
2003-07-05 01:17:53 +04:00
|
|
|
#include "netsurf/render/html.h"
|
2003-06-17 23:24:21 +04:00
|
|
|
#ifdef riscos
|
|
|
|
#include "netsurf/desktop/gui.h"
|
2003-05-31 22:47:00 +04:00
|
|
|
#include "netsurf/riscos/font.h"
|
2003-06-17 23:24:21 +04:00
|
|
|
#endif
|
2003-05-31 22:47:00 +04:00
|
|
|
#include "netsurf/riscos/plugin.h"
|
2003-06-17 23:24:21 +04:00
|
|
|
#define NDEBUG
|
2003-05-31 22:47:00 +04:00
|
|
|
#include "netsurf/utils/log.h"
|
2003-02-09 15:58:15 +03:00
|
|
|
#include "netsurf/utils/utils.h"
|
2002-05-04 23:57:18 +04:00
|
|
|
|
|
|
|
|
2003-07-05 01:17:53 +04:00
|
|
|
/* status for box tree construction */
|
|
|
|
struct status {
|
|
|
|
struct content *content;
|
|
|
|
char *href;
|
|
|
|
char *title;
|
|
|
|
struct form* current_form;
|
|
|
|
struct page_elements* elements;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* result of converting a special case element */
|
|
|
|
struct result {
|
|
|
|
struct box *box; /* box for element, if any, 0 otherwise */
|
|
|
|
int convert_children; /* children should be converted */
|
2003-04-15 21:53:00 +04:00
|
|
|
};
|
|
|
|
|
2003-03-04 14:59:36 +03:00
|
|
|
static void box_add_child(struct box * parent, struct box * child);
|
2003-07-05 20:16:15 +04:00
|
|
|
static struct box * box_create(struct css_style * style,
|
2003-07-01 02:21:51 +04:00
|
|
|
char *href, char *title);
|
2003-07-05 01:17:53 +04:00
|
|
|
static struct box * convert_xml_to_box(xmlNode * n, struct content *content,
|
2003-04-15 21:53:00 +04:00
|
|
|
struct css_style * parent_style,
|
2002-08-18 20:46:45 +04:00
|
|
|
struct css_selector ** selector, unsigned int depth,
|
2003-07-05 01:17:53 +04:00
|
|
|
struct box * parent, struct box *inline_container,
|
|
|
|
struct status status);
|
2003-04-06 01:38:06 +04:00
|
|
|
static struct css_style * box_get_style(struct content ** stylesheet,
|
|
|
|
unsigned int stylesheet_count, struct css_style * parent_style,
|
2002-05-22 01:32:35 +04:00
|
|
|
xmlNode * n, struct css_selector * selector, unsigned int depth);
|
2003-07-05 01:17:53 +04:00
|
|
|
static struct result box_a(xmlNode *n, struct status *status,
|
|
|
|
struct css_style *style);
|
|
|
|
static struct result box_image(xmlNode *n, struct status *status,
|
|
|
|
struct css_style *style);
|
|
|
|
static struct result box_form(xmlNode *n, struct status *status,
|
|
|
|
struct css_style *style);
|
|
|
|
static struct result box_textarea(xmlNode *n, struct status *status,
|
|
|
|
struct css_style *style);
|
|
|
|
static struct result box_select(xmlNode *n, struct status *status,
|
|
|
|
struct css_style *style);
|
|
|
|
struct result box_input(xmlNode *n, struct status *status,
|
|
|
|
struct css_style *style);
|
|
|
|
static void add_option(xmlNode* n, struct gui_gadget* current_select, char *text);
|
2003-03-04 14:59:36 +03:00
|
|
|
static void box_normalise_block(struct box *block);
|
|
|
|
static void box_normalise_table(struct box *table);
|
2003-07-07 01:10:12 +04:00
|
|
|
void box_normalise_table_row_group(struct box *row_group,
|
|
|
|
unsigned int **row_span, unsigned int *table_columns);
|
|
|
|
void box_normalise_table_row(struct box *row,
|
|
|
|
unsigned int **row_span, unsigned int *table_columns);
|
2003-03-04 14:59:36 +03:00
|
|
|
static void box_normalise_inline_container(struct box *cont);
|
|
|
|
static void gadget_free(struct gui_gadget* g);
|
|
|
|
static void box_free_box(struct box *box);
|
2003-07-08 02:10:51 +04:00
|
|
|
static struct result box_object(xmlNode *n, struct status *status,
|
|
|
|
struct css_style *style);
|
|
|
|
static struct result box_embed(xmlNode *n, struct status *status,
|
|
|
|
struct css_style *style);
|
|
|
|
static struct result box_applet(xmlNode *n, struct status *status,
|
|
|
|
struct css_style *style);
|
2003-07-05 01:17:53 +04:00
|
|
|
static struct form* create_form(xmlNode* n);
|
2003-03-04 14:59:36 +03:00
|
|
|
static void add_form_element(struct page_elements* pe, struct form* f);
|
|
|
|
static void add_gadget_element(struct page_elements* pe, struct gui_gadget* g);
|
2003-07-05 01:17:53 +04:00
|
|
|
|
|
|
|
/* element_table must be sorted by name */
|
|
|
|
struct element_entry {
|
|
|
|
char name[10]; /* element type */
|
|
|
|
struct result (*convert)(xmlNode *n, struct status *status,
|
|
|
|
struct css_style *style);
|
|
|
|
};
|
|
|
|
static const struct element_entry element_table[] = {
|
|
|
|
{"a", box_a},
|
2003-07-08 02:10:51 +04:00
|
|
|
// {"applet", box_applet},
|
|
|
|
{"embed", box_embed},
|
2003-07-05 01:17:53 +04:00
|
|
|
{"form", box_form},
|
|
|
|
{"img", box_image},
|
|
|
|
{"input", box_input},
|
2003-07-08 02:10:51 +04:00
|
|
|
{"object", box_object},
|
2003-07-05 01:17:53 +04:00
|
|
|
{"select", box_select},
|
|
|
|
{"textarea", box_textarea}
|
|
|
|
};
|
|
|
|
#define ELEMENT_TABLE_COUNT (sizeof(element_table) / sizeof(element_table[0]))
|
2002-05-04 23:57:18 +04:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* add a child to a box tree node
|
|
|
|
*/
|
|
|
|
|
|
|
|
void box_add_child(struct box * parent, struct box * child)
|
|
|
|
{
|
2003-01-02 16:26:43 +03:00
|
|
|
if (parent->children != 0) { /* has children already */
|
2002-05-04 23:57:18 +04:00
|
|
|
parent->last->next = child;
|
2003-01-02 16:26:43 +03:00
|
|
|
child->prev = parent->last;
|
|
|
|
} else { /* this is the first child */
|
2002-05-04 23:57:18 +04:00
|
|
|
parent->children = child;
|
2003-01-02 16:26:43 +03:00
|
|
|
child->prev = 0;
|
|
|
|
}
|
2002-05-04 23:57:18 +04:00
|
|
|
|
|
|
|
parent->last = child;
|
|
|
|
child->parent = parent;
|
|
|
|
}
|
|
|
|
|
2002-06-27 03:27:30 +04:00
|
|
|
/**
|
|
|
|
* create a box tree node
|
|
|
|
*/
|
|
|
|
|
2003-07-05 20:16:15 +04:00
|
|
|
struct box * box_create(struct css_style * style,
|
2003-07-01 02:21:51 +04:00
|
|
|
char *href, char *title)
|
2002-06-27 03:27:30 +04:00
|
|
|
{
|
|
|
|
struct box * box = xcalloc(1, sizeof(struct box));
|
2003-07-05 20:16:15 +04:00
|
|
|
box->type = BOX_INLINE;
|
2002-06-27 03:27:30 +04:00
|
|
|
box->style = style;
|
2002-09-19 23:54:43 +04:00
|
|
|
box->width = UNKNOWN_WIDTH;
|
2002-09-18 23:36:28 +04:00
|
|
|
box->max_width = UNKNOWN_MAX_WIDTH;
|
2002-08-12 03:01:02 +04:00
|
|
|
box->href = href;
|
2003-07-01 02:21:51 +04:00
|
|
|
box->title = title;
|
2002-09-18 23:36:28 +04:00
|
|
|
box->columns = 1;
|
2003-07-05 23:51:10 +04:00
|
|
|
box->rows = 1;
|
2003-07-05 01:17:53 +04:00
|
|
|
#ifndef riscos
|
|
|
|
/* under RISC OS, xcalloc makes these unnecessary */
|
|
|
|
box->text = 0;
|
|
|
|
box->space = 0;
|
|
|
|
box->length = 0;
|
2003-07-07 01:10:12 +04:00
|
|
|
box->start_column = 0;
|
2002-08-18 20:46:45 +04:00
|
|
|
box->next = 0;
|
2003-01-02 16:26:43 +03:00
|
|
|
box->prev = 0;
|
2002-08-18 20:46:45 +04:00
|
|
|
box->children = 0;
|
|
|
|
box->last = 0;
|
|
|
|
box->parent = 0;
|
|
|
|
box->float_children = 0;
|
|
|
|
box->next_float = 0;
|
2002-09-18 23:36:28 +04:00
|
|
|
box->col = 0;
|
2002-09-27 01:38:33 +04:00
|
|
|
box->font = 0;
|
2002-12-30 01:27:35 +03:00
|
|
|
box->gadget = 0;
|
2003-04-15 21:53:00 +04:00
|
|
|
box->object = 0;
|
2003-07-05 01:17:53 +04:00
|
|
|
#endif
|
2002-06-27 03:27:30 +04:00
|
|
|
return box;
|
|
|
|
}
|
2002-05-04 23:57:18 +04:00
|
|
|
|
2002-09-12 01:19:24 +04:00
|
|
|
|
2003-04-15 21:53:00 +04:00
|
|
|
/**
|
|
|
|
* make a box tree with style data from an xml tree
|
|
|
|
*/
|
|
|
|
|
|
|
|
void xml_to_box(xmlNode *n, struct content *c)
|
|
|
|
{
|
|
|
|
struct css_selector* selector = xcalloc(1, sizeof(struct css_selector));
|
2003-07-05 01:17:53 +04:00
|
|
|
struct status status = {c, 0, 0, 0, &c->data.html.elements};
|
2003-04-15 21:53:00 +04:00
|
|
|
|
|
|
|
LOG(("node %p", n));
|
|
|
|
assert(c->type == CONTENT_HTML);
|
|
|
|
|
|
|
|
c->data.html.layout = xcalloc(1, sizeof(struct box));
|
|
|
|
c->data.html.layout->type = BOX_BLOCK;
|
|
|
|
|
|
|
|
c->data.html.style = xcalloc(1, sizeof(struct css_style));
|
|
|
|
memcpy(c->data.html.style, &css_base_style, sizeof(struct css_style));
|
|
|
|
c->data.html.fonts = font_new_set();
|
|
|
|
|
|
|
|
c->data.html.object_count = 0;
|
|
|
|
c->data.html.object = xcalloc(0, sizeof(*c->data.html.object));
|
|
|
|
|
|
|
|
convert_xml_to_box(n, c, c->data.html.style,
|
2003-07-05 01:17:53 +04:00
|
|
|
&selector, 0, c->data.html.layout, 0, status);
|
2003-04-15 21:53:00 +04:00
|
|
|
LOG(("normalising"));
|
|
|
|
box_normalise_block(c->data.html.layout->children);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-05-04 23:57:18 +04:00
|
|
|
/**
|
|
|
|
* make a box tree with style data from an xml tree
|
|
|
|
*
|
|
|
|
* arguments:
|
|
|
|
* n xml tree
|
2003-04-15 21:53:00 +04:00
|
|
|
* content content structure
|
2002-05-04 23:57:18 +04:00
|
|
|
* parent_style style at this point in xml tree
|
|
|
|
* selector element selector hierachy to this point
|
|
|
|
* depth depth in xml tree
|
|
|
|
* parent parent in box tree
|
|
|
|
* inline_container current inline container box, or 0
|
2003-07-05 01:17:53 +04:00
|
|
|
* status status for forms etc.
|
2002-05-04 23:57:18 +04:00
|
|
|
*
|
|
|
|
* returns:
|
|
|
|
* updated current inline container
|
|
|
|
*/
|
|
|
|
|
2003-07-05 20:16:15 +04:00
|
|
|
/* mapping from CSS display to box type
|
|
|
|
* this table must be in sync with css/css_enums */
|
|
|
|
static box_type box_map[] = {
|
|
|
|
0, /*CSS_DISPLAY_INHERIT,*/
|
|
|
|
BOX_INLINE, /*CSS_DISPLAY_INLINE,*/
|
|
|
|
BOX_BLOCK, /*CSS_DISPLAY_BLOCK,*/
|
|
|
|
BOX_BLOCK, /*CSS_DISPLAY_LIST_ITEM,*/
|
|
|
|
BOX_INLINE, /*CSS_DISPLAY_RUN_IN,*/
|
|
|
|
BOX_INLINE, /*CSS_DISPLAY_COMPACT,*/
|
|
|
|
BOX_INLINE, /*CSS_DISPLAY_MARKER,*/
|
|
|
|
BOX_TABLE, /*CSS_DISPLAY_TABLE,*/
|
|
|
|
BOX_TABLE, /*CSS_DISPLAY_INLINE_TABLE,*/
|
|
|
|
BOX_TABLE_ROW_GROUP, /*CSS_DISPLAY_TABLE_ROW_GROUP,*/
|
|
|
|
BOX_TABLE_ROW_GROUP, /*CSS_DISPLAY_TABLE_HEADER_GROUP,*/
|
|
|
|
BOX_TABLE_ROW_GROUP, /*CSS_DISPLAY_TABLE_FOOTER_GROUP,*/
|
|
|
|
BOX_TABLE_ROW, /*CSS_DISPLAY_TABLE_ROW,*/
|
|
|
|
BOX_INLINE, /*CSS_DISPLAY_TABLE_COLUMN_GROUP,*/
|
|
|
|
BOX_INLINE, /*CSS_DISPLAY_TABLE_COLUMN,*/
|
|
|
|
BOX_TABLE_CELL, /*CSS_DISPLAY_TABLE_CELL,*/
|
|
|
|
BOX_INLINE /*CSS_DISPLAY_TABLE_CAPTION,*/
|
|
|
|
};
|
|
|
|
|
2003-04-15 21:53:00 +04:00
|
|
|
struct box * convert_xml_to_box(xmlNode * n, struct content *content,
|
|
|
|
struct css_style * parent_style,
|
2002-05-04 23:57:18 +04:00
|
|
|
struct css_selector ** selector, unsigned int depth,
|
2003-07-05 01:17:53 +04:00
|
|
|
struct box * parent, struct box *inline_container,
|
|
|
|
struct status status)
|
2002-05-04 23:57:18 +04:00
|
|
|
{
|
2003-01-07 02:53:40 +03:00
|
|
|
struct box * box = 0;
|
2002-05-04 23:57:18 +04:00
|
|
|
struct box * inline_container_c;
|
2003-04-13 16:50:10 +04:00
|
|
|
struct css_style * style = 0;
|
2002-05-04 23:57:18 +04:00
|
|
|
xmlNode * c;
|
2002-06-27 03:27:30 +04:00
|
|
|
char * s;
|
2003-01-07 02:53:40 +03:00
|
|
|
char * text = 0;
|
2003-07-01 02:21:51 +04:00
|
|
|
xmlChar * title0;
|
|
|
|
char * title = 0;
|
2003-07-05 01:17:53 +04:00
|
|
|
int convert_children = 1;
|
2002-05-04 23:57:18 +04:00
|
|
|
|
2003-07-05 01:17:53 +04:00
|
|
|
assert(n != 0 && parent_style != 0 && selector != 0 && parent != 0);
|
2002-10-08 13:38:29 +04:00
|
|
|
LOG(("depth %i, node %p, node type %i", depth, n, n->type));
|
2002-09-11 18:24:02 +04:00
|
|
|
gui_multitask();
|
|
|
|
|
2002-05-04 23:57:18 +04:00
|
|
|
if (n->type == XML_ELEMENT_NODE) {
|
2003-07-05 01:17:53 +04:00
|
|
|
struct element_entry *element;
|
|
|
|
|
2002-05-04 23:57:18 +04:00
|
|
|
/* work out the style for this element */
|
|
|
|
*selector = xrealloc(*selector, (depth + 1) * sizeof(struct css_selector));
|
2002-06-26 16:19:24 +04:00
|
|
|
(*selector)[depth].element = (const char *) n->name;
|
2002-05-04 23:57:18 +04:00
|
|
|
(*selector)[depth].class = (*selector)[depth].id = 0;
|
2003-04-13 16:50:10 +04:00
|
|
|
if ((s = (char *) xmlGetProp(n, (const xmlChar *) "class")))
|
|
|
|
(*selector)[depth].class = s; /* TODO: free this later */
|
|
|
|
if ((s = (char *) xmlGetProp(n, (const xmlChar *) "id")))
|
|
|
|
(*selector)[depth].id = s;
|
2003-04-15 21:53:00 +04:00
|
|
|
style = box_get_style(content->data.html.stylesheet_content,
|
|
|
|
content->data.html.stylesheet_count, parent_style, n,
|
2003-04-06 01:38:06 +04:00
|
|
|
*selector, depth + 1);
|
2002-10-08 13:38:29 +04:00
|
|
|
LOG(("display: %s", css_display_name[style->display]));
|
2003-04-13 16:50:10 +04:00
|
|
|
if (style->display == CSS_DISPLAY_NONE) {
|
|
|
|
free(style);
|
2003-07-05 01:17:53 +04:00
|
|
|
LOG(("depth %i, node %p, node type %i END", depth, n, n->type));
|
2002-06-29 00:14:04 +04:00
|
|
|
return inline_container;
|
2003-04-13 16:50:10 +04:00
|
|
|
}
|
2003-04-15 21:53:00 +04:00
|
|
|
/* floats are treated as blocks */
|
|
|
|
if (style->float_ == CSS_FLOAT_LEFT || style->float_ == CSS_FLOAT_RIGHT)
|
|
|
|
if (style->display == CSS_DISPLAY_INLINE)
|
|
|
|
style->display = CSS_DISPLAY_BLOCK;
|
2002-08-12 03:01:02 +04:00
|
|
|
|
2003-07-01 02:21:51 +04:00
|
|
|
/* extract title attribute, if present */
|
|
|
|
if ((title0 = xmlGetProp(n, (const xmlChar *) "title"))) {
|
|
|
|
title = squash_tolat1(title0);
|
|
|
|
xfree(title0);
|
|
|
|
}
|
|
|
|
|
2003-01-07 02:53:40 +03:00
|
|
|
/* special elements */
|
2003-07-05 01:17:53 +04:00
|
|
|
element = bsearch((const char *) n->name, element_table,
|
|
|
|
ELEMENT_TABLE_COUNT, sizeof(element_table[0]),
|
|
|
|
(int (*)(const void *, const void *)) strcmp);
|
|
|
|
if (element != 0) {
|
2003-07-05 20:16:15 +04:00
|
|
|
/* a special convert function exists for this element */
|
2003-07-05 01:17:53 +04:00
|
|
|
struct result res = element->convert(n, &status, style);
|
|
|
|
box = res.box;
|
|
|
|
convert_children = res.convert_children;
|
2003-07-05 20:16:15 +04:00
|
|
|
if (box == 0) {
|
|
|
|
/* no box for this element */
|
|
|
|
assert(convert_children == 0);
|
|
|
|
LOG(("depth %i, node %p, node type %i END", depth, n, n->type));
|
|
|
|
return inline_container;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* general element */
|
|
|
|
box = box_create(style, status.href, title);
|
2003-01-07 02:53:40 +03:00
|
|
|
}
|
2003-07-05 23:51:10 +04:00
|
|
|
box->type = box_map[style->display];
|
2003-01-07 02:53:40 +03:00
|
|
|
|
|
|
|
} else if (n->type == XML_TEXT_NODE) {
|
2003-04-12 01:06:51 +04:00
|
|
|
text = squash_tolat1(n->content);
|
2003-03-26 00:51:29 +03:00
|
|
|
|
2003-07-05 01:17:53 +04:00
|
|
|
/* if the text is just a space, combine it with the preceding
|
|
|
|
* text node, if any */
|
2003-01-07 02:53:40 +03:00
|
|
|
if (text[0] == ' ' && text[1] == 0) {
|
|
|
|
if (inline_container != 0) {
|
|
|
|
assert(inline_container->last != 0);
|
|
|
|
inline_container->last->space = 1;
|
|
|
|
}
|
|
|
|
xfree(text);
|
2003-07-05 01:17:53 +04:00
|
|
|
LOG(("depth %i, node %p, node type %i END", depth, n, n->type));
|
2003-01-07 02:53:40 +03:00
|
|
|
return inline_container;
|
2002-12-31 01:56:30 +03:00
|
|
|
}
|
2003-07-05 01:17:53 +04:00
|
|
|
|
|
|
|
/* text nodes are converted to inline boxes */
|
2003-07-05 20:16:15 +04:00
|
|
|
box = box_create(parent_style, status.href, title);
|
2003-07-05 01:17:53 +04:00
|
|
|
box->length = strlen(text);
|
|
|
|
if (text[box->length - 1] == ' ') {
|
|
|
|
box->space = 1;
|
|
|
|
box->length--;
|
|
|
|
}
|
|
|
|
box->text = text;
|
|
|
|
box->font = font_open(content->data.html.fonts, box->style);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
/* not an element or text node: ignore it (eg. comment) */
|
|
|
|
LOG(("depth %i, node %p, node type %i END", depth, n, n->type));
|
|
|
|
return inline_container;
|
2002-12-31 01:56:30 +03:00
|
|
|
}
|
2003-01-07 02:53:40 +03:00
|
|
|
|
2003-07-05 01:17:53 +04:00
|
|
|
content->size += sizeof(struct box) + sizeof(struct css_style);
|
2003-07-05 20:16:15 +04:00
|
|
|
assert(box != 0);
|
2003-07-05 01:17:53 +04:00
|
|
|
|
2003-03-26 00:51:29 +03:00
|
|
|
if (text != 0 ||
|
2003-07-05 23:51:10 +04:00
|
|
|
box->type == BOX_INLINE ||
|
2003-07-05 01:17:53 +04:00
|
|
|
style->float_ == CSS_FLOAT_LEFT ||
|
|
|
|
style->float_ == CSS_FLOAT_RIGHT) {
|
|
|
|
/* this is an inline box */
|
2003-01-07 02:53:40 +03:00
|
|
|
if (inline_container == 0) {
|
2003-01-02 16:26:43 +03:00
|
|
|
/* this is the first inline node: make a container */
|
2002-05-22 01:32:35 +04:00
|
|
|
inline_container = xcalloc(1, sizeof(struct box));
|
|
|
|
inline_container->type = BOX_INLINE_CONTAINER;
|
|
|
|
box_add_child(parent, inline_container);
|
|
|
|
}
|
2003-01-07 02:53:40 +03:00
|
|
|
|
2003-07-05 20:16:15 +04:00
|
|
|
if (text != 0) {
|
|
|
|
/* text box */
|
2003-01-04 01:19:39 +03:00
|
|
|
box_add_child(inline_container, box);
|
2003-07-05 20:16:15 +04:00
|
|
|
if (text[0] == ' ') {
|
2003-01-04 01:19:39 +03:00
|
|
|
box->length--;
|
|
|
|
memmove(text, text + 1, box->length);
|
|
|
|
if (box->prev != 0)
|
|
|
|
box->prev->space = 1;
|
|
|
|
}
|
2003-07-05 01:17:53 +04:00
|
|
|
LOG(("depth %i, node %p, node type %i END", depth, n, n->type));
|
|
|
|
return inline_container;
|
2003-07-05 20:16:15 +04:00
|
|
|
} else if (style->float_ == CSS_FLOAT_NONE) {
|
|
|
|
/* inline box: add to tree and recurse */
|
|
|
|
box_add_child(inline_container, box);
|
|
|
|
if (convert_children) {
|
|
|
|
for (c = n->children; c != 0; c = c->next)
|
|
|
|
inline_container = convert_xml_to_box(c, content, style,
|
|
|
|
selector, depth + 1, parent, inline_container,
|
|
|
|
status);
|
|
|
|
}
|
|
|
|
LOG(("depth %i, node %p, node type %i END", depth, n, n->type));
|
|
|
|
return inline_container;
|
2003-07-05 01:17:53 +04:00
|
|
|
} else {
|
|
|
|
/* float: insert a float box between the parent and current node */
|
|
|
|
assert(style->float_ == CSS_FLOAT_LEFT || style->float_ == CSS_FLOAT_RIGHT);
|
2003-01-07 02:53:40 +03:00
|
|
|
LOG(("float"));
|
2003-07-05 20:16:15 +04:00
|
|
|
parent = box_create(0, status.href, title);
|
|
|
|
if (style->float_ == CSS_FLOAT_LEFT)
|
|
|
|
parent->type = BOX_FLOAT_LEFT;
|
|
|
|
else
|
|
|
|
parent->type = BOX_FLOAT_RIGHT;
|
2003-01-07 02:53:40 +03:00
|
|
|
box_add_child(inline_container, parent);
|
2003-07-05 23:51:10 +04:00
|
|
|
if (box->type == BOX_INLINE)
|
|
|
|
box->type = BOX_BLOCK;
|
2002-05-05 01:17:06 +04:00
|
|
|
}
|
2002-06-29 00:14:04 +04:00
|
|
|
}
|
2002-05-05 01:17:06 +04:00
|
|
|
|
2003-07-05 01:17:53 +04:00
|
|
|
assert(n->type == XML_ELEMENT_NODE);
|
2003-07-05 20:16:15 +04:00
|
|
|
assert(CSS_DISPLAY_INLINE < style->display &&
|
|
|
|
style->display < CSS_DISPLAY_NONE);
|
|
|
|
|
|
|
|
/* non-inline box: add to tree and recurse */
|
|
|
|
box_add_child(parent, box);
|
|
|
|
if (convert_children) {
|
|
|
|
inline_container_c = 0;
|
|
|
|
for (c = n->children; c != 0; c = c->next)
|
|
|
|
inline_container_c = convert_xml_to_box(c, content, style,
|
|
|
|
selector, depth + 1, box, inline_container_c,
|
|
|
|
status);
|
|
|
|
}
|
|
|
|
if (style->float_ == CSS_FLOAT_NONE)
|
|
|
|
/* new inline container unless this is a float */
|
|
|
|
inline_container = 0;
|
2003-07-05 01:17:53 +04:00
|
|
|
|
2003-07-05 20:16:15 +04:00
|
|
|
if ((s = (char *) xmlGetProp(n, (const xmlChar *) "colspan"))) {
|
|
|
|
if ((box->columns = strtol(s, 0, 10)) == 0)
|
|
|
|
box->columns = 1;
|
|
|
|
xmlFree(s);
|
|
|
|
}
|
2003-07-05 23:51:10 +04:00
|
|
|
if ((s = (char *) xmlGetProp(n, (const xmlChar *) "rowspan"))) {
|
|
|
|
if ((box->rows = strtol(s, 0, 10)) == 0)
|
|
|
|
box->rows = 1;
|
|
|
|
xmlFree(s);
|
|
|
|
}
|
2002-05-04 23:57:18 +04:00
|
|
|
|
2002-10-08 13:38:29 +04:00
|
|
|
LOG(("depth %i, node %p, node type %i END", depth, n, n->type));
|
2002-05-04 23:57:18 +04:00
|
|
|
return inline_container;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-09-08 22:11:56 +04:00
|
|
|
/**
|
2003-07-05 01:17:53 +04:00
|
|
|
* Get the style for an element
|
|
|
|
*
|
|
|
|
* The style is collected from three sources:
|
|
|
|
* 1. any styles for this element in the document stylesheet(s)
|
|
|
|
* 2. non-CSS HTML attributes
|
|
|
|
* 3. the 'style' attribute
|
2002-05-22 01:32:35 +04:00
|
|
|
*/
|
|
|
|
|
2003-04-06 01:38:06 +04:00
|
|
|
struct css_style * box_get_style(struct content ** stylesheet,
|
|
|
|
unsigned int stylesheet_count, struct css_style * parent_style,
|
2002-05-22 01:32:35 +04:00
|
|
|
xmlNode * n, struct css_selector * selector, unsigned int depth)
|
|
|
|
{
|
|
|
|
struct css_style * style = xcalloc(1, sizeof(struct css_style));
|
2003-04-06 01:38:06 +04:00
|
|
|
struct css_style * style_new = xcalloc(1, sizeof(struct css_style));
|
2002-06-26 16:19:24 +04:00
|
|
|
char * s;
|
2003-04-06 01:38:06 +04:00
|
|
|
unsigned int i;
|
2002-05-22 01:32:35 +04:00
|
|
|
|
|
|
|
memcpy(style, parent_style, sizeof(struct css_style));
|
2003-04-06 01:38:06 +04:00
|
|
|
memcpy(style_new, &css_blank_style, sizeof(struct css_style));
|
|
|
|
for (i = 0; i != stylesheet_count; i++) {
|
|
|
|
if (stylesheet[i] != 0) {
|
|
|
|
assert(stylesheet[i]->type == CONTENT_CSS);
|
2003-04-06 22:09:34 +04:00
|
|
|
css_get_style(stylesheet[i], selector, depth, style_new);
|
2003-04-06 01:38:06 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
css_cascade(style, style_new);
|
|
|
|
free(style_new);
|
2002-05-22 01:32:35 +04:00
|
|
|
|
2003-01-08 02:15:23 +03:00
|
|
|
if ((s = (char *) xmlGetProp(n, (const xmlChar *) "align"))) {
|
2002-06-29 00:14:04 +04:00
|
|
|
if (strcmp((const char *) n->name, "table") == 0 ||
|
|
|
|
strcmp((const char *) n->name, "img") == 0) {
|
2003-01-07 02:53:40 +03:00
|
|
|
if (stricmp(s, "left") == 0) style->float_ = CSS_FLOAT_LEFT;
|
|
|
|
else if (stricmp(s, "right") == 0) style->float_ = CSS_FLOAT_RIGHT;
|
2002-06-29 00:14:04 +04:00
|
|
|
} else {
|
2003-01-07 02:53:40 +03:00
|
|
|
if (stricmp(s, "left") == 0) style->text_align = CSS_TEXT_ALIGN_LEFT;
|
|
|
|
else if (stricmp(s, "center") == 0) style->text_align = CSS_TEXT_ALIGN_CENTER;
|
|
|
|
else if (stricmp(s, "right") == 0) style->text_align = CSS_TEXT_ALIGN_RIGHT;
|
2002-06-29 00:14:04 +04:00
|
|
|
}
|
2003-04-25 12:03:15 +04:00
|
|
|
xmlFree(s);
|
2002-06-29 00:14:04 +04:00
|
|
|
}
|
|
|
|
|
2003-01-08 02:15:23 +03:00
|
|
|
if ((s = (char *) xmlGetProp(n, (const xmlChar *) "bgcolor"))) {
|
2002-12-27 23:35:32 +03:00
|
|
|
unsigned int r, g, b;
|
|
|
|
if (s[0] == '#' && sscanf(s + 1, "%2x%2x%2x", &r, &g, &b) == 3)
|
|
|
|
style->background_color = (b << 16) | (g << 8) | r;
|
2003-04-13 16:50:10 +04:00
|
|
|
else if (s[0] != '#')
|
|
|
|
style->background_color = named_colour(s);
|
2003-04-25 12:03:15 +04:00
|
|
|
xmlFree(s);
|
2002-12-27 23:35:32 +03:00
|
|
|
}
|
|
|
|
|
2003-01-08 02:15:23 +03:00
|
|
|
if ((s = (char *) xmlGetProp(n, (const xmlChar *) "clear"))) {
|
2003-01-07 02:53:40 +03:00
|
|
|
if (stricmp(s, "all") == 0) style->clear = CSS_CLEAR_BOTH;
|
|
|
|
else if (stricmp(s, "left") == 0) style->clear = CSS_CLEAR_LEFT;
|
|
|
|
else if (stricmp(s, "right") == 0) style->clear = CSS_CLEAR_RIGHT;
|
2003-04-25 12:03:15 +04:00
|
|
|
xmlFree(s);
|
2002-06-21 22:16:24 +04:00
|
|
|
}
|
|
|
|
|
2003-01-08 02:15:23 +03:00
|
|
|
if ((s = (char *) xmlGetProp(n, (const xmlChar *) "color"))) {
|
2002-12-27 23:35:32 +03:00
|
|
|
unsigned int r, g, b;
|
|
|
|
if (s[0] == '#' && sscanf(s + 1, "%2x%2x%2x", &r, &g, &b) == 3)
|
|
|
|
style->color = (b << 16) | (g << 8) | r;
|
2003-04-13 16:50:10 +04:00
|
|
|
else if (s[0] != '#')
|
|
|
|
style->color = named_colour(s);
|
2003-04-25 12:03:15 +04:00
|
|
|
xmlFree(s);
|
2002-12-27 23:35:32 +03:00
|
|
|
}
|
|
|
|
|
2003-01-08 02:15:23 +03:00
|
|
|
if ((s = (char *) xmlGetProp(n, (const xmlChar *) "height"))) {
|
2003-01-07 02:53:40 +03:00
|
|
|
style->height.height = CSS_HEIGHT_LENGTH;
|
|
|
|
style->height.length.unit = CSS_UNIT_PX;
|
|
|
|
style->height.length.value = atof(s);
|
2003-04-25 12:03:15 +04:00
|
|
|
xmlFree(s);
|
2003-01-07 02:53:40 +03:00
|
|
|
}
|
|
|
|
|
2003-01-08 02:24:43 +03:00
|
|
|
if (strcmp((const char *) n->name, "body") == 0) {
|
|
|
|
if ((s = (char *) xmlGetProp(n, (const xmlChar *) "text"))) {
|
|
|
|
unsigned int r, g, b;
|
|
|
|
if (s[0] == '#' && sscanf(s + 1, "%2x%2x%2x", &r, &g, &b) == 3)
|
|
|
|
style->color = (b << 16) | (g << 8) | r;
|
2003-04-13 16:50:10 +04:00
|
|
|
else if (s[0] != '#')
|
|
|
|
style->color = named_colour(s);
|
2003-04-25 12:03:15 +04:00
|
|
|
xmlFree(s);
|
2003-01-08 02:24:43 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-01-08 02:15:23 +03:00
|
|
|
if ((s = (char *) xmlGetProp(n, (const xmlChar *) "width"))) {
|
2002-08-12 03:01:02 +04:00
|
|
|
if (strrchr(s, '%')) {
|
|
|
|
style->width.width = CSS_WIDTH_PERCENT;
|
2002-05-22 01:32:35 +04:00
|
|
|
style->width.value.percent = atof(s);
|
2002-08-12 03:01:02 +04:00
|
|
|
} else {
|
|
|
|
style->width.width = CSS_WIDTH_LENGTH;
|
|
|
|
style->width.value.length.unit = CSS_UNIT_PX;
|
2002-05-22 01:32:35 +04:00
|
|
|
style->width.value.length.value = atof(s);
|
2002-08-12 03:01:02 +04:00
|
|
|
}
|
2003-04-25 12:03:15 +04:00
|
|
|
xmlFree(s);
|
2002-05-22 01:32:35 +04:00
|
|
|
}
|
|
|
|
|
2003-01-08 02:15:23 +03:00
|
|
|
if ((s = (char *) xmlGetProp(n, (const xmlChar *) "style"))) {
|
2002-05-22 01:32:35 +04:00
|
|
|
struct css_style * astyle = xcalloc(1, sizeof(struct css_style));
|
|
|
|
memcpy(astyle, &css_empty_style, sizeof(struct css_style));
|
|
|
|
css_parse_property_list(astyle, s);
|
|
|
|
css_cascade(style, astyle);
|
|
|
|
free(astyle);
|
2003-04-25 12:03:15 +04:00
|
|
|
xmlFree(s);
|
2002-05-22 01:32:35 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return style;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-07-05 01:17:53 +04:00
|
|
|
/**
|
|
|
|
* Special case elements
|
|
|
|
*
|
|
|
|
* These functions are called by convert_xml_to_box when an element is being
|
|
|
|
* converted, according to the entries in element_table (top of file).
|
|
|
|
*
|
|
|
|
* The parameters are the xmlNode, a status structure for the conversion, and
|
|
|
|
* the style found for the element.
|
|
|
|
*
|
|
|
|
* If a box is created, it is returned in the result structure. The
|
|
|
|
* convert_children field should be 1 if convert_xml_to_box should convert the
|
|
|
|
* node's children recursively, 0 if it should ignore them (presumably they
|
2003-07-05 20:16:15 +04:00
|
|
|
* have been processed in some way by the function). If box is 0, no box will
|
|
|
|
* be created for that element, and convert_children must be 0.
|
2003-07-05 01:17:53 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
struct result box_a(xmlNode *n, struct status *status,
|
|
|
|
struct css_style *style)
|
|
|
|
{
|
2003-07-05 20:16:15 +04:00
|
|
|
struct box *box;
|
2003-07-05 01:17:53 +04:00
|
|
|
char *s;
|
2003-07-05 20:16:15 +04:00
|
|
|
box = box_create(style, status->href, status->title);
|
2003-07-05 01:17:53 +04:00
|
|
|
if ((s = (char *) xmlGetProp(n, (const xmlChar *) "href")))
|
|
|
|
status->href = s;
|
2003-07-05 20:16:15 +04:00
|
|
|
return (struct result) {box, 1};
|
2003-07-05 01:17:53 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
struct result box_image(xmlNode *n, struct status *status,
|
|
|
|
struct css_style *style)
|
|
|
|
{
|
|
|
|
struct box *box;
|
|
|
|
char *s, *url;
|
|
|
|
/*xmlChar *s2;*/
|
|
|
|
|
2003-07-05 20:16:15 +04:00
|
|
|
box = box_create(style, status->href, status->title);
|
2003-07-05 01:17:53 +04:00
|
|
|
|
|
|
|
/* handle alt text */
|
|
|
|
/*if ((s2 = xmlGetProp(n, (const xmlChar *) "alt"))) {
|
|
|
|
box->text = squash_tolat1(s2);
|
|
|
|
box->length = strlen(box->text);
|
|
|
|
box->font = font_open(content->data.html.fonts, style);
|
|
|
|
free(s2);
|
|
|
|
}*/
|
|
|
|
|
|
|
|
/* img without src is an error */
|
|
|
|
if (!(s = (char *) xmlGetProp(n, (const xmlChar *) "src")))
|
|
|
|
return (struct result) {box, 0};
|
|
|
|
|
|
|
|
url = url_join(s, status->content->url);
|
|
|
|
LOG(("image '%s'", url));
|
|
|
|
xmlFree(s);
|
|
|
|
|
|
|
|
/* start fetch */
|
|
|
|
html_fetch_object(status->content, url, box);
|
|
|
|
|
|
|
|
return (struct result) {box, 0};
|
|
|
|
}
|
|
|
|
|
|
|
|
struct result box_form(xmlNode *n, struct status *status,
|
|
|
|
struct css_style *style)
|
|
|
|
{
|
2003-07-05 20:16:15 +04:00
|
|
|
struct box *box;
|
|
|
|
box = box_create(style, status->href, status->title);
|
2003-07-05 01:17:53 +04:00
|
|
|
status->current_form = create_form(n);
|
|
|
|
add_form_element(status->elements, status->current_form);
|
2003-07-05 20:16:15 +04:00
|
|
|
return (struct result) {box, 1};
|
2003-07-05 01:17:53 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
struct result box_textarea(xmlNode *n, struct status *status,
|
|
|
|
struct css_style *style)
|
|
|
|
{
|
|
|
|
xmlChar *content;
|
|
|
|
struct box* box = 0;
|
|
|
|
char* s;
|
|
|
|
|
2003-07-05 20:16:15 +04:00
|
|
|
box = box_create(style, NULL, 0);
|
2003-07-05 01:17:53 +04:00
|
|
|
box->gadget = xcalloc(1, sizeof(struct gui_gadget));
|
|
|
|
box->gadget->type = GADGET_TEXTAREA;
|
|
|
|
box->gadget->form = status->current_form;
|
|
|
|
|
|
|
|
content = xmlNodeGetContent(n);
|
|
|
|
box->gadget->data.textarea.text = squash_tolat1(content); /* squash ? */
|
|
|
|
xmlFree(content);
|
|
|
|
|
|
|
|
if ((s = (char *) xmlGetProp(n, (const xmlChar *) "cols")))
|
|
|
|
{
|
|
|
|
box->gadget->data.textarea.cols = atoi(s);
|
|
|
|
xmlFree(s);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
box->gadget->data.textarea.cols = 40;
|
|
|
|
|
|
|
|
if ((s = (char *) xmlGetProp(n, (const xmlChar *) "rows")))
|
|
|
|
{
|
|
|
|
box->gadget->data.textarea.rows = atoi(s);
|
|
|
|
xmlFree(s);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
box->gadget->data.textarea.rows = 16;
|
|
|
|
|
|
|
|
if ((s = (char *) xmlGetProp(n, (const xmlChar *) "name")))
|
|
|
|
{
|
|
|
|
box->gadget->name = s;
|
|
|
|
}
|
|
|
|
|
|
|
|
add_gadget_element(status->elements, box->gadget);
|
|
|
|
|
|
|
|
return (struct result) {box, 0};
|
|
|
|
}
|
|
|
|
|
|
|
|
struct result box_select(xmlNode *n, struct status *status,
|
|
|
|
struct css_style *style)
|
|
|
|
{
|
|
|
|
struct box* box = 0;
|
|
|
|
char* s;
|
|
|
|
xmlNode *c;
|
|
|
|
|
2003-07-05 20:16:15 +04:00
|
|
|
box = box_create(style, NULL, 0);
|
2003-07-05 01:17:53 +04:00
|
|
|
box->gadget = xcalloc(1, sizeof(struct gui_gadget));
|
|
|
|
box->gadget->type = GADGET_SELECT;
|
|
|
|
box->gadget->form = status->current_form;
|
|
|
|
|
|
|
|
if ((s = (char *) xmlGetProp(n, (const xmlChar *) "size")))
|
|
|
|
{
|
|
|
|
box->gadget->data.select.size = atoi(s);
|
|
|
|
xmlFree(s);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
box->gadget->data.select.size = 1;
|
|
|
|
|
|
|
|
if ((s = (char *) xmlGetProp(n, (const xmlChar *) "multiple"))) {
|
|
|
|
box->gadget->data.select.multiple = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((s = (char *) xmlGetProp(n, (const xmlChar *) "name"))) {
|
|
|
|
box->gadget->name = s;
|
|
|
|
}
|
|
|
|
|
|
|
|
box->gadget->data.select.items = NULL;
|
|
|
|
box->gadget->data.select.numitems = 0;
|
|
|
|
/* TODO: multiple */
|
|
|
|
|
|
|
|
for (c = n->children; c != 0; c = c->next) {
|
|
|
|
if (strcmp((const char *) c->name, "option") == 0) {
|
|
|
|
xmlChar *content = xmlNodeGetContent(c);
|
|
|
|
add_option(c, box->gadget, squash_tolat1(content));
|
|
|
|
xmlFree(content);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
add_gadget_element(status->elements, box->gadget);
|
|
|
|
|
|
|
|
return (struct result) {box, 0};
|
|
|
|
}
|
|
|
|
|
|
|
|
void add_option(xmlNode* n, struct gui_gadget* current_select, char *text)
|
|
|
|
{
|
|
|
|
struct formoption* option;
|
|
|
|
char* s;
|
|
|
|
assert(current_select != 0);
|
|
|
|
|
|
|
|
if (current_select->data.select.items == 0)
|
|
|
|
{
|
|
|
|
option = xcalloc(1, sizeof(struct formoption));
|
|
|
|
current_select->data.select.items = option;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
struct formoption* current;
|
|
|
|
option = xcalloc(1, sizeof(struct formoption));
|
|
|
|
current = current_select->data.select.items;
|
|
|
|
/* TODO: make appending constant time */
|
|
|
|
while (current->next != 0)
|
|
|
|
current = current->next;
|
|
|
|
current->next = option;
|
|
|
|
}
|
|
|
|
|
|
|
|
option->text = text;
|
|
|
|
|
|
|
|
if ((s = (char *) xmlGetProp(n, (const xmlChar *) "selected"))) {
|
|
|
|
option->selected = -1;
|
|
|
|
xmlFree(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((s = (char *) xmlGetProp(n, (const xmlChar *) "value"))) {
|
|
|
|
option->value = s;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct result box_input(xmlNode *n, struct status *status,
|
|
|
|
struct css_style *style)
|
|
|
|
{
|
|
|
|
struct box* box = 0;
|
|
|
|
struct gui_gadget *gadget = 0;
|
|
|
|
char *s, *type;
|
|
|
|
|
|
|
|
type = (char *) xmlGetProp(n, (const xmlChar *) "type");
|
|
|
|
|
|
|
|
/* the default type is "text" */
|
|
|
|
if (type == 0 || stricmp(type, "text") == 0 ||
|
|
|
|
stricmp(type, "password") == 0)
|
|
|
|
{
|
2003-07-05 20:16:15 +04:00
|
|
|
box = box_create(style, NULL, 0);
|
2003-07-05 01:17:53 +04:00
|
|
|
box->gadget = gadget = xcalloc(1, sizeof(struct gui_gadget));
|
|
|
|
gadget->type = GADGET_TEXTBOX;
|
|
|
|
|
|
|
|
gadget->data.textbox.maxlength = 32;
|
|
|
|
if ((s = (char *) xmlGetProp(n, (const xmlChar *) "maxlength"))) {
|
|
|
|
gadget->data.textbox.maxlength = atoi(s);
|
|
|
|
xmlFree(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
gadget->data.textbox.size = box->gadget->data.textbox.maxlength;
|
|
|
|
if ((s = (char *) xmlGetProp(n, (const xmlChar *) "size"))) {
|
|
|
|
gadget->data.textbox.size = atoi(s);
|
|
|
|
xmlFree(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
gadget->data.textbox.text = xcalloc(
|
|
|
|
gadget->data.textbox.maxlength + 2, sizeof(char));
|
|
|
|
|
|
|
|
if ((s = (char *) xmlGetProp(n, (const xmlChar *) "value"))) {
|
|
|
|
strncpy(gadget->data.textbox.text, s,
|
|
|
|
gadget->data.textbox.maxlength);
|
|
|
|
xmlFree(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else if (stricmp(type, "hidden") == 0)
|
|
|
|
{
|
2003-07-05 20:16:15 +04:00
|
|
|
/* no box for hidden inputs */
|
2003-07-05 01:17:53 +04:00
|
|
|
gadget = xcalloc(1, sizeof(struct gui_gadget));
|
|
|
|
gadget->type = GADGET_HIDDEN;
|
|
|
|
|
|
|
|
if ((s = (char *) xmlGetProp(n, (const xmlChar *) "value")))
|
|
|
|
gadget->data.hidden.value = s;
|
|
|
|
}
|
|
|
|
else if (stricmp(type, "checkbox") == 0 || stricmp(type, "radio") == 0)
|
|
|
|
{
|
2003-07-05 20:16:15 +04:00
|
|
|
box = box_create(style, NULL, 0);
|
2003-07-05 01:17:53 +04:00
|
|
|
box->gadget = gadget = xcalloc(1, sizeof(struct gui_gadget));
|
|
|
|
if (type[0] == 'c' || type[0] == 'C')
|
|
|
|
gadget->type = GADGET_CHECKBOX;
|
|
|
|
else
|
|
|
|
gadget->type = GADGET_RADIO;
|
|
|
|
|
|
|
|
if ((s = (char *) xmlGetProp(n, (const xmlChar *) "checked"))) {
|
|
|
|
if (gadget->type == GADGET_CHECKBOX)
|
|
|
|
gadget->data.checkbox.selected = -1;
|
|
|
|
else
|
|
|
|
gadget->data.radio.selected = -1;
|
|
|
|
xmlFree(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((s = (char *) xmlGetProp(n, (const xmlChar *) "value"))) {
|
|
|
|
if (gadget->type == GADGET_CHECKBOX)
|
|
|
|
gadget->data.checkbox.value = s;
|
|
|
|
else
|
|
|
|
gadget->data.radio.value = s;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (stricmp(type, "submit") == 0 || stricmp(type, "reset") == 0)
|
|
|
|
{
|
2003-07-05 20:16:15 +04:00
|
|
|
box = box_create(style, NULL, 0);
|
2003-07-05 01:17:53 +04:00
|
|
|
box->gadget = gadget = xcalloc(1, sizeof(struct gui_gadget));
|
|
|
|
gadget->type = GADGET_ACTIONBUTTON;
|
|
|
|
|
|
|
|
if ((s = (char *) xmlGetProp(n, (const xmlChar *) "value"))) {
|
|
|
|
gadget->data.actionbutt.label = s;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gadget->data.actionbutt.label = xstrdup(type);
|
|
|
|
gadget->data.actionbutt.label[0] = toupper(type[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
box->gadget->data.actionbutt.butttype = strdup(type);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (type != 0)
|
|
|
|
xmlFree(type);
|
|
|
|
|
|
|
|
if (gadget != 0) {
|
|
|
|
gadget->form = status->current_form;
|
|
|
|
if ((s = (char *) xmlGetProp(n, (const xmlChar *) "name")))
|
|
|
|
gadget->name = s;
|
|
|
|
add_gadget_element(status->elements, gadget);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (struct result) {box, 0};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-09-08 22:11:56 +04:00
|
|
|
/**
|
2002-05-04 23:57:18 +04:00
|
|
|
* print a box tree to standard output
|
|
|
|
*/
|
|
|
|
|
|
|
|
void box_dump(struct box * box, unsigned int depth)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
struct box * c;
|
2002-06-19 01:24:21 +04:00
|
|
|
|
2002-05-04 23:57:18 +04:00
|
|
|
for (i = 0; i < depth; i++)
|
2002-06-19 01:24:21 +04:00
|
|
|
fprintf(stderr, " ");
|
2002-05-04 23:57:18 +04:00
|
|
|
|
2002-06-19 01:24:21 +04:00
|
|
|
fprintf(stderr, "x%li y%li w%li h%li ", box->x, box->y, box->width, box->height);
|
2002-09-18 23:36:28 +04:00
|
|
|
if (box->max_width != UNKNOWN_MAX_WIDTH)
|
|
|
|
fprintf(stderr, "min%lu max%lu ", box->min_width, box->max_width);
|
2002-05-04 23:57:18 +04:00
|
|
|
|
|
|
|
switch (box->type) {
|
2002-06-27 03:27:30 +04:00
|
|
|
case BOX_BLOCK: fprintf(stderr, "BOX_BLOCK "); break;
|
2002-06-19 01:24:21 +04:00
|
|
|
case BOX_INLINE_CONTAINER: fprintf(stderr, "BOX_INLINE_CONTAINER "); break;
|
2003-01-07 02:53:40 +03:00
|
|
|
case BOX_INLINE: if (box->text != 0)
|
|
|
|
fprintf(stderr, "BOX_INLINE '%.*s' ",
|
|
|
|
(int) box->length, box->text);
|
|
|
|
else
|
|
|
|
fprintf(stderr, "BOX_INLINE (special) ");
|
|
|
|
break;
|
2002-06-27 03:27:30 +04:00
|
|
|
case BOX_TABLE: fprintf(stderr, "BOX_TABLE "); break;
|
|
|
|
case BOX_TABLE_ROW: fprintf(stderr, "BOX_TABLE_ROW "); break;
|
2002-09-18 23:36:28 +04:00
|
|
|
case BOX_TABLE_CELL: fprintf(stderr, "BOX_TABLE_CELL [columns %i] ",
|
|
|
|
box->columns); break;
|
2002-08-18 20:46:45 +04:00
|
|
|
case BOX_TABLE_ROW_GROUP: fprintf(stderr, "BOX_TABLE_ROW_GROUP "); break;
|
2002-06-29 00:14:04 +04:00
|
|
|
case BOX_FLOAT_LEFT: fprintf(stderr, "BOX_FLOAT_LEFT "); break;
|
|
|
|
case BOX_FLOAT_RIGHT: fprintf(stderr, "BOX_FLOAT_RIGHT "); break;
|
2002-06-19 01:24:21 +04:00
|
|
|
default: fprintf(stderr, "Unknown box type ");
|
2002-05-04 23:57:18 +04:00
|
|
|
}
|
2002-06-19 01:24:21 +04:00
|
|
|
if (box->style)
|
|
|
|
css_dump_style(box->style);
|
2002-08-12 03:01:02 +04:00
|
|
|
if (box->href != 0)
|
|
|
|
fprintf(stderr, " -> '%s'", box->href);
|
2003-07-01 02:21:51 +04:00
|
|
|
if (box->title != 0)
|
|
|
|
fprintf(stderr, " [%s]", box->title);
|
2002-06-19 01:24:21 +04:00
|
|
|
fprintf(stderr, "\n");
|
|
|
|
|
2002-05-04 23:57:18 +04:00
|
|
|
for (c = box->children; c != 0; c = c->next)
|
|
|
|
box_dump(c, depth + 1);
|
|
|
|
}
|
|
|
|
|
2002-08-18 20:46:45 +04:00
|
|
|
|
2002-09-08 22:11:56 +04:00
|
|
|
/**
|
|
|
|
* ensure the box tree is correctly nested
|
2003-01-02 16:26:43 +03:00
|
|
|
*
|
|
|
|
* parent permitted child nodes
|
|
|
|
* BLOCK BLOCK, INLINE_CONTAINER, TABLE
|
|
|
|
* INLINE_CONTAINER INLINE, FLOAT_LEFT, FLOAT_RIGHT
|
|
|
|
* INLINE none
|
|
|
|
* TABLE at least 1 TABLE_ROW_GROUP
|
|
|
|
* TABLE_ROW_GROUP at least 1 TABLE_ROW
|
|
|
|
* TABLE_ROW at least 1 TABLE_CELL
|
|
|
|
* TABLE_CELL BLOCK, INLINE_CONTAINER, TABLE (same as BLOCK)
|
|
|
|
* FLOAT_(LEFT|RIGHT) exactly 1 BLOCK or TABLE
|
2002-08-18 20:46:45 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
void box_normalise_block(struct box *block)
|
|
|
|
{
|
|
|
|
struct box *child;
|
2003-01-02 16:26:43 +03:00
|
|
|
struct box *next_child;
|
2002-08-18 20:46:45 +04:00
|
|
|
struct box *table;
|
|
|
|
struct css_style *style;
|
|
|
|
|
2003-01-02 16:26:43 +03:00
|
|
|
assert(block != 0);
|
2002-08-18 20:46:45 +04:00
|
|
|
assert(block->type == BOX_BLOCK || block->type == BOX_TABLE_CELL);
|
2003-01-08 02:15:23 +03:00
|
|
|
LOG(("block %p, block->type %u", block, block->type));
|
2003-07-05 01:17:53 +04:00
|
|
|
gui_multitask();
|
2002-08-18 20:46:45 +04:00
|
|
|
|
2003-01-02 16:26:43 +03:00
|
|
|
for (child = block->children; child != 0; child = next_child) {
|
|
|
|
LOG(("child %p, child->type = %d", child, child->type));
|
|
|
|
next_child = child->next; /* child may be destroyed */
|
2002-08-18 20:46:45 +04:00
|
|
|
switch (child->type) {
|
|
|
|
case BOX_BLOCK:
|
|
|
|
/* ok */
|
|
|
|
box_normalise_block(child);
|
|
|
|
break;
|
|
|
|
case BOX_INLINE_CONTAINER:
|
|
|
|
box_normalise_inline_container(child);
|
|
|
|
break;
|
|
|
|
case BOX_TABLE:
|
|
|
|
box_normalise_table(child);
|
|
|
|
break;
|
|
|
|
case BOX_INLINE:
|
|
|
|
case BOX_FLOAT_LEFT:
|
|
|
|
case BOX_FLOAT_RIGHT:
|
|
|
|
/* should have been wrapped in inline
|
|
|
|
container by convert_xml_to_box() */
|
|
|
|
assert(0);
|
|
|
|
break;
|
|
|
|
case BOX_TABLE_ROW_GROUP:
|
|
|
|
case BOX_TABLE_ROW:
|
|
|
|
case BOX_TABLE_CELL:
|
|
|
|
/* insert implied table */
|
|
|
|
style = xcalloc(1, sizeof(struct css_style));
|
|
|
|
memcpy(style, block->style, sizeof(struct css_style));
|
|
|
|
css_cascade(style, &css_blank_style);
|
2003-07-05 20:16:15 +04:00
|
|
|
table = box_create(style, block->href, 0);
|
|
|
|
table->type = BOX_TABLE;
|
2003-01-02 16:26:43 +03:00
|
|
|
if (child->prev == 0)
|
2002-08-18 20:46:45 +04:00
|
|
|
block->children = table;
|
|
|
|
else
|
2003-01-02 16:26:43 +03:00
|
|
|
child->prev->next = table;
|
|
|
|
table->prev = child->prev;
|
2002-08-18 20:46:45 +04:00
|
|
|
while (child != 0 && (
|
|
|
|
child->type == BOX_TABLE_ROW_GROUP ||
|
|
|
|
child->type == BOX_TABLE_ROW ||
|
|
|
|
child->type == BOX_TABLE_CELL)) {
|
|
|
|
box_add_child(table, child);
|
|
|
|
child = child->next;
|
|
|
|
}
|
2003-01-02 16:26:43 +03:00
|
|
|
table->last->next = 0;
|
|
|
|
table->next = next_child = child;
|
2002-09-18 23:36:28 +04:00
|
|
|
table->parent = block;
|
2002-08-18 20:46:45 +04:00
|
|
|
box_normalise_table(table);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
}
|
2003-01-02 16:26:43 +03:00
|
|
|
LOG(("block %p done", block));
|
2002-08-18 20:46:45 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void box_normalise_table(struct box *table)
|
|
|
|
{
|
|
|
|
struct box *child;
|
2003-01-02 16:26:43 +03:00
|
|
|
struct box *next_child;
|
2002-08-18 20:46:45 +04:00
|
|
|
struct box *row_group;
|
|
|
|
struct css_style *style;
|
2003-07-07 01:10:12 +04:00
|
|
|
unsigned int *row_span = xcalloc(2, sizeof(row_span[0]));
|
|
|
|
unsigned int table_columns = 0;
|
2002-08-18 20:46:45 +04:00
|
|
|
|
2003-01-02 16:26:43 +03:00
|
|
|
assert(table != 0);
|
2002-08-18 20:46:45 +04:00
|
|
|
assert(table->type == BOX_TABLE);
|
2003-01-02 16:26:43 +03:00
|
|
|
LOG(("table %p", table));
|
2003-07-07 01:10:12 +04:00
|
|
|
row_span[0] = row_span[1] = 0;
|
2002-08-18 20:46:45 +04:00
|
|
|
|
2003-01-02 16:26:43 +03:00
|
|
|
for (child = table->children; child != 0; child = next_child) {
|
|
|
|
next_child = child->next;
|
2002-08-18 20:46:45 +04:00
|
|
|
switch (child->type) {
|
|
|
|
case BOX_TABLE_ROW_GROUP:
|
|
|
|
/* ok */
|
2003-07-07 01:10:12 +04:00
|
|
|
box_normalise_table_row_group(child, &row_span,
|
|
|
|
&table_columns);
|
2002-08-18 20:46:45 +04:00
|
|
|
break;
|
|
|
|
case BOX_BLOCK:
|
|
|
|
case BOX_INLINE_CONTAINER:
|
|
|
|
case BOX_TABLE:
|
|
|
|
case BOX_TABLE_ROW:
|
|
|
|
case BOX_TABLE_CELL:
|
|
|
|
/* insert implied table row group */
|
|
|
|
style = xcalloc(1, sizeof(struct css_style));
|
|
|
|
memcpy(style, table->style, sizeof(struct css_style));
|
|
|
|
css_cascade(style, &css_blank_style);
|
2003-07-05 20:16:15 +04:00
|
|
|
row_group = box_create(style, table->href, 0);
|
|
|
|
row_group->type = BOX_TABLE_ROW_GROUP;
|
2003-01-02 16:26:43 +03:00
|
|
|
if (child->prev == 0)
|
2002-08-18 20:46:45 +04:00
|
|
|
table->children = row_group;
|
|
|
|
else
|
2003-01-02 16:26:43 +03:00
|
|
|
child->prev->next = row_group;
|
|
|
|
row_group->prev = child->prev;
|
2002-08-18 20:46:45 +04:00
|
|
|
while (child != 0 && (
|
|
|
|
child->type == BOX_BLOCK ||
|
|
|
|
child->type == BOX_INLINE_CONTAINER ||
|
|
|
|
child->type == BOX_TABLE ||
|
|
|
|
child->type == BOX_TABLE_ROW ||
|
|
|
|
child->type == BOX_TABLE_CELL)) {
|
|
|
|
box_add_child(row_group, child);
|
|
|
|
child = child->next;
|
|
|
|
}
|
2003-01-02 16:26:43 +03:00
|
|
|
row_group->last->next = 0;
|
|
|
|
row_group->next = next_child = child;
|
2002-09-18 23:36:28 +04:00
|
|
|
row_group->parent = table;
|
2003-07-07 01:10:12 +04:00
|
|
|
box_normalise_table_row_group(row_group, &row_span,
|
|
|
|
&table_columns);
|
2002-08-18 20:46:45 +04:00
|
|
|
break;
|
|
|
|
case BOX_INLINE:
|
|
|
|
case BOX_FLOAT_LEFT:
|
|
|
|
case BOX_FLOAT_RIGHT:
|
|
|
|
/* should have been wrapped in inline
|
|
|
|
container by convert_xml_to_box() */
|
|
|
|
assert(0);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "%i\n", child->type);
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
}
|
2003-01-02 16:26:43 +03:00
|
|
|
|
2003-07-07 01:10:12 +04:00
|
|
|
table->columns = table_columns;
|
|
|
|
xfree(row_span);
|
|
|
|
|
2003-01-02 16:26:43 +03:00
|
|
|
if (table->children == 0) {
|
|
|
|
LOG(("table->children == 0, removing"));
|
|
|
|
if (table->prev == 0)
|
|
|
|
table->parent->children = table->next;
|
|
|
|
else
|
|
|
|
table->prev->next = table->next;
|
|
|
|
if (table->next != 0)
|
|
|
|
table->next->prev = table->prev;
|
|
|
|
box_free_box(table);
|
|
|
|
}
|
|
|
|
|
|
|
|
LOG(("table %p done", table));
|
2002-08-18 20:46:45 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-07-07 01:10:12 +04:00
|
|
|
void box_normalise_table_row_group(struct box *row_group,
|
|
|
|
unsigned int **row_span, unsigned int *table_columns)
|
2002-08-18 20:46:45 +04:00
|
|
|
{
|
|
|
|
struct box *child;
|
2003-01-02 16:26:43 +03:00
|
|
|
struct box *next_child;
|
2002-08-18 20:46:45 +04:00
|
|
|
struct box *row;
|
|
|
|
struct css_style *style;
|
|
|
|
|
2003-01-02 16:26:43 +03:00
|
|
|
assert(row_group != 0);
|
2002-08-18 20:46:45 +04:00
|
|
|
assert(row_group->type == BOX_TABLE_ROW_GROUP);
|
2003-01-02 16:26:43 +03:00
|
|
|
LOG(("row_group %p", row_group));
|
2002-08-18 20:46:45 +04:00
|
|
|
|
2003-01-02 16:26:43 +03:00
|
|
|
for (child = row_group->children; child != 0; child = next_child) {
|
|
|
|
next_child = child->next;
|
2002-08-18 20:46:45 +04:00
|
|
|
switch (child->type) {
|
|
|
|
case BOX_TABLE_ROW:
|
|
|
|
/* ok */
|
2003-07-07 01:10:12 +04:00
|
|
|
box_normalise_table_row(child, row_span, table_columns);
|
2002-08-18 20:46:45 +04:00
|
|
|
break;
|
|
|
|
case BOX_BLOCK:
|
|
|
|
case BOX_INLINE_CONTAINER:
|
|
|
|
case BOX_TABLE:
|
|
|
|
case BOX_TABLE_ROW_GROUP:
|
|
|
|
case BOX_TABLE_CELL:
|
|
|
|
/* insert implied table row */
|
|
|
|
style = xcalloc(1, sizeof(struct css_style));
|
|
|
|
memcpy(style, row_group->style, sizeof(struct css_style));
|
|
|
|
css_cascade(style, &css_blank_style);
|
2003-07-05 20:16:15 +04:00
|
|
|
row = box_create(style, row_group->href, 0);
|
|
|
|
row->type = BOX_TABLE_ROW;
|
2003-01-02 16:26:43 +03:00
|
|
|
if (child->prev == 0)
|
2002-08-18 20:46:45 +04:00
|
|
|
row_group->children = row;
|
|
|
|
else
|
2003-01-02 16:26:43 +03:00
|
|
|
child->prev->next = row;
|
|
|
|
row->prev = child->prev;
|
2002-08-18 20:46:45 +04:00
|
|
|
while (child != 0 && (
|
|
|
|
child->type == BOX_BLOCK ||
|
|
|
|
child->type == BOX_INLINE_CONTAINER ||
|
|
|
|
child->type == BOX_TABLE ||
|
|
|
|
child->type == BOX_TABLE_ROW_GROUP ||
|
|
|
|
child->type == BOX_TABLE_CELL)) {
|
|
|
|
box_add_child(row, child);
|
|
|
|
child = child->next;
|
|
|
|
}
|
2003-01-02 16:26:43 +03:00
|
|
|
row->last->next = 0;
|
|
|
|
row->next = next_child = child;
|
2002-09-18 23:36:28 +04:00
|
|
|
row->parent = row_group;
|
2003-07-07 01:10:12 +04:00
|
|
|
box_normalise_table_row(row, row_span, table_columns);
|
2002-08-18 20:46:45 +04:00
|
|
|
break;
|
|
|
|
case BOX_INLINE:
|
|
|
|
case BOX_FLOAT_LEFT:
|
|
|
|
case BOX_FLOAT_RIGHT:
|
|
|
|
/* should have been wrapped in inline
|
|
|
|
container by convert_xml_to_box() */
|
|
|
|
assert(0);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
}
|
2003-01-02 16:26:43 +03:00
|
|
|
|
|
|
|
if (row_group->children == 0) {
|
|
|
|
LOG(("row_group->children == 0, removing"));
|
|
|
|
if (row_group->prev == 0)
|
|
|
|
row_group->parent->children = row_group->next;
|
|
|
|
else
|
|
|
|
row_group->prev->next = row_group->next;
|
|
|
|
if (row_group->next != 0)
|
|
|
|
row_group->next->prev = row_group->prev;
|
|
|
|
box_free_box(row_group);
|
|
|
|
}
|
|
|
|
|
|
|
|
LOG(("row_group %p done", row_group));
|
2002-08-18 20:46:45 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-07-07 01:10:12 +04:00
|
|
|
void box_normalise_table_row(struct box *row,
|
|
|
|
unsigned int **row_span, unsigned int *table_columns)
|
2002-08-18 20:46:45 +04:00
|
|
|
{
|
|
|
|
struct box *child;
|
2003-01-02 16:26:43 +03:00
|
|
|
struct box *next_child;
|
2002-08-18 20:46:45 +04:00
|
|
|
struct box *cell;
|
|
|
|
struct css_style *style;
|
2003-07-07 01:10:12 +04:00
|
|
|
unsigned int columns = 0, i, min;
|
2002-08-18 20:46:45 +04:00
|
|
|
|
2003-01-02 16:26:43 +03:00
|
|
|
assert(row != 0);
|
2002-08-18 20:46:45 +04:00
|
|
|
assert(row->type == BOX_TABLE_ROW);
|
2003-01-02 16:26:43 +03:00
|
|
|
LOG(("row %p", row));
|
2002-08-18 20:46:45 +04:00
|
|
|
|
2003-01-02 16:26:43 +03:00
|
|
|
for (child = row->children; child != 0; child = next_child) {
|
|
|
|
next_child = child->next;
|
2002-08-18 20:46:45 +04:00
|
|
|
switch (child->type) {
|
|
|
|
case BOX_TABLE_CELL:
|
|
|
|
/* ok */
|
|
|
|
box_normalise_block(child);
|
2003-07-07 01:10:12 +04:00
|
|
|
cell = child;
|
2002-08-18 20:46:45 +04:00
|
|
|
break;
|
|
|
|
case BOX_BLOCK:
|
|
|
|
case BOX_INLINE_CONTAINER:
|
|
|
|
case BOX_TABLE:
|
|
|
|
case BOX_TABLE_ROW_GROUP:
|
|
|
|
case BOX_TABLE_ROW:
|
|
|
|
/* insert implied table cell */
|
|
|
|
style = xcalloc(1, sizeof(struct css_style));
|
|
|
|
memcpy(style, row->style, sizeof(struct css_style));
|
|
|
|
css_cascade(style, &css_blank_style);
|
2003-07-05 20:16:15 +04:00
|
|
|
cell = box_create(style, row->href, 0);
|
|
|
|
cell->type = BOX_TABLE_CELL;
|
2003-01-02 16:26:43 +03:00
|
|
|
if (child->prev == 0)
|
2002-08-18 20:46:45 +04:00
|
|
|
row->children = cell;
|
|
|
|
else
|
2003-01-02 16:26:43 +03:00
|
|
|
child->prev->next = cell;
|
|
|
|
cell->prev = child->prev;
|
2002-08-18 20:46:45 +04:00
|
|
|
while (child != 0 && (
|
|
|
|
child->type == BOX_BLOCK ||
|
|
|
|
child->type == BOX_INLINE_CONTAINER ||
|
|
|
|
child->type == BOX_TABLE ||
|
|
|
|
child->type == BOX_TABLE_ROW_GROUP ||
|
|
|
|
child->type == BOX_TABLE_ROW)) {
|
|
|
|
box_add_child(cell, child);
|
|
|
|
child = child->next;
|
|
|
|
}
|
2003-01-02 16:26:43 +03:00
|
|
|
cell->last->next = 0;
|
|
|
|
cell->next = next_child = child;
|
2002-09-18 23:36:28 +04:00
|
|
|
cell->parent = row;
|
2002-08-18 20:46:45 +04:00
|
|
|
box_normalise_block(cell);
|
|
|
|
break;
|
|
|
|
case BOX_INLINE:
|
|
|
|
case BOX_FLOAT_LEFT:
|
|
|
|
case BOX_FLOAT_RIGHT:
|
|
|
|
/* should have been wrapped in inline
|
|
|
|
container by convert_xml_to_box() */
|
|
|
|
assert(0);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
assert(0);
|
|
|
|
}
|
2003-07-07 01:10:12 +04:00
|
|
|
|
|
|
|
/* skip columns with cells spanning from above */
|
2003-07-08 22:49:14 +04:00
|
|
|
while ((*row_span)[columns] != 0)
|
2003-07-07 01:10:12 +04:00
|
|
|
columns++;
|
|
|
|
cell->start_column = columns;
|
|
|
|
if (*table_columns < columns + cell->columns) {
|
|
|
|
*table_columns = columns + cell->columns;
|
|
|
|
*row_span = xrealloc(*row_span,
|
|
|
|
sizeof((*row_span)[0]) *
|
|
|
|
(*table_columns + 1));
|
|
|
|
(*row_span)[*table_columns] = 0; /* sentinel */
|
|
|
|
}
|
|
|
|
for (i = 0; i != cell->columns; i++)
|
2003-07-08 22:49:14 +04:00
|
|
|
(*row_span)[columns + i] = cell->rows;
|
2003-07-07 01:10:12 +04:00
|
|
|
columns += cell->columns;
|
2002-08-18 20:46:45 +04:00
|
|
|
}
|
2003-07-07 01:10:12 +04:00
|
|
|
|
2003-07-08 22:49:14 +04:00
|
|
|
for (i = 0; i != *table_columns; i++)
|
|
|
|
if ((*row_span)[i] != 0)
|
|
|
|
(*row_span)[i]--;
|
|
|
|
|
2003-07-07 01:10:12 +04:00
|
|
|
/* if all columns have a rowspan, shrink it to the lowest equivalent */
|
|
|
|
min = (*row_span)[0];
|
|
|
|
for (i = 1; i != *table_columns; i++)
|
|
|
|
if ((*row_span)[i] < min)
|
|
|
|
min = (*row_span)[i];
|
|
|
|
for (i = 0; i != *table_columns; i++)
|
|
|
|
(*row_span)[i] -= min;
|
2003-01-02 16:26:43 +03:00
|
|
|
|
|
|
|
if (row->children == 0) {
|
|
|
|
LOG(("row->children == 0, removing"));
|
|
|
|
if (row->prev == 0)
|
|
|
|
row->parent->children = row->next;
|
|
|
|
else
|
|
|
|
row->prev->next = row->next;
|
|
|
|
if (row->next != 0)
|
|
|
|
row->next->prev = row->prev;
|
|
|
|
box_free_box(row);
|
|
|
|
}
|
|
|
|
|
|
|
|
LOG(("row %p done", row));
|
2002-08-18 20:46:45 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void box_normalise_inline_container(struct box *cont)
|
|
|
|
{
|
|
|
|
struct box *child;
|
2003-01-02 16:26:43 +03:00
|
|
|
struct box *next_child;
|
2002-08-18 20:46:45 +04:00
|
|
|
|
2003-01-02 16:26:43 +03:00
|
|
|
assert(cont != 0);
|
2002-08-18 20:46:45 +04:00
|
|
|
assert(cont->type == BOX_INLINE_CONTAINER);
|
2003-01-02 16:26:43 +03:00
|
|
|
LOG(("cont %p", cont));
|
2002-08-18 20:46:45 +04:00
|
|
|
|
2003-01-02 16:26:43 +03:00
|
|
|
for (child = cont->children; child != 0; child = next_child) {
|
|
|
|
next_child = child->next;
|
2002-08-18 20:46:45 +04:00
|
|
|
switch (child->type) {
|
|
|
|
case BOX_INLINE:
|
|
|
|
/* ok */
|
|
|
|
break;
|
|
|
|
case BOX_FLOAT_LEFT:
|
|
|
|
case BOX_FLOAT_RIGHT:
|
|
|
|
/* ok */
|
|
|
|
assert(child->children != 0);
|
|
|
|
switch (child->children->type) {
|
|
|
|
case BOX_BLOCK:
|
|
|
|
box_normalise_block(child->children);
|
|
|
|
break;
|
|
|
|
case BOX_TABLE:
|
|
|
|
box_normalise_table(child->children);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case BOX_BLOCK:
|
|
|
|
case BOX_INLINE_CONTAINER:
|
|
|
|
case BOX_TABLE:
|
|
|
|
case BOX_TABLE_ROW_GROUP:
|
|
|
|
case BOX_TABLE_ROW:
|
|
|
|
case BOX_TABLE_CELL:
|
|
|
|
default:
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
}
|
2003-01-02 16:26:43 +03:00
|
|
|
LOG(("cont %p done", cont));
|
2002-08-18 20:46:45 +04:00
|
|
|
}
|
2002-09-08 22:11:56 +04:00
|
|
|
|
|
|
|
|
2002-12-31 01:56:30 +03:00
|
|
|
void gadget_free(struct gui_gadget* g)
|
|
|
|
{
|
|
|
|
struct formoption* o;
|
|
|
|
|
|
|
|
if (g->name != 0)
|
2003-04-25 12:03:15 +04:00
|
|
|
xmlFree(g->name);
|
2003-01-02 16:26:43 +03:00
|
|
|
|
2002-12-31 01:56:30 +03:00
|
|
|
switch (g->type)
|
|
|
|
{
|
|
|
|
case GADGET_HIDDEN:
|
|
|
|
if (g->data.hidden.value != 0)
|
2003-04-25 12:03:15 +04:00
|
|
|
xmlFree(g->data.hidden.value);
|
2002-12-31 01:56:30 +03:00
|
|
|
break;
|
|
|
|
case GADGET_RADIO:
|
|
|
|
if (g->data.checkbox.value != 0)
|
2003-04-25 12:03:15 +04:00
|
|
|
xmlFree(g->data.radio.value);
|
2002-12-31 01:56:30 +03:00
|
|
|
break;
|
|
|
|
case GADGET_CHECKBOX:
|
|
|
|
if (g->data.checkbox.value != 0)
|
2003-04-25 12:03:15 +04:00
|
|
|
xmlFree(g->data.checkbox.value);
|
2002-12-31 01:56:30 +03:00
|
|
|
break;
|
|
|
|
case GADGET_TEXTAREA:
|
|
|
|
if (g->data.textarea.text != 0)
|
2003-04-25 12:03:15 +04:00
|
|
|
xmlFree(g->data.textarea.text);
|
2002-12-31 01:56:30 +03:00
|
|
|
break;
|
|
|
|
case GADGET_TEXTBOX:
|
|
|
|
gui_remove_gadget(g);
|
|
|
|
if (g->data.textbox.text != 0)
|
2003-04-25 12:03:15 +04:00
|
|
|
xmlFree(g->data.textbox.text);
|
2002-12-31 01:56:30 +03:00
|
|
|
break;
|
|
|
|
case GADGET_ACTIONBUTTON:
|
|
|
|
if (g->data.actionbutt.label != 0)
|
2003-04-25 12:03:15 +04:00
|
|
|
xmlFree(g->data.actionbutt.label);
|
2002-12-31 01:56:30 +03:00
|
|
|
break;
|
|
|
|
case GADGET_SELECT:
|
|
|
|
o = g->data.select.items;
|
|
|
|
while (o != NULL)
|
|
|
|
{
|
|
|
|
if (o->text != 0)
|
2003-04-25 12:03:15 +04:00
|
|
|
xmlFree(o->text);
|
2002-12-31 01:56:30 +03:00
|
|
|
if (o->value != 0)
|
2003-04-25 12:03:15 +04:00
|
|
|
xmlFree(o->value);
|
2002-12-31 01:56:30 +03:00
|
|
|
xfree(o);
|
|
|
|
o = o->next;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-09-08 22:11:56 +04:00
|
|
|
/**
|
|
|
|
* free a box tree recursively
|
|
|
|
*/
|
|
|
|
|
|
|
|
void box_free(struct box *box)
|
|
|
|
{
|
|
|
|
/* free children first */
|
|
|
|
if (box->children != 0)
|
|
|
|
box_free(box->children);
|
|
|
|
|
|
|
|
/* then siblings */
|
|
|
|
if (box->next != 0)
|
|
|
|
box_free(box->next);
|
|
|
|
|
|
|
|
/* last this box */
|
2003-01-02 16:26:43 +03:00
|
|
|
box_free_box(box);
|
|
|
|
}
|
|
|
|
|
|
|
|
void box_free_box(struct box *box)
|
|
|
|
{
|
2002-10-15 14:41:12 +04:00
|
|
|
// if (box->style != 0)
|
|
|
|
// free(box->style);
|
2002-12-30 01:27:35 +03:00
|
|
|
if (box->gadget != 0)
|
|
|
|
{
|
2002-12-31 01:56:30 +03:00
|
|
|
gadget_free(box->gadget);
|
2003-01-08 02:15:23 +03:00
|
|
|
free(box->gadget);
|
2002-12-30 01:27:35 +03:00
|
|
|
}
|
2002-12-30 05:06:03 +03:00
|
|
|
|
2003-07-01 02:21:51 +04:00
|
|
|
free(box->text);
|
2003-07-05 01:17:53 +04:00
|
|
|
xmlFree(box->title);
|
2003-07-01 02:21:51 +04:00
|
|
|
|
2002-09-08 22:11:56 +04:00
|
|
|
/* only free href if we're the top most user */
|
2002-10-15 14:41:12 +04:00
|
|
|
if (box->href != 0)
|
|
|
|
{
|
|
|
|
if (box->parent == 0)
|
2003-04-25 12:03:15 +04:00
|
|
|
xmlFree(box->href);
|
2002-10-15 14:41:12 +04:00
|
|
|
else if (box->parent->href != box->href)
|
2003-04-25 12:03:15 +04:00
|
|
|
xmlFree(box->href);
|
2002-10-15 14:41:12 +04:00
|
|
|
}
|
2002-09-08 22:11:56 +04:00
|
|
|
}
|
2002-12-30 01:27:35 +03:00
|
|
|
|
2003-04-15 21:53:00 +04:00
|
|
|
|
|
|
|
/**
|
2003-07-05 01:17:53 +04:00
|
|
|
* form helper functions
|
2003-04-15 21:53:00 +04:00
|
|
|
*/
|
|
|
|
|
2003-07-05 01:17:53 +04:00
|
|
|
struct form* create_form(xmlNode* n)
|
2002-12-31 01:56:30 +03:00
|
|
|
{
|
|
|
|
struct form* form;
|
|
|
|
char* s;
|
|
|
|
|
2003-06-17 23:24:21 +04:00
|
|
|
form = xcalloc(1, sizeof(*form));
|
2003-01-02 16:26:43 +03:00
|
|
|
|
2003-01-08 02:15:23 +03:00
|
|
|
if ((s = (char *) xmlGetProp(n, (const xmlChar *) "action"))) {
|
2002-12-31 01:56:30 +03:00
|
|
|
form->action = s;
|
|
|
|
}
|
|
|
|
|
2003-01-07 02:53:40 +03:00
|
|
|
form->method = method_GET;
|
2003-01-08 02:15:23 +03:00
|
|
|
if ((s = (char *) xmlGetProp(n, (const xmlChar *) "method"))) {
|
2003-01-07 02:53:40 +03:00
|
|
|
if (stricmp(s, "post") == 0)
|
|
|
|
form->method = method_POST;
|
2003-04-25 12:03:15 +04:00
|
|
|
xmlFree(s);
|
2002-12-31 01:56:30 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return form;
|
|
|
|
}
|
|
|
|
|
|
|
|
void add_form_element(struct page_elements* pe, struct form* f)
|
|
|
|
{
|
|
|
|
pe->forms = xrealloc(pe->forms, (pe->numForms + 1) * sizeof(struct form*));
|
|
|
|
pe->forms[pe->numForms] = f;
|
|
|
|
pe->numForms++;
|
|
|
|
}
|
|
|
|
|
2003-01-08 02:15:23 +03:00
|
|
|
void add_gadget_element(struct page_elements* pe, struct gui_gadget* g)
|
2002-12-31 01:56:30 +03:00
|
|
|
{
|
|
|
|
pe->gadgets = xrealloc(pe->gadgets, (pe->numGadgets + 1) * sizeof(struct gui_gadget*));
|
|
|
|
pe->gadgets[pe->numGadgets] = g;
|
|
|
|
pe->numGadgets++;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-05-31 22:47:00 +04:00
|
|
|
/**
|
|
|
|
* add an object to the box tree
|
|
|
|
*/
|
2003-07-08 02:10:51 +04:00
|
|
|
struct result box_object(xmlNode *n, struct status *status,
|
|
|
|
struct css_style *style)
|
2003-05-31 22:47:00 +04:00
|
|
|
{
|
|
|
|
struct box *box;
|
|
|
|
struct plugin_object *po;
|
|
|
|
char *s, *url;
|
2002-12-31 01:56:30 +03:00
|
|
|
|
2003-07-08 02:10:51 +04:00
|
|
|
box = box_create(style, status->href, 0);
|
|
|
|
|
|
|
|
po = xcalloc(1, sizeof(*po));
|
2003-05-31 22:47:00 +04:00
|
|
|
|
2003-07-08 02:10:51 +04:00
|
|
|
/* initialise po struct */
|
|
|
|
po->data = 0;
|
|
|
|
po->type = 0;
|
|
|
|
po->codetype = 0;
|
|
|
|
po->codebase = 0;
|
|
|
|
po->classid = 0;
|
|
|
|
po->paramds = 0;
|
|
|
|
po->width = 0;
|
|
|
|
po->height = 0;
|
2003-05-31 22:47:00 +04:00
|
|
|
|
2003-07-08 02:10:51 +04:00
|
|
|
/* object data */
|
2003-05-31 22:47:00 +04:00
|
|
|
if ((s = (char *) xmlGetProp(n, (const xmlChar *) "data"))) {
|
|
|
|
|
2003-06-06 06:08:56 +04:00
|
|
|
po->data = strdup(s);
|
2003-07-08 02:10:51 +04:00
|
|
|
url = url_join(strdup(s), status->content->url);
|
|
|
|
LOG(("object '%s'", po->data));
|
2003-05-31 22:47:00 +04:00
|
|
|
xmlFree(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* object type */
|
|
|
|
if ((s = (char *) xmlGetProp(n, (const xmlChar *) "type"))) {
|
|
|
|
|
2003-06-06 06:08:56 +04:00
|
|
|
po->type = strdup(s);
|
2003-07-08 02:10:51 +04:00
|
|
|
LOG(("type: %s", s));
|
2003-05-31 22:47:00 +04:00
|
|
|
xmlFree(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* object codetype */
|
|
|
|
if ((s = (char *) xmlGetProp(n, (const xmlChar *) "codetype"))) {
|
|
|
|
|
2003-06-06 06:08:56 +04:00
|
|
|
po->codetype = strdup(s);
|
2003-07-08 02:10:51 +04:00
|
|
|
LOG(("codetype: %s", s));
|
2003-05-31 22:47:00 +04:00
|
|
|
xmlFree(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* object codebase */
|
|
|
|
if ((s = (char *) xmlGetProp(n, (const xmlChar *) "codebase"))) {
|
|
|
|
|
2003-06-06 06:08:56 +04:00
|
|
|
po->codebase = strdup(s);
|
2003-07-08 02:10:51 +04:00
|
|
|
LOG(("codebase: %s", s));
|
2003-05-31 22:47:00 +04:00
|
|
|
xmlFree(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* object classid */
|
|
|
|
if ((s = (char *) xmlGetProp(n, (const xmlChar *) "classid"))) {
|
|
|
|
|
2003-06-06 06:08:56 +04:00
|
|
|
po->classid = strdup(s);
|
2003-07-08 02:10:51 +04:00
|
|
|
LOG(("classid: %s", s));
|
2003-05-31 22:47:00 +04:00
|
|
|
xmlFree(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* object width */
|
|
|
|
if ((s = (char *) xmlGetProp(n, (const xmlChar *) "width"))) {
|
|
|
|
|
|
|
|
po->width = (unsigned int)atoi(s);
|
2003-07-08 02:10:51 +04:00
|
|
|
LOG(("width: %u", (unsigned int)atoi(s)));
|
2003-05-31 22:47:00 +04:00
|
|
|
xmlFree(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* object height */
|
|
|
|
if ((s = (char *) xmlGetProp(n, (const xmlChar *) "height"))) {
|
|
|
|
|
|
|
|
po->height = (unsigned int)atoi(s);
|
2003-07-08 02:10:51 +04:00
|
|
|
LOG(("height: %u", (unsigned int)atoi(s)));
|
2003-05-31 22:47:00 +04:00
|
|
|
xmlFree(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* start fetch */
|
2003-07-08 02:10:51 +04:00
|
|
|
plugin_decode(status->content, url, box, po);
|
2003-05-31 22:47:00 +04:00
|
|
|
|
2003-07-08 02:10:51 +04:00
|
|
|
return (struct result) {box, 0};
|
2003-05-31 22:47:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* add an embed to the box tree
|
|
|
|
*/
|
|
|
|
|
2003-07-08 02:10:51 +04:00
|
|
|
struct result box_embed(xmlNode *n, struct status *status,
|
|
|
|
struct css_style *style)
|
2003-05-31 22:47:00 +04:00
|
|
|
{
|
|
|
|
struct box *box;
|
|
|
|
struct plugin_object *po;
|
|
|
|
char *s, *url;
|
|
|
|
|
2003-07-08 02:10:51 +04:00
|
|
|
box = box_create(style, status->href, 0);
|
2003-05-31 22:47:00 +04:00
|
|
|
|
|
|
|
po = xcalloc(1, sizeof(*po));
|
|
|
|
|
2003-07-08 02:10:51 +04:00
|
|
|
/* initialise po struct */
|
|
|
|
po->data = 0;
|
|
|
|
po->type = 0;
|
|
|
|
po->codetype = 0;
|
|
|
|
po->codebase = 0;
|
|
|
|
po->classid = 0;
|
|
|
|
po->paramds = 0;
|
|
|
|
po->width = 0;
|
|
|
|
po->height = 0;
|
|
|
|
|
2003-05-31 22:47:00 +04:00
|
|
|
/* embed src */
|
|
|
|
if ((s = (char *) xmlGetProp(n, (const xmlChar *) "src"))) {
|
|
|
|
|
2003-06-06 07:12:28 +04:00
|
|
|
po->data = strdup(s);
|
2003-07-08 02:10:51 +04:00
|
|
|
url = url_join(strdup(s), status->content->url);
|
2003-05-31 22:47:00 +04:00
|
|
|
LOG(("embed '%s'", url));
|
|
|
|
xmlFree(s);
|
|
|
|
}
|
|
|
|
|
2003-06-08 02:24:22 +04:00
|
|
|
/* start fetch */
|
2003-07-08 02:10:51 +04:00
|
|
|
plugin_decode(status->content, url, box, po);
|
2003-05-31 22:47:00 +04:00
|
|
|
|
2003-07-08 02:10:51 +04:00
|
|
|
return (struct result) {box,0};
|
2003-05-31 22:47:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* TODO - finish this ;-)
|
|
|
|
* add an applet to the box tree
|
|
|
|
*/
|
|
|
|
|
2003-07-08 02:10:51 +04:00
|
|
|
struct result box_applet(xmlNode *n, struct status *status,
|
|
|
|
struct css_style *style)
|
2003-05-31 22:47:00 +04:00
|
|
|
{
|
|
|
|
struct box *box;
|
|
|
|
char *s, *url;
|
|
|
|
|
2003-07-08 02:10:51 +04:00
|
|
|
box = box_create(style, status->href, 0);
|
2003-05-31 22:47:00 +04:00
|
|
|
|
|
|
|
/* object without data is an error */
|
|
|
|
if (!(s = (char *) xmlGetProp(n, (const xmlChar *) "data")))
|
2003-07-08 02:10:51 +04:00
|
|
|
return (struct result) {box,0};
|
2003-05-31 22:47:00 +04:00
|
|
|
|
2003-07-08 02:10:51 +04:00
|
|
|
url = url_join(strdup(s), status->content->url);
|
2003-05-31 22:47:00 +04:00
|
|
|
LOG(("object '%s'", url));
|
|
|
|
xmlFree(s);
|
|
|
|
|
|
|
|
/* start fetch */
|
2003-06-06 06:08:56 +04:00
|
|
|
//plugin_decode(content, url, box, po);
|
2003-05-31 22:47:00 +04:00
|
|
|
|
2003-07-08 02:10:51 +04:00
|
|
|
return (struct result) {box,0};
|
2003-05-31 22:47:00 +04:00
|
|
|
}
|