2011-05-07 00:40:09 +04:00
|
|
|
/*
|
|
|
|
* Copyright 2004 James Bursa <bursa@users.sourceforge.net>
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** \file
|
|
|
|
* Content for text/html (private data).
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef NETSURF_RENDER_HTML_INTERNAL_H_
|
|
|
|
#define NETSURF_RENDER_HTML_INTERNAL_H_
|
|
|
|
|
|
|
|
#include "content/content_protected.h"
|
2011-07-13 17:20:26 +04:00
|
|
|
#include "desktop/selection.h"
|
2011-05-07 00:40:09 +04:00
|
|
|
#include "render/html.h"
|
|
|
|
|
|
|
|
/** Data specific to CONTENT_HTML. */
|
|
|
|
typedef struct html_content {
|
|
|
|
struct content base;
|
|
|
|
|
|
|
|
/** Parser object handle */
|
|
|
|
void *parser_binding;
|
|
|
|
/** Document tree */
|
2012-03-24 03:18:04 +04:00
|
|
|
dom_document *document;
|
2011-05-07 00:40:09 +04:00
|
|
|
/** Quirkyness of document */
|
|
|
|
binding_quirks_mode quirks;
|
|
|
|
|
|
|
|
/** Encoding of source, NULL if unknown. */
|
|
|
|
char *encoding;
|
|
|
|
/** Source of encoding information. */
|
|
|
|
binding_encoding_source encoding_source;
|
|
|
|
|
|
|
|
/** Base URL (may be a copy of content->url). */
|
2011-10-03 19:56:47 +04:00
|
|
|
nsurl *base_url;
|
2011-05-07 00:40:09 +04:00
|
|
|
/** Base target */
|
|
|
|
char *base_target;
|
|
|
|
|
2011-07-20 00:23:59 +04:00
|
|
|
/** Content has been aborted in the LOADING state */
|
|
|
|
bool aborted;
|
|
|
|
|
2011-05-07 00:40:09 +04:00
|
|
|
/** Box tree, or NULL. */
|
|
|
|
struct box *layout;
|
|
|
|
/** Document background colour. */
|
|
|
|
colour background_colour;
|
|
|
|
/** Font callback table */
|
|
|
|
const struct font_functions *font_func;
|
|
|
|
|
|
|
|
/** Number of entries in stylesheet_content. */
|
|
|
|
unsigned int stylesheet_count;
|
|
|
|
/** Stylesheets. Each may be NULL. */
|
|
|
|
struct html_stylesheet *stylesheets;
|
|
|
|
/**< Style selection context */
|
|
|
|
css_select_ctx *select_ctx;
|
2011-10-08 04:21:59 +04:00
|
|
|
/**< Universal selector */
|
|
|
|
lwc_string *universal;
|
2011-05-07 00:40:09 +04:00
|
|
|
|
|
|
|
/** Number of entries in object_list. */
|
|
|
|
unsigned int num_objects;
|
|
|
|
/** List of objects. */
|
|
|
|
struct content_html_object *object_list;
|
|
|
|
/** Forms, in reverse order to document. */
|
|
|
|
struct form *forms;
|
|
|
|
/** Hash table of imagemaps. */
|
|
|
|
struct imagemap **imagemaps;
|
|
|
|
|
|
|
|
/** Browser window containing this document, or NULL if not open. */
|
|
|
|
struct browser_window *bw;
|
|
|
|
|
|
|
|
/** Frameset information */
|
|
|
|
struct content_html_frames *frameset;
|
|
|
|
|
|
|
|
/** Inline frame information */
|
|
|
|
struct content_html_iframe *iframe;
|
|
|
|
|
|
|
|
/** Content of type CONTENT_HTML containing this, or NULL if not an
|
|
|
|
* object within a page. */
|
|
|
|
struct html_content *page;
|
|
|
|
/** Box containing this, or NULL if not an object. */
|
|
|
|
struct box *box;
|
2011-06-28 02:21:15 +04:00
|
|
|
|
|
|
|
/** Scrollbar capturing all mouse events, updated to any active HTML
|
|
|
|
* scrollbar, or NULL when no scrollbar drags active */
|
|
|
|
struct scrollbar *scrollbar;
|
2011-06-28 15:15:39 +04:00
|
|
|
|
|
|
|
/** Open core-handled form SELECT menu,
|
|
|
|
* or NULL if none currently open. */
|
|
|
|
struct form_control *visible_select_menu;
|
2011-07-13 17:20:26 +04:00
|
|
|
|
|
|
|
/** Selection state */
|
|
|
|
struct selection sel;
|
2011-08-24 16:29:30 +04:00
|
|
|
|
|
|
|
/** Context for free text search, or NULL if none */
|
|
|
|
struct search_context *search;
|
2011-05-07 00:40:09 +04:00
|
|
|
} html_content;
|
|
|
|
|
|
|
|
|
2011-10-04 14:23:47 +04:00
|
|
|
bool html_fetch_object(html_content *c, nsurl *url, struct box *box,
|
2011-05-07 00:40:09 +04:00
|
|
|
content_type permitted_types,
|
|
|
|
int available_width, int available_height,
|
|
|
|
bool background);
|
|
|
|
|
|
|
|
void html_set_status(html_content *c, const char *extra);
|
|
|
|
|
2011-07-07 21:50:04 +04:00
|
|
|
void html__redraw_a_box(struct content *c, struct box *box);
|
|
|
|
|
2011-07-26 17:53:42 +04:00
|
|
|
struct browser_window *html_get_browser_window(struct content *c);
|
2012-03-25 02:16:03 +04:00
|
|
|
struct search_context *html_get_search(struct content *c);
|
2011-08-24 16:29:30 +04:00
|
|
|
void html_set_search(struct content *c, struct search_context *s);
|
2011-07-26 17:53:42 +04:00
|
|
|
|
2011-05-07 00:40:09 +04:00
|
|
|
/* in render/html_redraw.c */
|
2011-06-29 00:17:39 +04:00
|
|
|
bool html_redraw(struct content *c, struct content_redraw_data *data,
|
2011-06-30 19:48:07 +04:00
|
|
|
const struct rect *clip, const struct redraw_context *ctx);
|
2011-05-07 00:40:09 +04:00
|
|
|
|
|
|
|
/* in render/html_interaction.c */
|
|
|
|
void html_mouse_track(struct content *c, struct browser_window *bw,
|
|
|
|
browser_mouse_state mouse, int x, int y);
|
|
|
|
void html_mouse_action(struct content *c, struct browser_window *bw,
|
|
|
|
browser_mouse_state mouse, int x, int y);
|
|
|
|
void html_overflow_scroll_callback(void *client_data,
|
2011-05-10 02:49:17 +04:00
|
|
|
struct scrollbar_msg_data *scrollbar_data);
|
2011-05-07 00:40:09 +04:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|