2003-06-30 16:44:03 +04:00
|
|
|
/*
|
|
|
|
* Copyright 2003 Phil Mellor <monkeyson@users.sourceforge.net>
|
2006-11-26 23:11:20 +03:00
|
|
|
* Copyright 2006 James Bursa <bursa@users.sourceforge.net>
|
2004-07-27 00:13:45 +04:00
|
|
|
* Copyright 2004 Andrew Timmins <atimmins@blueyonder.co.uk>
|
2008-08-05 05:30:31 +04:00
|
|
|
* Copyright 2004 John Tytgat <joty@netsurf-browser.org>
|
2006-11-26 23:11:20 +03:00
|
|
|
* Copyright 2006 Richard Wilson <info@tinct.net>
|
2008-04-11 21:51:43 +04:00
|
|
|
* Copyright 2008 Michael Drake <tlsa@netsurf-browser.org>
|
2009-08-14 14:37:33 +04:00
|
|
|
* Copyright 2009 Paul Blokus <paul_pl@users.sourceforge.net>
|
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/>.
|
2004-02-25 18:12:58 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
/** \file
|
|
|
|
* Browser window creation and manipulation (implementation).
|
2002-09-11 18:24:02 +04:00
|
|
|
*/
|
|
|
|
|
2003-07-18 03:01:02 +04:00
|
|
|
#include <assert.h>
|
|
|
|
#include <limits.h>
|
2003-10-09 19:23:10 +04:00
|
|
|
#include <stdbool.h>
|
2005-08-21 16:04:18 +04:00
|
|
|
#include <stdint.h>
|
2003-07-18 03:01:02 +04:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2008-08-11 20:44:12 +04:00
|
|
|
#include <strings.h>
|
2008-07-29 00:32:51 +04:00
|
|
|
#include <math.h>
|
2010-01-29 14:32:53 +03:00
|
|
|
|
2006-10-01 22:10:55 +04:00
|
|
|
#include "curl/curl.h"
|
2007-05-31 02:39:54 +04:00
|
|
|
#include "utils/config.h"
|
2010-06-04 13:35:08 +04:00
|
|
|
#include "content/content.h"
|
2007-05-31 02:39:54 +04:00
|
|
|
#include "content/fetch.h"
|
2010-03-28 16:56:39 +04:00
|
|
|
#include "content/hlcache.h"
|
2007-05-31 02:39:54 +04:00
|
|
|
#include "content/urldb.h"
|
|
|
|
#include "desktop/401login.h"
|
|
|
|
#include "desktop/browser.h"
|
2010-04-06 01:35:38 +04:00
|
|
|
#include "desktop/download.h"
|
2007-05-31 02:39:54 +04:00
|
|
|
#include "desktop/frames.h"
|
|
|
|
#include "desktop/history_core.h"
|
|
|
|
#include "desktop/gui.h"
|
|
|
|
#include "desktop/options.h"
|
|
|
|
#include "desktop/selection.h"
|
|
|
|
#include "desktop/textinput.h"
|
|
|
|
#include "render/form.h"
|
2010-06-04 13:35:08 +04:00
|
|
|
#include "render/html.h"
|
2007-05-31 02:39:54 +04:00
|
|
|
#include "render/textplain.h"
|
|
|
|
#include "utils/log.h"
|
|
|
|
#include "utils/messages.h"
|
|
|
|
#include "utils/url.h"
|
|
|
|
#include "utils/utils.h"
|
|
|
|
#include "utils/utf8.h"
|
2002-09-11 18:24:02 +04:00
|
|
|
|
2005-04-15 09:52:25 +04:00
|
|
|
/** browser window which is being redrawn. Valid only during redraw. */
|
|
|
|
struct browser_window *current_redraw_browser;
|
|
|
|
|
2007-08-07 07:55:18 +04:00
|
|
|
/** one or more windows require a reformat */
|
|
|
|
bool browser_reformat_pending;
|
|
|
|
|
2006-11-26 23:11:20 +03:00
|
|
|
/** maximum frame depth */
|
|
|
|
#define FRAME_DEPTH 8
|
|
|
|
|
2010-03-28 16:56:39 +04:00
|
|
|
static nserror browser_window_callback(hlcache_handle *c,
|
|
|
|
const hlcache_event *event, void *pw);
|
2006-01-25 09:52:38 +03:00
|
|
|
static void browser_window_refresh(void *p);
|
2006-09-02 19:52:41 +04:00
|
|
|
static bool browser_window_check_throbber(struct browser_window *bw);
|
2010-04-06 01:35:38 +04:00
|
|
|
static void browser_window_convert_to_download(struct browser_window *bw,
|
|
|
|
llcache_handle *stream);
|
2004-02-25 18:12:58 +03:00
|
|
|
static void browser_window_start_throbber(struct browser_window *bw);
|
|
|
|
static void browser_window_stop_throbber(struct browser_window *bw);
|
2009-12-18 02:55:02 +03:00
|
|
|
static void browser_window_set_icon(struct browser_window *bw);
|
2006-09-02 19:52:41 +04:00
|
|
|
static void browser_window_destroy_children(struct browser_window *bw);
|
|
|
|
static void browser_window_destroy_internal(struct browser_window *bw);
|
2006-11-26 23:11:20 +03:00
|
|
|
static void browser_window_set_scale_internal(struct browser_window *bw,
|
|
|
|
float scale);
|
|
|
|
static void browser_window_find_target_internal(struct browser_window *bw,
|
|
|
|
const char *target, int depth, struct browser_window *page,
|
|
|
|
int *rdepth, struct browser_window **bw_target);
|
2003-02-09 15:58:15 +03:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
/**
|
|
|
|
* Create and open a new browser window with the given page.
|
|
|
|
*
|
2006-09-02 19:52:41 +04:00
|
|
|
* \param url URL to start fetching in the new window (copied)
|
2005-01-03 05:09:20 +03:00
|
|
|
* \param clone The browser window to clone
|
2007-01-27 23:58:20 +03:00
|
|
|
* \param referer The referring uri (copied), or 0 if none
|
2004-02-25 18:12:58 +03:00
|
|
|
*/
|
2002-10-15 14:41:12 +04:00
|
|
|
|
2006-11-26 23:11:20 +03:00
|
|
|
struct browser_window *browser_window_create(const char *url,
|
|
|
|
struct browser_window *clone,
|
2009-04-05 23:17:24 +04:00
|
|
|
const char *referer, bool history_add, bool new_tab)
|
2002-10-15 14:41:12 +04:00
|
|
|
{
|
2004-02-25 18:12:58 +03:00
|
|
|
struct browser_window *bw;
|
2002-09-11 18:24:02 +04:00
|
|
|
|
2009-04-05 23:17:24 +04:00
|
|
|
assert(clone || history_add);
|
2006-04-22 22:24:18 +04:00
|
|
|
|
2006-09-02 19:52:41 +04:00
|
|
|
if ((bw = calloc(1, sizeof *bw)) == NULL) {
|
2004-05-07 23:14:54 +04:00
|
|
|
warn_user("NoMemory", 0);
|
2006-07-05 05:23:25 +04:00
|
|
|
return NULL;
|
2004-02-25 18:12:58 +03:00
|
|
|
}
|
2002-09-11 18:24:02 +04:00
|
|
|
|
2007-08-07 11:58:04 +04:00
|
|
|
/* Initialise common parts */
|
|
|
|
browser_window_initialise_common(bw, clone);
|
2006-09-02 19:52:41 +04:00
|
|
|
|
|
|
|
/* window characteristics */
|
|
|
|
bw->browser_window_type = BROWSER_WINDOW_NORMAL;
|
2008-08-24 17:05:53 +04:00
|
|
|
bw->scrolling = SCROLLING_YES;
|
2006-09-02 19:52:41 +04:00
|
|
|
bw->border = true;
|
|
|
|
bw->no_resize = true;
|
2009-07-14 19:53:12 +04:00
|
|
|
bw->last_action = wallclock();
|
2006-09-06 04:15:10 +04:00
|
|
|
|
2010-04-24 19:22:17 +04:00
|
|
|
bw->window = gui_create_browser_window(bw, clone, new_tab);
|
|
|
|
|
2006-09-02 19:52:41 +04:00
|
|
|
/* gui window */
|
2010-04-24 19:22:17 +04:00
|
|
|
if (bw->window == NULL) {
|
2006-09-02 19:52:41 +04:00
|
|
|
browser_window_destroy(bw);
|
2006-07-05 05:23:25 +04:00
|
|
|
return NULL;
|
2004-02-25 18:12:58 +03:00
|
|
|
}
|
2010-04-24 19:22:17 +04:00
|
|
|
|
2006-07-05 05:23:25 +04:00
|
|
|
if (url)
|
2009-04-05 23:17:24 +04:00
|
|
|
browser_window_go(bw, url, referer, history_add);
|
2007-01-27 23:58:20 +03:00
|
|
|
|
2009-12-18 02:55:02 +03:00
|
|
|
|
2006-07-05 05:23:25 +04:00
|
|
|
return bw;
|
2002-09-11 18:24:02 +04:00
|
|
|
}
|
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
|
2007-08-07 11:58:04 +04:00
|
|
|
/**
|
|
|
|
* Initialise common parts of a browser window
|
|
|
|
*
|
|
|
|
* \param bw The window to initialise
|
|
|
|
* \param clone The window to clone, or NULL if none
|
|
|
|
*/
|
|
|
|
void browser_window_initialise_common(struct browser_window *bw,
|
|
|
|
struct browser_window *clone)
|
|
|
|
{
|
|
|
|
assert(bw);
|
|
|
|
|
|
|
|
if (!clone)
|
|
|
|
bw->history = history_create();
|
|
|
|
else
|
|
|
|
bw->history = history_clone(clone->history);
|
|
|
|
|
|
|
|
/* window characteristics */
|
|
|
|
bw->sel = selection_create(bw);
|
|
|
|
bw->refresh_interval = -1;
|
|
|
|
|
|
|
|
bw->reformat_pending = false;
|
|
|
|
bw->drag_type = DRAGGING_NONE;
|
|
|
|
bw->scale = (float) option_scale / 100.0;
|
2010-02-11 02:37:06 +03:00
|
|
|
|
2010-02-11 13:58:26 +03:00
|
|
|
/* initialise status text cache */
|
2010-02-11 02:37:06 +03:00
|
|
|
bw->status_text = NULL;
|
|
|
|
bw->status_text_len = 0;
|
2010-02-11 13:58:26 +03:00
|
|
|
bw->status_match = 0;
|
|
|
|
bw->status_miss = 0;
|
2007-08-07 11:58:04 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
/**
|
|
|
|
* Start fetching a page in a browser window.
|
|
|
|
*
|
2006-09-02 19:52:41 +04:00
|
|
|
* \param bw browser window
|
|
|
|
* \param url URL to start fetching (copied)
|
2007-01-27 23:58:20 +03:00
|
|
|
* \param referer the referring uri (copied), or 0 if none
|
2004-02-25 18:12:58 +03:00
|
|
|
*
|
|
|
|
* Any existing fetches in the window are aborted.
|
|
|
|
*/
|
|
|
|
|
2004-10-01 04:06:49 +04:00
|
|
|
void browser_window_go(struct browser_window *bw, const char *url,
|
2009-04-05 23:17:24 +04:00
|
|
|
const char *referer, bool history_add)
|
2002-10-15 14:41:12 +04:00
|
|
|
{
|
2007-01-27 23:58:20 +03:00
|
|
|
/* All fetches passing through here are verifiable
|
|
|
|
* (i.e are the result of user action) */
|
2009-04-05 23:17:24 +04:00
|
|
|
browser_window_go_post(bw, url, 0, 0, history_add, referer,
|
2009-07-10 04:26:37 +04:00
|
|
|
false, true, NULL);
|
2002-10-15 14:41:12 +04:00
|
|
|
}
|
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
|
2009-01-30 08:07:07 +03:00
|
|
|
/**
|
|
|
|
* Start a download of the given URL from a browser window.
|
|
|
|
*
|
|
|
|
* \param bw browser window
|
|
|
|
* \param url URL to start downloading (copied)
|
|
|
|
* \param referer the referring uri (copied), or 0 if none
|
|
|
|
*/
|
|
|
|
|
|
|
|
void browser_window_download(struct browser_window *bw, const char *url,
|
2009-07-10 04:26:37 +04:00
|
|
|
const char *referer)
|
2009-01-30 08:07:07 +03:00
|
|
|
{
|
2009-07-10 04:26:37 +04:00
|
|
|
browser_window_go_post(bw, url, 0, 0, false, referer,
|
|
|
|
true, true, NULL);
|
2009-01-30 08:07:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-01-27 23:58:20 +03:00
|
|
|
/**
|
|
|
|
* Start fetching a page in a browser window.
|
|
|
|
*
|
|
|
|
* \param bw browser window
|
|
|
|
* \param url URL to start fetching (copied)
|
|
|
|
* \param referer the referring uri (copied), or 0 if none
|
|
|
|
*
|
|
|
|
* Any existing fetches in the window are aborted.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void browser_window_go_unverifiable(struct browser_window *bw,
|
2009-07-10 04:26:37 +04:00
|
|
|
const char *url, const char *referer, bool history_add,
|
2010-03-28 16:56:39 +04:00
|
|
|
hlcache_handle *parent)
|
2007-01-27 23:58:20 +03:00
|
|
|
{
|
|
|
|
/* All fetches passing through here are unverifiable
|
|
|
|
* (i.e are not the result of user action) */
|
2009-04-05 23:17:24 +04:00
|
|
|
browser_window_go_post(bw, url, 0, 0, history_add, referer,
|
2009-07-10 04:26:37 +04:00
|
|
|
false, false, parent);
|
2007-01-27 23:58:20 +03:00
|
|
|
}
|
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
/**
|
|
|
|
* Start fetching a page in a browser window, POSTing form data.
|
|
|
|
*
|
2006-09-02 19:52:41 +04:00
|
|
|
* \param bw browser window
|
|
|
|
* \param url URL to start fetching (copied)
|
|
|
|
* \param post_urlenc url encoded post data, or 0 if none
|
2004-02-25 18:12:58 +03:00
|
|
|
* \param post_multipart multipart post data, or 0 if none
|
2009-03-17 15:26:41 +03:00
|
|
|
* \param add_to_history add to window history
|
2007-01-27 23:58:20 +03:00
|
|
|
* \param referer the referring uri (copied), or 0 if none
|
2006-09-02 19:52:41 +04:00
|
|
|
* \param download download, rather than render the uri
|
2007-01-27 23:58:20 +03:00
|
|
|
* \param verifiable this transaction is verifiable
|
2009-07-10 04:26:37 +04:00
|
|
|
* \param parent Parent content, or NULL
|
2004-02-25 18:12:58 +03:00
|
|
|
*
|
|
|
|
* Any existing fetches in the window are aborted.
|
|
|
|
*
|
|
|
|
* If post_urlenc and post_multipart are 0 the url is fetched using GET.
|
|
|
|
*
|
2009-03-24 01:22:30 +03:00
|
|
|
* The page is not added to the window history if add_to_history is false.
|
2009-03-17 15:26:41 +03:00
|
|
|
* This should be used when returning to a page in the window history.
|
2004-02-25 18:12:58 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
void browser_window_go_post(struct browser_window *bw, const char *url,
|
|
|
|
char *post_urlenc,
|
2010-03-28 16:56:39 +04:00
|
|
|
struct fetch_multipart_data *post_multipart,
|
2009-03-17 15:26:41 +03:00
|
|
|
bool add_to_history, const char *referer, bool download,
|
2010-03-28 16:56:39 +04:00
|
|
|
bool verifiable, hlcache_handle *parent)
|
2002-10-15 14:41:12 +04:00
|
|
|
{
|
2010-03-28 16:56:39 +04:00
|
|
|
hlcache_handle *c;
|
2004-03-10 23:45:27 +03:00
|
|
|
char *url2;
|
2008-02-03 15:04:48 +03:00
|
|
|
char *fragment;
|
2004-08-09 20:11:58 +04:00
|
|
|
url_func_result res;
|
2006-09-05 21:59:29 +04:00
|
|
|
int depth = 0;
|
|
|
|
struct browser_window *cur;
|
2010-03-28 16:56:39 +04:00
|
|
|
uint32_t fetch_flags = 0;
|
|
|
|
bool fetch_is_post = (post_urlenc != NULL || post_multipart != NULL);
|
|
|
|
llcache_post_data post;
|
|
|
|
hlcache_child_context child;
|
|
|
|
nserror error;
|
2004-06-11 03:55:23 +04:00
|
|
|
|
|
|
|
LOG(("bw %p, url %s", bw, url));
|
2006-03-25 23:30:35 +03:00
|
|
|
assert(bw);
|
|
|
|
assert(url);
|
2006-09-06 04:15:10 +04:00
|
|
|
|
2006-09-05 21:59:29 +04:00
|
|
|
/* don't allow massively nested framesets */
|
|
|
|
for (cur = bw; cur->parent; cur = cur->parent)
|
|
|
|
depth++;
|
|
|
|
if (depth > FRAME_DEPTH) {
|
2007-01-27 23:58:20 +03:00
|
|
|
LOG(("frame depth too high."));
|
2006-09-05 21:59:29 +04:00
|
|
|
return;
|
|
|
|
}
|
2004-03-10 23:45:27 +03:00
|
|
|
|
2010-03-28 16:56:39 +04:00
|
|
|
/* Set up retrieval parameters */
|
|
|
|
if (verifiable)
|
|
|
|
fetch_flags |= LLCACHE_RETRIEVE_VERIFIABLE;
|
|
|
|
|
|
|
|
if (post_multipart != NULL) {
|
|
|
|
post.type = LLCACHE_POST_MULTIPART;
|
|
|
|
post.data.multipart = post_multipart;
|
|
|
|
} else if (post_urlenc != NULL) {
|
|
|
|
post.type = LLCACHE_POST_URL_ENCODED;
|
|
|
|
post.data.urlenc = post_urlenc;
|
|
|
|
}
|
|
|
|
|
2010-04-17 00:55:17 +04:00
|
|
|
if (parent != NULL && content_get_type(parent) == CONTENT_HTML) {
|
|
|
|
child.charset = html_get_encoding(parent);
|
|
|
|
child.quirks = content_get_quirks(parent);
|
2010-03-28 16:56:39 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Normalize the request URL */
|
2004-08-09 20:11:58 +04:00
|
|
|
res = url_normalize(url, &url2);
|
|
|
|
if (res != URL_FUNC_OK) {
|
2004-03-10 23:45:27 +03:00
|
|
|
LOG(("failed to normalize url %s", url));
|
|
|
|
return;
|
|
|
|
}
|
2004-02-25 18:12:58 +03:00
|
|
|
|
2010-03-28 16:56:39 +04:00
|
|
|
/* Get download out of the way */
|
|
|
|
if (download) {
|
|
|
|
llcache_handle *l;
|
|
|
|
|
2010-04-06 01:35:38 +04:00
|
|
|
fetch_flags |= LLCACHE_RETRIEVE_FORCE_FETCH;
|
|
|
|
fetch_flags |= LLCACHE_RETRIEVE_STREAM_DATA;
|
|
|
|
|
|
|
|
error = llcache_handle_retrieve(url2, fetch_flags, referer,
|
|
|
|
fetch_is_post ? &post : NULL,
|
|
|
|
NULL, NULL, &l);
|
2010-03-28 16:56:39 +04:00
|
|
|
if (error != NSERROR_OK)
|
|
|
|
LOG(("Failed to fetch download: %d", error));
|
|
|
|
|
2004-11-23 02:29:50 +03:00
|
|
|
free(url2);
|
2010-03-28 16:56:39 +04:00
|
|
|
|
2010-04-06 01:35:38 +04:00
|
|
|
error = download_context_create(l, bw->window);
|
|
|
|
if (error != NSERROR_OK) {
|
|
|
|
LOG(("Failed creating download context: %d", error));
|
|
|
|
llcache_handle_abort(l);
|
|
|
|
llcache_handle_release(l);
|
|
|
|
}
|
|
|
|
|
2004-11-23 02:29:50 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-02-03 15:04:48 +03:00
|
|
|
free(bw->frag_id);
|
|
|
|
bw->frag_id = NULL;
|
2006-10-01 22:10:55 +04:00
|
|
|
|
2008-02-03 15:04:48 +03:00
|
|
|
/* find any fragment identifier on end of URL */
|
|
|
|
res = url_fragment(url2, &fragment);
|
|
|
|
if (res == URL_FUNC_NOMEM) {
|
|
|
|
free(url2);
|
|
|
|
warn_user("NoMemory", 0);
|
|
|
|
return;
|
|
|
|
} else if (res == URL_FUNC_OK) {
|
|
|
|
bool same_url = false;
|
|
|
|
|
|
|
|
bw->frag_id = fragment;
|
|
|
|
|
|
|
|
/* Compare new URL with existing one (ignoring fragments) */
|
2010-03-28 16:56:39 +04:00
|
|
|
if (bw->current_content != NULL &&
|
|
|
|
content_get_url(bw->current_content) != NULL) {
|
|
|
|
res = url_compare(content_get_url(bw->current_content),
|
|
|
|
url2, true, &same_url);
|
2008-02-03 15:04:48 +03:00
|
|
|
if (res == URL_FUNC_NOMEM) {
|
|
|
|
free(url2);
|
|
|
|
warn_user("NoMemory", 0);
|
|
|
|
return;
|
|
|
|
} else if (res == URL_FUNC_FAILED) {
|
|
|
|
same_url = false;
|
|
|
|
}
|
2006-10-01 22:10:55 +04:00
|
|
|
}
|
|
|
|
|
2005-03-20 06:35:50 +03:00
|
|
|
/* if we're simply moving to another ID on the same page,
|
2006-02-24 23:43:45 +03:00
|
|
|
* don't bother to fetch, just update the window.
|
2005-03-20 06:35:50 +03:00
|
|
|
*/
|
2010-03-28 16:56:39 +04:00
|
|
|
if (same_url && fetch_is_post == false &&
|
|
|
|
strchr(url2, '?') == 0) {
|
2005-03-20 06:35:50 +03:00
|
|
|
free(url2);
|
2009-03-17 15:26:41 +03:00
|
|
|
if (add_to_history)
|
|
|
|
history_add(bw->history, bw->current_content,
|
|
|
|
bw->frag_id);
|
2009-04-05 23:17:24 +04:00
|
|
|
browser_window_update(bw, false);
|
2010-03-28 16:56:39 +04:00
|
|
|
if (bw->current_content != NULL) {
|
2009-03-31 15:06:09 +04:00
|
|
|
browser_window_refresh_url_bar(bw,
|
2010-03-28 16:56:39 +04:00
|
|
|
content_get_url(bw->current_content),
|
|
|
|
bw->frag_id);
|
2009-03-30 19:46:26 +04:00
|
|
|
}
|
2005-03-20 06:35:50 +03:00
|
|
|
return;
|
|
|
|
}
|
2004-08-07 02:19:13 +04:00
|
|
|
}
|
|
|
|
|
2005-03-21 02:42:23 +03:00
|
|
|
browser_window_stop(bw);
|
|
|
|
browser_window_remove_caret(bw);
|
2006-09-02 19:52:41 +04:00
|
|
|
browser_window_destroy_children(bw);
|
2005-03-21 02:42:23 +03:00
|
|
|
|
2010-03-30 02:33:21 +04:00
|
|
|
LOG(("Loading '%s'", url2));
|
2006-09-07 02:15:58 +04:00
|
|
|
|
2004-02-27 20:45:19 +03:00
|
|
|
browser_window_set_status(bw, messages_get("Loading"));
|
2009-04-05 23:17:24 +04:00
|
|
|
bw->history_add = add_to_history;
|
2010-03-28 16:56:39 +04:00
|
|
|
|
2010-04-06 01:35:38 +04:00
|
|
|
error = hlcache_handle_retrieve(url2,
|
|
|
|
fetch_flags | HLCACHE_RETRIEVE_MAY_DOWNLOAD,
|
|
|
|
referer,
|
2010-03-30 02:33:21 +04:00
|
|
|
fetch_is_post ? &post : NULL,
|
2010-03-28 16:56:39 +04:00
|
|
|
browser_window_callback, bw,
|
2010-04-04 21:17:24 +04:00
|
|
|
parent != NULL ? &child : NULL,
|
|
|
|
NULL, &c);
|
2010-03-28 16:56:39 +04:00
|
|
|
if (error == NSERROR_NO_FETCH_HANDLER) {
|
|
|
|
gui_launch_url(url2);
|
|
|
|
free(url2);
|
|
|
|
return;
|
|
|
|
} else if (error != NSERROR_OK) {
|
|
|
|
free(url2);
|
2004-06-11 03:55:23 +04:00
|
|
|
browser_window_set_status(bw, messages_get("NoMemory"));
|
|
|
|
warn_user("NoMemory", 0);
|
2004-02-25 18:12:58 +03:00
|
|
|
return;
|
|
|
|
}
|
2004-08-07 02:19:13 +04:00
|
|
|
|
2010-03-28 16:56:39 +04:00
|
|
|
free(url2);
|
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
bw->loading_content = c;
|
|
|
|
browser_window_start_throbber(bw);
|
2010-04-12 14:57:41 +04:00
|
|
|
browser_window_refresh_url_bar(bw, url, NULL);
|
2002-09-11 18:24:02 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
/**
|
|
|
|
* Callback for fetchcache() for browser window fetches.
|
|
|
|
*/
|
|
|
|
|
2010-03-28 16:56:39 +04:00
|
|
|
nserror browser_window_callback(hlcache_handle *c,
|
|
|
|
const hlcache_event *event, void *pw)
|
2002-09-11 18:24:02 +04:00
|
|
|
{
|
2010-03-28 16:56:39 +04:00
|
|
|
struct browser_window *bw = pw;
|
2002-09-11 18:24:02 +04:00
|
|
|
|
2010-03-28 16:56:39 +04:00
|
|
|
switch (event->type) {
|
2010-04-06 01:35:38 +04:00
|
|
|
case CONTENT_MSG_DOWNLOAD:
|
|
|
|
assert(bw->loading_content == c);
|
|
|
|
|
|
|
|
browser_window_convert_to_download(bw, event->data.download);
|
|
|
|
|
2010-04-12 14:57:41 +04:00
|
|
|
if (bw->current_content != NULL) {
|
|
|
|
browser_window_refresh_url_bar(bw,
|
|
|
|
content_get_url(bw->current_content),
|
|
|
|
bw->frag_id);
|
|
|
|
}
|
2010-04-06 01:35:38 +04:00
|
|
|
break;
|
|
|
|
|
2006-11-26 23:11:20 +03:00
|
|
|
case CONTENT_MSG_LOADING:
|
|
|
|
assert(bw->loading_content == c);
|
2004-06-28 03:24:11 +04:00
|
|
|
|
2005-01-14 01:42:39 +03:00
|
|
|
#ifdef WITH_THEME_INSTALL
|
2010-04-06 01:35:38 +04:00
|
|
|
if (content_get_type(c) == CONTENT_THEME) {
|
2006-11-26 23:11:20 +03:00
|
|
|
theme_install_start(c);
|
2010-03-28 16:56:39 +04:00
|
|
|
bw->loading_content = NULL;
|
2006-11-26 23:11:20 +03:00
|
|
|
browser_window_stop_throbber(bw);
|
2010-04-06 01:35:38 +04:00
|
|
|
} else
|
2005-01-14 01:42:39 +03:00
|
|
|
#endif
|
2010-04-06 01:35:38 +04:00
|
|
|
{
|
2006-11-26 23:11:20 +03:00
|
|
|
bw->refresh_interval = -1;
|
2010-03-28 16:56:39 +04:00
|
|
|
browser_window_set_status(bw,
|
|
|
|
content_get_status_message(c));
|
2006-11-26 23:11:20 +03:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CONTENT_MSG_READY:
|
2010-03-30 02:33:21 +04:00
|
|
|
{
|
|
|
|
int width, height;
|
|
|
|
|
2006-11-26 23:11:20 +03:00
|
|
|
assert(bw->loading_content == c);
|
|
|
|
|
2010-03-28 16:56:39 +04:00
|
|
|
if (bw->current_content != NULL) {
|
|
|
|
content_status status =
|
|
|
|
content_get_status(bw->current_content);
|
|
|
|
|
|
|
|
if (status == CONTENT_STATUS_READY ||
|
|
|
|
status == CONTENT_STATUS_DONE)
|
2006-11-26 23:11:20 +03:00
|
|
|
content_close(bw->current_content);
|
2010-03-28 16:56:39 +04:00
|
|
|
|
|
|
|
hlcache_handle_release(bw->current_content);
|
2006-11-26 23:11:20 +03:00
|
|
|
}
|
2010-03-28 16:56:39 +04:00
|
|
|
|
2010-04-14 13:23:46 +04:00
|
|
|
bw->current_content = c;
|
|
|
|
bw->loading_content = NULL;
|
|
|
|
|
2010-03-30 02:33:21 +04:00
|
|
|
/* Format the new content to the correct dimensions */
|
|
|
|
gui_window_get_dimensions(bw->window, &width, &height, true);
|
|
|
|
content_reformat(c, width, height);
|
|
|
|
|
2006-11-26 23:11:20 +03:00
|
|
|
browser_window_remove_caret(bw);
|
2010-03-28 16:56:39 +04:00
|
|
|
|
2009-08-14 14:37:33 +04:00
|
|
|
bw->scroll = NULL;
|
2010-03-28 16:56:39 +04:00
|
|
|
|
2006-11-26 23:11:20 +03:00
|
|
|
gui_window_new_content(bw->window);
|
2010-03-28 16:56:39 +04:00
|
|
|
|
|
|
|
browser_window_refresh_url_bar(bw,
|
|
|
|
content_get_url(bw->current_content),
|
|
|
|
bw->frag_id);
|
|
|
|
|
2009-04-08 15:07:30 +04:00
|
|
|
/* new content; set scroll_to_top */
|
|
|
|
browser_window_update(bw, true);
|
2006-11-26 23:11:20 +03:00
|
|
|
content_open(c, bw, 0, 0, 0, 0);
|
2010-03-28 16:56:39 +04:00
|
|
|
browser_window_set_status(bw, content_get_status_message(c));
|
2006-11-26 23:11:20 +03:00
|
|
|
|
|
|
|
/* history */
|
2009-04-05 23:17:24 +04:00
|
|
|
if (bw->history_add && bw->history) {
|
2010-03-28 16:56:39 +04:00
|
|
|
const char *url = content_get_url(c);
|
|
|
|
|
2006-11-26 23:11:20 +03:00
|
|
|
history_add(bw->history, c, bw->frag_id);
|
2010-03-28 16:56:39 +04:00
|
|
|
if (urldb_add_url(url)) {
|
|
|
|
urldb_set_url_title(url, content_get_title(c));
|
|
|
|
urldb_update_url_visit_data(url);
|
|
|
|
urldb_set_url_content_type(url,
|
|
|
|
content_get_type(c));
|
|
|
|
/* This is safe as we've just added the URL */
|
|
|
|
global_history_add(urldb_get_url(url));
|
2006-02-16 02:09:55 +03:00
|
|
|
}
|
2006-11-26 23:11:20 +03:00
|
|
|
}
|
2002-09-11 18:24:02 +04:00
|
|
|
|
2006-11-26 23:11:20 +03:00
|
|
|
/* text selection */
|
2010-03-28 16:56:39 +04:00
|
|
|
if (content_get_type(c) == CONTENT_HTML)
|
2006-11-26 23:11:20 +03:00
|
|
|
selection_init(bw->sel,
|
2010-03-28 16:56:39 +04:00
|
|
|
html_get_box_tree(bw->current_content));
|
|
|
|
if (content_get_type(c) == CONTENT_TEXTPLAIN)
|
2006-11-26 23:11:20 +03:00
|
|
|
selection_init(bw->sel, NULL);
|
2004-02-25 18:12:58 +03:00
|
|
|
|
2006-11-26 23:11:20 +03:00
|
|
|
/* frames */
|
2010-03-28 16:56:39 +04:00
|
|
|
if (content_get_type(c) == CONTENT_HTML &&
|
|
|
|
html_get_frameset(c) != NULL)
|
|
|
|
browser_window_create_frameset(bw,
|
|
|
|
html_get_frameset(c));
|
|
|
|
if (content_get_type(c) == CONTENT_HTML &&
|
|
|
|
html_get_iframe(c) != NULL)
|
|
|
|
browser_window_create_iframes(bw, html_get_iframe(c));
|
2010-03-30 02:33:21 +04:00
|
|
|
}
|
2006-11-26 23:11:20 +03:00
|
|
|
break;
|
2003-12-22 01:10:15 +03:00
|
|
|
|
2006-11-26 23:11:20 +03:00
|
|
|
case CONTENT_MSG_DONE:
|
|
|
|
assert(bw->current_content == c);
|
|
|
|
|
2009-04-05 23:17:24 +04:00
|
|
|
browser_window_update(bw, false);
|
2010-03-28 16:56:39 +04:00
|
|
|
browser_window_set_status(bw, content_get_status_message(c));
|
2006-11-26 23:11:20 +03:00
|
|
|
browser_window_stop_throbber(bw);
|
2009-12-18 02:55:02 +03:00
|
|
|
browser_window_set_icon(bw);
|
2010-03-28 16:56:39 +04:00
|
|
|
|
2006-11-26 23:11:20 +03:00
|
|
|
history_update(bw->history, c);
|
|
|
|
hotlist_visited(c);
|
2010-03-28 16:56:39 +04:00
|
|
|
|
2006-11-26 23:11:20 +03:00
|
|
|
if (bw->refresh_interval != -1)
|
|
|
|
schedule(bw->refresh_interval,
|
2006-11-27 00:04:42 +03:00
|
|
|
browser_window_refresh, bw);
|
2006-11-26 23:11:20 +03:00
|
|
|
break;
|
2003-12-22 01:10:15 +03:00
|
|
|
|
2006-11-26 23:11:20 +03:00
|
|
|
case CONTENT_MSG_ERROR:
|
2010-03-28 16:56:39 +04:00
|
|
|
browser_window_set_status(bw, event->data.error);
|
2007-03-12 01:08:57 +03:00
|
|
|
|
|
|
|
/* Only warn the user about errors in top-level windows */
|
|
|
|
if (bw->browser_window_type == BROWSER_WINDOW_NORMAL)
|
2010-03-28 16:56:39 +04:00
|
|
|
warn_user(event->data.error, 0);
|
2007-03-12 01:08:57 +03:00
|
|
|
|
2006-11-26 23:11:20 +03:00
|
|
|
if (c == bw->loading_content)
|
2010-03-28 16:56:39 +04:00
|
|
|
bw->loading_content = NULL;
|
2006-11-26 23:11:20 +03:00
|
|
|
else if (c == bw->current_content) {
|
2010-03-28 16:56:39 +04:00
|
|
|
bw->current_content = NULL;
|
2006-11-26 23:11:20 +03:00
|
|
|
browser_window_remove_caret(bw);
|
2009-08-14 14:37:33 +04:00
|
|
|
bw->scroll = NULL;
|
2006-11-26 23:11:20 +03:00
|
|
|
selection_init(bw->sel, NULL);
|
|
|
|
}
|
2010-03-28 16:56:39 +04:00
|
|
|
|
|
|
|
hlcache_handle_release(c);
|
|
|
|
|
2006-11-26 23:11:20 +03:00
|
|
|
browser_window_stop_throbber(bw);
|
|
|
|
break;
|
2003-12-30 02:09:39 +03:00
|
|
|
|
2006-11-26 23:11:20 +03:00
|
|
|
case CONTENT_MSG_STATUS:
|
2010-03-28 16:56:39 +04:00
|
|
|
browser_window_set_status(bw, content_get_status_message(c));
|
2006-11-26 23:11:20 +03:00
|
|
|
break;
|
2003-12-30 02:09:39 +03:00
|
|
|
|
2006-11-26 23:11:20 +03:00
|
|
|
case CONTENT_MSG_REFORMAT:
|
|
|
|
if (c == bw->current_content &&
|
2010-03-28 16:56:39 +04:00
|
|
|
content_get_type(c) == CONTENT_HTML) {
|
2007-01-03 18:15:54 +03:00
|
|
|
/* reposition frames */
|
2010-03-28 16:56:39 +04:00
|
|
|
if (html_get_frameset(c) != NULL)
|
2007-01-03 18:15:54 +03:00
|
|
|
browser_window_recalculate_frameset(bw);
|
2007-01-27 23:58:20 +03:00
|
|
|
/* reflow iframe positions */
|
2010-03-28 16:56:39 +04:00
|
|
|
if (html_get_iframe(c) != NULL)
|
2006-12-30 05:10:46 +03:00
|
|
|
browser_window_recalculate_iframes(bw);
|
2006-11-26 23:11:20 +03:00
|
|
|
/* box tree may have changed, need to relabel */
|
2010-03-28 16:56:39 +04:00
|
|
|
selection_reinit(bw->sel, html_get_box_tree(c));
|
2006-11-26 23:11:20 +03:00
|
|
|
}
|
2010-03-28 16:56:39 +04:00
|
|
|
|
2006-11-26 23:11:20 +03:00
|
|
|
if (bw->move_callback)
|
|
|
|
bw->move_callback(bw, bw->caret_p);
|
2010-03-28 16:56:39 +04:00
|
|
|
|
2009-04-05 23:17:24 +04:00
|
|
|
browser_window_update(bw, false);
|
2006-11-26 23:11:20 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case CONTENT_MSG_REDRAW:
|
2010-03-28 16:56:39 +04:00
|
|
|
gui_window_update_box(bw->window, &event->data);
|
2006-11-26 23:11:20 +03:00
|
|
|
break;
|
2006-02-23 18:06:54 +03:00
|
|
|
|
2006-11-26 23:11:20 +03:00
|
|
|
case CONTENT_MSG_REFRESH:
|
2010-03-28 16:56:39 +04:00
|
|
|
bw->refresh_interval = event->data.delay * 100;
|
2006-11-26 23:11:20 +03:00
|
|
|
break;
|
2006-01-25 09:52:38 +03:00
|
|
|
|
2006-11-26 23:11:20 +03:00
|
|
|
default:
|
|
|
|
assert(0);
|
2004-02-25 18:12:58 +03:00
|
|
|
}
|
2010-03-28 16:56:39 +04:00
|
|
|
|
|
|
|
return NSERROR_OK;
|
2002-09-11 18:24:02 +04:00
|
|
|
}
|
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Transfer the loading_content to a new download window.
|
|
|
|
*/
|
|
|
|
|
2010-04-06 01:35:38 +04:00
|
|
|
void browser_window_convert_to_download(struct browser_window *bw,
|
|
|
|
llcache_handle *stream)
|
2002-09-11 18:24:02 +04:00
|
|
|
{
|
2010-04-06 01:35:38 +04:00
|
|
|
nserror error;
|
2004-06-28 03:24:11 +04:00
|
|
|
|
2010-04-06 01:35:38 +04:00
|
|
|
error = download_context_create(stream, bw->window);
|
|
|
|
if (error != NSERROR_OK) {
|
|
|
|
llcache_handle_abort(stream);
|
|
|
|
llcache_handle_release(stream);
|
2004-02-25 18:12:58 +03:00
|
|
|
|
2010-04-06 01:35:38 +04:00
|
|
|
return;
|
|
|
|
}
|
2004-02-25 18:12:58 +03:00
|
|
|
|
|
|
|
/* remove content from browser window */
|
2010-03-28 16:56:39 +04:00
|
|
|
hlcache_handle_release(bw->loading_content);
|
|
|
|
bw->loading_content = NULL;
|
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
browser_window_stop_throbber(bw);
|
2002-09-11 18:24:02 +04:00
|
|
|
}
|
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
|
2006-11-27 00:04:42 +03:00
|
|
|
/**
|
|
|
|
* Handle meta http-equiv refresh time elapsing by loading a new page.
|
|
|
|
*
|
|
|
|
* \param p browser window to refresh with new page
|
|
|
|
*/
|
|
|
|
|
|
|
|
void browser_window_refresh(void *p)
|
|
|
|
{
|
|
|
|
struct browser_window *bw = p;
|
2009-04-05 23:17:24 +04:00
|
|
|
bool history_add = true;
|
2010-03-28 16:56:39 +04:00
|
|
|
const char *url;
|
|
|
|
const char *refresh;
|
2006-11-27 00:04:42 +03:00
|
|
|
|
2010-03-28 16:56:39 +04:00
|
|
|
assert(bw->current_content != NULL &&
|
|
|
|
(content_get_status(bw->current_content) ==
|
|
|
|
CONTENT_STATUS_READY ||
|
|
|
|
content_get_status(bw->current_content) ==
|
|
|
|
CONTENT_STATUS_DONE));
|
2008-02-27 21:38:41 +03:00
|
|
|
|
2008-04-07 13:00:21 +04:00
|
|
|
/* Ignore if the refresh URL has gone
|
2008-02-27 21:38:41 +03:00
|
|
|
* (may happen if a fetch error occurred) */
|
2010-03-28 16:56:39 +04:00
|
|
|
refresh = content_get_refresh_url(bw->current_content);
|
|
|
|
if (refresh == NULL)
|
2008-02-27 21:38:41 +03:00
|
|
|
return;
|
2006-11-27 00:04:42 +03:00
|
|
|
|
|
|
|
/* mark this content as invalid so it gets flushed from the cache */
|
2010-03-28 16:56:39 +04:00
|
|
|
content_invalidate_reuse_data(bw->current_content);
|
2006-11-27 00:04:42 +03:00
|
|
|
|
2010-03-28 16:56:39 +04:00
|
|
|
url = content_get_url(bw->current_content);
|
|
|
|
if (url != NULL && strcmp(url, refresh) == 0)
|
2009-04-05 23:17:24 +04:00
|
|
|
history_add = false;
|
2006-11-27 00:04:42 +03:00
|
|
|
|
2009-03-10 12:10:43 +03:00
|
|
|
/* Treat an (almost) immediate refresh in a top-level browser window as
|
2009-03-24 01:22:30 +03:00
|
|
|
* if it were an HTTP redirect, and thus make the resulting fetch
|
2009-03-10 12:10:43 +03:00
|
|
|
* verifiable.
|
|
|
|
*
|
|
|
|
* See fetchcache.c for why redirected fetches should be verifiable at
|
|
|
|
* all.
|
|
|
|
*/
|
2009-03-10 12:14:25 +03:00
|
|
|
if (bw->refresh_interval <= 100 && bw->parent == NULL) {
|
2010-03-28 16:56:39 +04:00
|
|
|
browser_window_go(bw, refresh, url, history_add);
|
2009-03-10 12:10:43 +03:00
|
|
|
} else {
|
2010-03-28 16:56:39 +04:00
|
|
|
browser_window_go_unverifiable(bw, refresh, url, history_add,
|
2009-07-10 04:26:37 +04:00
|
|
|
bw->current_content);
|
2009-03-10 12:10:43 +03:00
|
|
|
}
|
2006-11-27 00:04:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
/**
|
|
|
|
* Start the busy indicator.
|
|
|
|
*
|
|
|
|
* \param bw browser window
|
|
|
|
*/
|
|
|
|
|
|
|
|
void browser_window_start_throbber(struct browser_window *bw)
|
2002-09-11 18:24:02 +04:00
|
|
|
{
|
2004-02-25 18:12:58 +03:00
|
|
|
bw->throbbing = true;
|
2006-09-02 19:52:41 +04:00
|
|
|
|
|
|
|
while (bw->parent)
|
|
|
|
bw = bw->parent;
|
2010-03-28 16:56:39 +04:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
gui_window_start_throbber(bw->window);
|
|
|
|
}
|
2003-12-22 01:10:15 +03:00
|
|
|
|
2002-09-11 18:24:02 +04:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
/**
|
|
|
|
* Stop the busy indicator.
|
|
|
|
*
|
|
|
|
* \param bw browser window
|
|
|
|
*/
|
2002-09-11 18:24:02 +04:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
void browser_window_stop_throbber(struct browser_window *bw)
|
|
|
|
{
|
|
|
|
bw->throbbing = false;
|
2006-09-06 04:15:10 +04:00
|
|
|
|
2006-09-02 19:52:41 +04:00
|
|
|
while (bw->parent)
|
|
|
|
bw = bw->parent;
|
2006-09-06 04:15:10 +04:00
|
|
|
|
2006-09-02 19:52:41 +04:00
|
|
|
if (!browser_window_check_throbber(bw))
|
|
|
|
gui_window_stop_throbber(bw->window);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool browser_window_check_throbber(struct browser_window *bw)
|
|
|
|
{
|
|
|
|
int children, index;
|
2006-09-06 04:15:10 +04:00
|
|
|
|
2006-09-02 19:52:41 +04:00
|
|
|
if (bw->throbbing)
|
|
|
|
return true;
|
2006-09-06 04:15:10 +04:00
|
|
|
|
2006-09-02 19:52:41 +04:00
|
|
|
if (bw->children) {
|
|
|
|
children = bw->rows * bw->cols;
|
|
|
|
for (index = 0; index < children; index++) {
|
|
|
|
if (browser_window_check_throbber(&bw->children[index]))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (bw->iframes) {
|
|
|
|
for (index = 0; index < bw->iframe_count; index++) {
|
|
|
|
if (browser_window_check_throbber(&bw->iframes[index]))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
2004-02-25 18:12:58 +03:00
|
|
|
}
|
2004-01-05 05:10:59 +03:00
|
|
|
|
2009-12-18 02:55:02 +03:00
|
|
|
/**
|
|
|
|
* when ready, set icon at top level
|
|
|
|
* \param bw browser_window
|
|
|
|
* current implementation ignores lower-levels' link rels completely
|
|
|
|
*/
|
|
|
|
void browser_window_set_icon(struct browser_window *bw)
|
|
|
|
{
|
|
|
|
while (bw->parent)
|
|
|
|
bw = bw->parent;
|
2010-03-28 16:56:39 +04:00
|
|
|
|
|
|
|
if (bw->current_content != NULL &&
|
|
|
|
content_get_type(bw->current_content) == CONTENT_HTML)
|
2009-12-18 02:55:02 +03:00
|
|
|
gui_window_set_icon(bw->window,
|
2010-03-28 16:56:39 +04:00
|
|
|
html_get_favicon(bw->current_content));
|
2009-12-18 02:55:02 +03:00
|
|
|
else
|
|
|
|
gui_window_set_icon(bw->window, NULL);
|
|
|
|
}
|
2002-09-11 18:24:02 +04:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
/**
|
|
|
|
* Redraw browser window, set extent to content, and update title.
|
|
|
|
*
|
2006-09-02 19:52:41 +04:00
|
|
|
* \param bw browser_window
|
2004-02-25 18:12:58 +03:00
|
|
|
* \param scroll_to_top move view to top of page
|
|
|
|
*/
|
2004-01-05 05:10:59 +03:00
|
|
|
|
2010-03-28 16:56:39 +04:00
|
|
|
void browser_window_update(struct browser_window *bw, bool scroll_to_top)
|
2004-02-25 18:12:58 +03:00
|
|
|
{
|
2009-04-05 23:17:24 +04:00
|
|
|
int x, y;
|
2004-07-06 00:19:52 +04:00
|
|
|
|
2010-03-28 16:56:39 +04:00
|
|
|
if (bw->current_content == NULL)
|
2004-02-25 18:12:58 +03:00
|
|
|
return;
|
2004-01-05 05:10:59 +03:00
|
|
|
|
2010-03-28 16:56:39 +04:00
|
|
|
gui_window_set_title(bw->window,
|
|
|
|
content_get_title(bw->current_content));
|
2004-01-05 05:10:59 +03:00
|
|
|
|
2006-09-02 19:52:41 +04:00
|
|
|
gui_window_update_extent(bw->window);
|
2004-01-05 05:10:59 +03:00
|
|
|
|
2009-04-05 23:17:24 +04:00
|
|
|
if (scroll_to_top)
|
|
|
|
gui_window_set_scroll(bw->window, 0, 0);
|
2009-03-24 01:22:30 +03:00
|
|
|
|
2009-04-05 23:17:24 +04:00
|
|
|
/** \todo don't do this if the user has scrolled */
|
2004-08-07 02:19:13 +04:00
|
|
|
/* if frag_id exists, then try to scroll to it */
|
2010-06-04 13:35:08 +04:00
|
|
|
if (bw->frag_id && html_get_id_offset(bw->current_content, bw->frag_id,
|
|
|
|
&x, &y)) {
|
|
|
|
gui_window_set_scroll(bw->window, x, y);
|
2009-04-05 23:17:24 +04:00
|
|
|
}
|
2004-08-07 02:19:13 +04:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
gui_window_redraw_window(bw->window);
|
2002-09-11 18:24:02 +04:00
|
|
|
}
|
|
|
|
|
2002-12-23 23:06:21 +03:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
/**
|
|
|
|
* Stop all fetching activity in a browser window.
|
|
|
|
*
|
|
|
|
* \param bw browser window
|
|
|
|
*/
|
2002-09-11 18:24:02 +04:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
void browser_window_stop(struct browser_window *bw)
|
|
|
|
{
|
2006-09-02 19:52:41 +04:00
|
|
|
int children, index;
|
2006-09-06 04:15:10 +04:00
|
|
|
|
2010-03-28 16:56:39 +04:00
|
|
|
if (bw->loading_content != NULL) {
|
2010-04-04 16:41:19 +04:00
|
|
|
hlcache_handle_abort(bw->loading_content);
|
2010-03-28 16:56:39 +04:00
|
|
|
hlcache_handle_release(bw->loading_content);
|
|
|
|
bw->loading_content = NULL;
|
2004-02-25 18:12:58 +03:00
|
|
|
}
|
2003-12-28 19:17:31 +03:00
|
|
|
|
2010-03-28 16:56:39 +04:00
|
|
|
if (bw->current_content != NULL && content_get_status(
|
|
|
|
bw->current_content) != CONTENT_STATUS_DONE) {
|
2010-04-04 16:41:19 +04:00
|
|
|
nserror error;
|
2010-03-28 16:56:39 +04:00
|
|
|
assert(content_get_status(bw->current_content) ==
|
|
|
|
CONTENT_STATUS_READY);
|
2010-04-04 16:41:19 +04:00
|
|
|
error = hlcache_handle_abort(bw->current_content);
|
|
|
|
assert(error == NSERROR_OK);
|
2004-02-25 18:12:58 +03:00
|
|
|
}
|
2003-12-22 01:10:15 +03:00
|
|
|
|
2006-01-25 11:25:38 +03:00
|
|
|
schedule_remove(browser_window_refresh, bw);
|
2006-09-06 04:15:10 +04:00
|
|
|
|
2006-09-02 19:52:41 +04:00
|
|
|
if (bw->children) {
|
|
|
|
children = bw->rows * bw->cols;
|
|
|
|
for (index = 0; index < children; index++)
|
|
|
|
browser_window_stop(&bw->children[index]);
|
|
|
|
}
|
|
|
|
if (bw->iframes) {
|
|
|
|
children = bw->iframe_count;
|
|
|
|
for (index = 0; index < children; index++)
|
|
|
|
browser_window_stop(&bw->iframes[index]);
|
|
|
|
}
|
2006-01-25 11:25:38 +03:00
|
|
|
|
2010-04-12 14:57:41 +04:00
|
|
|
if (bw->current_content != NULL) {
|
|
|
|
browser_window_refresh_url_bar(bw,
|
|
|
|
content_get_url(bw->current_content), bw->frag_id);
|
|
|
|
}
|
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
browser_window_stop_throbber(bw);
|
|
|
|
}
|
2003-10-25 23:20:13 +04:00
|
|
|
|
|
|
|
|
2004-06-23 00:39:16 +04:00
|
|
|
/**
|
|
|
|
* Reload the page in a browser window.
|
|
|
|
*
|
|
|
|
* \param bw browser window
|
2004-06-29 23:08:19 +04:00
|
|
|
* \param all whether to reload all objects associated with the page
|
2004-06-23 00:39:16 +04:00
|
|
|
*/
|
|
|
|
|
2004-06-29 23:08:19 +04:00
|
|
|
void browser_window_reload(struct browser_window *bw, bool all)
|
2004-06-23 00:39:16 +04:00
|
|
|
{
|
2010-03-28 16:56:39 +04:00
|
|
|
hlcache_handle *c;
|
2004-06-29 23:08:19 +04:00
|
|
|
unsigned int i;
|
|
|
|
|
2010-03-28 16:56:39 +04:00
|
|
|
if (bw->current_content == NULL || bw->loading_content != NULL)
|
2004-06-23 00:39:16 +04:00
|
|
|
return;
|
|
|
|
|
2010-03-28 16:56:39 +04:00
|
|
|
if (all && content_get_type(bw->current_content) == CONTENT_HTML) {
|
|
|
|
struct html_stylesheet *sheets;
|
|
|
|
struct content_html_object *objects;
|
|
|
|
unsigned int count;
|
|
|
|
|
2004-06-29 23:08:19 +04:00
|
|
|
c = bw->current_content;
|
2010-03-28 16:56:39 +04:00
|
|
|
|
2004-06-29 23:08:19 +04:00
|
|
|
/* invalidate objects */
|
2010-03-28 16:56:39 +04:00
|
|
|
objects = html_get_objects(c, &count);
|
|
|
|
|
|
|
|
for (i = 0; i != count; i++) {
|
|
|
|
if (objects[i].content != NULL)
|
|
|
|
content_invalidate_reuse_data(
|
|
|
|
objects[i].content);
|
2004-06-29 23:08:19 +04:00
|
|
|
}
|
2010-03-28 16:56:39 +04:00
|
|
|
|
2004-06-29 23:08:19 +04:00
|
|
|
/* invalidate stylesheets */
|
2010-03-28 16:56:39 +04:00
|
|
|
sheets = html_get_stylesheets(c, &count);
|
|
|
|
|
|
|
|
for (i = STYLESHEET_START; i != count; i++) {
|
|
|
|
if (sheets[i].type == HTML_STYLESHEET_EXTERNAL &&
|
|
|
|
sheets[i].data.external != NULL) {
|
|
|
|
content_invalidate_reuse_data(
|
|
|
|
sheets[i].data.external);
|
|
|
|
}
|
2004-06-29 23:08:19 +04:00
|
|
|
}
|
|
|
|
}
|
2010-03-28 16:56:39 +04:00
|
|
|
|
|
|
|
content_invalidate_reuse_data(bw->current_content);
|
|
|
|
|
|
|
|
browser_window_go_post(bw, content_get_url(bw->current_content), 0, 0,
|
2007-02-03 02:08:13 +03:00
|
|
|
false, 0, false, true, 0);
|
2004-06-23 00:39:16 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
/**
|
|
|
|
* Change the status bar of a browser window.
|
|
|
|
*
|
2006-09-02 19:52:41 +04:00
|
|
|
* \param bw browser window
|
2004-02-25 18:12:58 +03:00
|
|
|
* \param text new status text (copied)
|
|
|
|
*/
|
|
|
|
|
|
|
|
void browser_window_set_status(struct browser_window *bw, const char *text)
|
|
|
|
{
|
2010-02-11 02:37:06 +03:00
|
|
|
int text_len;
|
|
|
|
/* find topmost window */
|
2006-09-02 19:52:41 +04:00
|
|
|
while (bw->parent)
|
|
|
|
bw = bw->parent;
|
2010-02-11 02:37:06 +03:00
|
|
|
|
|
|
|
if ((bw->status_text != NULL) &&
|
|
|
|
(strcmp(text, bw->status_text) == 0)) {
|
|
|
|
/* status text is unchanged */
|
|
|
|
bw->status_match++;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* status text is changed */
|
|
|
|
|
|
|
|
text_len = strlen(text);
|
|
|
|
|
|
|
|
if ((bw->status_text == NULL) || (bw->status_text_len < text_len)) {
|
|
|
|
/* no current string allocation or it is not long enough */
|
|
|
|
free(bw->status_text);
|
|
|
|
bw->status_text = strdup(text);
|
|
|
|
bw->status_text_len = text_len;
|
|
|
|
} else {
|
|
|
|
/* current allocation has enough space */
|
|
|
|
memcpy(bw->status_text, text, text_len + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
bw->status_miss++;
|
2010-02-11 03:10:58 +03:00
|
|
|
gui_window_set_status(bw->window, bw->status_text);
|
2002-09-11 18:24:02 +04:00
|
|
|
}
|
|
|
|
|
2004-07-18 21:38:01 +04:00
|
|
|
|
2004-04-01 04:26:05 +04:00
|
|
|
/**
|
|
|
|
* Change the shape of the mouse pointer
|
|
|
|
*
|
|
|
|
* \param shape shape to use
|
|
|
|
*/
|
|
|
|
|
2006-03-10 12:09:03 +03:00
|
|
|
void browser_window_set_pointer(struct gui_window *g, gui_pointer_shape shape)
|
2004-04-01 04:26:05 +04:00
|
|
|
{
|
2006-03-10 12:09:03 +03:00
|
|
|
gui_window_set_pointer(g, shape);
|
2004-04-01 04:26:05 +04:00
|
|
|
}
|
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Close and destroy a browser window.
|
|
|
|
*
|
|
|
|
* \param bw browser window
|
|
|
|
*/
|
|
|
|
|
|
|
|
void browser_window_destroy(struct browser_window *bw)
|
2003-10-25 18:13:49 +04:00
|
|
|
{
|
2006-09-02 19:52:41 +04:00
|
|
|
/* can't destoy child windows on their own */
|
|
|
|
assert(!bw->parent);
|
|
|
|
|
|
|
|
/* destroy */
|
|
|
|
browser_window_destroy_internal(bw);
|
|
|
|
free(bw);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Close and destroy all child browser window.
|
|
|
|
*
|
|
|
|
* \param bw browser window
|
|
|
|
*/
|
|
|
|
|
|
|
|
void browser_window_destroy_children(struct browser_window *bw)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (bw->children) {
|
|
|
|
for (i = 0; i < (bw->rows * bw->cols); i++)
|
|
|
|
browser_window_destroy_internal(&bw->children[i]);
|
|
|
|
free(bw->children);
|
|
|
|
bw->children = NULL;
|
|
|
|
bw->rows = 0;
|
|
|
|
bw->cols = 0;
|
|
|
|
}
|
|
|
|
if (bw->iframes) {
|
|
|
|
for (i = 0; i < bw->iframe_count; i++)
|
|
|
|
browser_window_destroy_internal(&bw->iframes[i]);
|
|
|
|
free(bw->iframes);
|
|
|
|
bw->iframes = NULL;
|
|
|
|
bw->iframe_count = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Release all memory associated with a browser window.
|
|
|
|
*
|
|
|
|
* \param bw browser window
|
|
|
|
*/
|
|
|
|
|
|
|
|
void browser_window_destroy_internal(struct browser_window *bw)
|
|
|
|
{
|
|
|
|
assert(bw);
|
|
|
|
|
2006-12-30 03:34:26 +03:00
|
|
|
LOG(("Destroying window"));
|
|
|
|
|
2010-03-28 16:56:39 +04:00
|
|
|
if (bw->children != NULL || bw->iframes != NULL)
|
2006-09-02 19:52:41 +04:00
|
|
|
browser_window_destroy_children(bw);
|
2010-03-28 16:56:39 +04:00
|
|
|
|
|
|
|
if (bw->loading_content != NULL) {
|
|
|
|
hlcache_handle_release(bw->loading_content);
|
|
|
|
bw->loading_content = NULL;
|
2004-02-25 18:12:58 +03:00
|
|
|
}
|
2010-03-28 16:56:39 +04:00
|
|
|
|
|
|
|
if (bw->current_content != NULL) {
|
|
|
|
content_status status = content_get_status(bw->current_content);
|
|
|
|
if (status == CONTENT_STATUS_READY ||
|
|
|
|
status == CONTENT_STATUS_DONE)
|
2004-08-12 02:08:26 +04:00
|
|
|
content_close(bw->current_content);
|
2010-03-28 16:56:39 +04:00
|
|
|
|
|
|
|
hlcache_handle_release(bw->current_content);
|
|
|
|
bw->current_content = NULL;
|
2004-02-25 18:12:58 +03:00
|
|
|
}
|
|
|
|
|
2006-01-25 11:25:38 +03:00
|
|
|
schedule_remove(browser_window_refresh, bw);
|
|
|
|
|
2005-04-15 09:52:25 +04:00
|
|
|
selection_destroy(bw->sel);
|
2004-02-25 18:12:58 +03:00
|
|
|
history_destroy(bw->history);
|
|
|
|
gui_window_destroy(bw->window);
|
|
|
|
|
2006-09-02 19:52:41 +04:00
|
|
|
free(bw->name);
|
2004-08-07 02:19:13 +04:00
|
|
|
free(bw->frag_id);
|
2010-02-11 02:37:06 +03:00
|
|
|
free(bw->status_text);
|
|
|
|
bw->status_text = NULL;
|
|
|
|
LOG(("Status text cache match:miss %d:%d",
|
|
|
|
bw->status_match, bw->status_miss));
|
2006-09-02 19:52:41 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-26 23:11:20 +03:00
|
|
|
/**
|
|
|
|
* Returns the browser window that is responsible for the child.
|
|
|
|
*
|
|
|
|
* \param bw The browser window to find the owner of
|
|
|
|
* \return the browser window's owner
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct browser_window *browser_window_owner(struct browser_window *bw)
|
|
|
|
{
|
|
|
|
/* an iframe's parent is just the parent window */
|
|
|
|
if (bw->browser_window_type == BROWSER_WINDOW_IFRAME)
|
|
|
|
return bw->parent;
|
|
|
|
|
|
|
|
/* the parent of a frameset is either a NORMAL window or an IFRAME */
|
2010-03-28 16:56:39 +04:00
|
|
|
while (bw->parent != NULL) {
|
2006-11-26 23:11:20 +03:00
|
|
|
switch (bw->browser_window_type) {
|
2010-03-28 16:56:39 +04:00
|
|
|
case BROWSER_WINDOW_NORMAL:
|
|
|
|
case BROWSER_WINDOW_IFRAME:
|
|
|
|
return bw;
|
|
|
|
case BROWSER_WINDOW_FRAME:
|
|
|
|
case BROWSER_WINDOW_FRAMESET:
|
|
|
|
bw = bw->parent;
|
|
|
|
break;
|
2006-11-26 23:11:20 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return bw;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-27 00:04:42 +03:00
|
|
|
/**
|
|
|
|
* Reformat a browser window contents to a new width or height.
|
|
|
|
*
|
|
|
|
* \param bw the browser window to reformat
|
|
|
|
* \param width new width
|
|
|
|
* \param height new height
|
|
|
|
*/
|
|
|
|
|
|
|
|
void browser_window_reformat(struct browser_window *bw, int width, int height)
|
|
|
|
{
|
2010-03-28 16:56:39 +04:00
|
|
|
hlcache_handle *c = bw->current_content;
|
2006-11-27 00:04:42 +03:00
|
|
|
|
2010-03-28 16:56:39 +04:00
|
|
|
if (c == NULL)
|
2006-11-27 00:04:42 +03:00
|
|
|
return;
|
|
|
|
|
2007-08-07 07:55:18 +04:00
|
|
|
content_reformat(c, width / bw->scale, height / bw->scale);
|
2006-11-27 00:04:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-26 23:11:20 +03:00
|
|
|
/**
|
|
|
|
* Sets the scale of a browser window
|
|
|
|
*
|
|
|
|
* \param bw The browser window to scale
|
|
|
|
* \param scale The new scale
|
|
|
|
* \param all Scale all windows in the tree (ie work up aswell as down)
|
|
|
|
*/
|
|
|
|
|
2006-11-27 18:35:18 +03:00
|
|
|
void browser_window_set_scale(struct browser_window *bw, float scale, bool all)
|
2006-11-27 00:04:42 +03:00
|
|
|
{
|
2006-11-26 23:11:20 +03:00
|
|
|
while (bw->parent && all)
|
|
|
|
bw = bw->parent;
|
2010-03-28 16:56:39 +04:00
|
|
|
|
2006-11-26 23:11:20 +03:00
|
|
|
browser_window_set_scale_internal(bw, scale);
|
2010-03-28 16:56:39 +04:00
|
|
|
|
2006-11-26 23:11:20 +03:00
|
|
|
if (bw->parent)
|
|
|
|
bw = bw->parent;
|
2010-03-28 16:56:39 +04:00
|
|
|
|
2006-11-26 23:11:20 +03:00
|
|
|
browser_window_recalculate_frameset(bw);
|
|
|
|
}
|
|
|
|
|
2006-11-27 00:04:42 +03:00
|
|
|
void browser_window_set_scale_internal(struct browser_window *bw, float scale)
|
|
|
|
{
|
2007-03-25 23:32:41 +04:00
|
|
|
int i;
|
2010-03-28 16:56:39 +04:00
|
|
|
hlcache_handle *c;
|
2007-08-07 07:55:18 +04:00
|
|
|
|
2007-10-28 20:05:39 +03:00
|
|
|
if (fabs(bw->scale-scale) < 0.0001)
|
2007-08-07 07:55:18 +04:00
|
|
|
return;
|
2010-03-28 16:56:39 +04:00
|
|
|
|
2007-08-07 07:55:18 +04:00
|
|
|
bw->scale = scale;
|
|
|
|
c = bw->current_content;
|
2010-03-28 16:56:39 +04:00
|
|
|
|
|
|
|
if (c != NULL) {
|
|
|
|
if (content_can_reformat(c) == false) {
|
2009-04-05 23:17:24 +04:00
|
|
|
browser_window_update(bw, false);
|
2007-08-07 07:55:18 +04:00
|
|
|
} else {
|
|
|
|
bw->reformat_pending = true;
|
|
|
|
browser_reformat_pending = true;
|
|
|
|
}
|
|
|
|
}
|
2006-11-26 23:11:20 +03:00
|
|
|
|
2007-03-25 23:32:41 +04:00
|
|
|
gui_window_set_scale(bw->window, scale);
|
2006-11-26 23:11:20 +03:00
|
|
|
|
|
|
|
for (i = 0; i < (bw->cols * bw->rows); i++)
|
|
|
|
browser_window_set_scale_internal(&bw->children[i], scale);
|
|
|
|
for (i = 0; i < bw->iframe_count; i++)
|
|
|
|
browser_window_set_scale_internal(&bw->iframes[i], scale);
|
|
|
|
}
|
|
|
|
|
2009-03-31 15:06:09 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Update URL bar for a given browser window to given URL
|
|
|
|
*
|
|
|
|
* \param bw Browser window to update URL bar for.
|
2009-03-31 15:12:36 +04:00
|
|
|
* \param url URL for content displayed by bw, excluding any fragment.
|
|
|
|
* \param frag Additional fragment. May be NULL if none.
|
2009-03-31 15:06:09 +04:00
|
|
|
*/
|
|
|
|
|
2009-03-30 19:46:26 +04:00
|
|
|
void browser_window_refresh_url_bar(struct browser_window *bw, const char *url,
|
|
|
|
const char *frag)
|
2009-03-31 15:06:09 +04:00
|
|
|
{
|
2009-03-30 19:46:26 +04:00
|
|
|
char *url_buf;
|
2009-03-31 16:55:23 +04:00
|
|
|
|
|
|
|
assert(bw);
|
|
|
|
assert(url);
|
2009-08-14 14:37:33 +04:00
|
|
|
|
|
|
|
bw->visible_select_menu = NULL;
|
2009-03-31 16:55:23 +04:00
|
|
|
|
|
|
|
if (frag == NULL) {
|
|
|
|
/* With no fragment, we may as well pass url straight through
|
|
|
|
* saving a malloc, copy, free cycle.
|
|
|
|
*/
|
|
|
|
gui_window_set_url(bw->window, url);
|
|
|
|
} else {
|
|
|
|
url_buf = malloc(strlen(url) + 1 /* # */ +
|
|
|
|
strlen(frag) + 1 /* \0 */);
|
|
|
|
if (url_buf != NULL) {
|
|
|
|
/* This sprintf is safe because of the above size
|
|
|
|
* calculation, thus we don't need snprintf
|
|
|
|
*/
|
|
|
|
sprintf(url_buf, "%s#%s", url, frag);
|
|
|
|
gui_window_set_url(bw->window, url_buf);
|
|
|
|
free(url_buf);
|
|
|
|
} else {
|
|
|
|
warn_user("NoMemory", 0);
|
|
|
|
}
|
|
|
|
}
|
2009-03-30 19:46:26 +04:00
|
|
|
}
|
2006-11-26 23:11:20 +03:00
|
|
|
|
2006-09-02 19:52:41 +04:00
|
|
|
/**
|
|
|
|
* Locate a browser window in the specified stack according.
|
|
|
|
*
|
|
|
|
* \param bw the browser_window to search all relatives of
|
|
|
|
* \param target the target to locate
|
2007-04-08 03:08:31 +04:00
|
|
|
* \param new_window always return a new window (ie 'Open Link in New Window')
|
2006-09-02 19:52:41 +04:00
|
|
|
*/
|
2006-09-06 04:15:10 +04:00
|
|
|
|
2008-11-29 03:24:09 +03:00
|
|
|
struct browser_window *browser_window_find_target(struct browser_window *bw,
|
|
|
|
const char *target, browser_mouse_state mouse)
|
2006-09-02 19:52:41 +04:00
|
|
|
{
|
|
|
|
struct browser_window *bw_target;
|
|
|
|
struct browser_window *top;
|
2010-03-28 16:56:39 +04:00
|
|
|
hlcache_handle *c;
|
2006-09-02 19:52:41 +04:00
|
|
|
int rdepth;
|
2006-09-06 04:15:10 +04:00
|
|
|
|
2006-09-02 19:52:41 +04:00
|
|
|
/* use the base target if we don't have one */
|
|
|
|
c = bw->current_content;
|
2010-03-28 16:56:39 +04:00
|
|
|
if (target == NULL && c != NULL && content_get_type(c) == CONTENT_HTML)
|
|
|
|
target = html_get_base_target(c);
|
|
|
|
if (target == NULL)
|
2007-04-08 03:08:31 +04:00
|
|
|
target = TARGET_SELF;
|
2006-09-02 19:52:41 +04:00
|
|
|
|
2008-11-29 03:24:09 +03:00
|
|
|
/* allow the simple case of target="_blank" to be ignored if requested
|
|
|
|
*/
|
|
|
|
if ((!(mouse & BROWSER_MOUSE_CLICK_2)) &&
|
|
|
|
(!((mouse & BROWSER_MOUSE_CLICK_2) &&
|
|
|
|
(mouse & BROWSER_MOUSE_MOD_2))) &&
|
|
|
|
(!option_target_blank)) {
|
|
|
|
/* not a mouse button 2 click
|
|
|
|
* not a mouse button 1 click with ctrl pressed
|
|
|
|
* configured to ignore target="_blank" */
|
2007-04-08 21:49:42 +04:00
|
|
|
if ((target == TARGET_BLANK) || (!strcasecmp(target, "_blank")))
|
|
|
|
return bw;
|
|
|
|
}
|
2006-09-02 19:52:41 +04:00
|
|
|
|
2007-04-08 03:08:31 +04:00
|
|
|
/* handle reserved keywords */
|
2008-11-29 03:24:09 +03:00
|
|
|
if (((option_button_2_tab) && (mouse & BROWSER_MOUSE_CLICK_2)) ||
|
|
|
|
((!option_button_2_tab) &&
|
|
|
|
((mouse & BROWSER_MOUSE_CLICK_1) &&
|
|
|
|
(mouse & BROWSER_MOUSE_MOD_2))) ||
|
|
|
|
((option_button_2_tab) && ((target == TARGET_BLANK) ||
|
|
|
|
(!strcasecmp(target, "_blank"))))) {
|
|
|
|
/* open in new tab if:
|
|
|
|
* - button_2 opens in new tab and button_2 was pressed
|
|
|
|
* OR
|
|
|
|
* - button_2 doesn't open in new tabs and button_1 was
|
|
|
|
* pressed with ctrl held
|
|
|
|
* OR
|
|
|
|
* - button_2 opens in new tab and the link target is "_blank"
|
|
|
|
*/
|
|
|
|
bw_target = browser_window_create(NULL, bw, NULL, false, true);
|
|
|
|
if (!bw_target)
|
|
|
|
return bw;
|
|
|
|
return bw_target;
|
|
|
|
} else if (((!option_button_2_tab) &&
|
|
|
|
(mouse & BROWSER_MOUSE_CLICK_2)) ||
|
|
|
|
((option_button_2_tab) &&
|
|
|
|
((mouse & BROWSER_MOUSE_CLICK_1) &&
|
|
|
|
(mouse & BROWSER_MOUSE_MOD_2))) ||
|
|
|
|
((!option_button_2_tab) && ((target == TARGET_BLANK) ||
|
|
|
|
(!strcasecmp(target, "_blank"))))) {
|
|
|
|
/* open in new window if:
|
|
|
|
* - button_2 doesn't open in new tabs and button_2 was pressed
|
|
|
|
* OR
|
|
|
|
* - button_2 opens in new tab and button_1 was pressed with
|
|
|
|
* ctrl held
|
|
|
|
* OR
|
|
|
|
* - button_2 doesn't open in new tabs and the link target is
|
|
|
|
* "_blank"
|
|
|
|
*/
|
2008-08-24 14:31:38 +04:00
|
|
|
bw_target = browser_window_create(NULL, bw, NULL, false, false);
|
2007-04-08 03:08:31 +04:00
|
|
|
if (!bw_target)
|
|
|
|
return bw;
|
|
|
|
return bw_target;
|
|
|
|
} else if ((target == TARGET_SELF) || (!strcasecmp(target, "_self"))) {
|
2006-09-02 19:52:41 +04:00
|
|
|
return bw;
|
2008-11-29 03:24:09 +03:00
|
|
|
} else if ((target == TARGET_PARENT) ||
|
|
|
|
(!strcasecmp(target, "_parent"))) {
|
2006-09-02 19:52:41 +04:00
|
|
|
if (bw->parent)
|
|
|
|
return bw->parent;
|
|
|
|
return bw;
|
|
|
|
} else if ((target == TARGET_TOP) || (!strcasecmp(target, "_top"))) {
|
|
|
|
while (bw->parent)
|
|
|
|
bw = bw->parent;
|
|
|
|
return bw;
|
|
|
|
}
|
2006-09-06 04:15:10 +04:00
|
|
|
|
2006-09-02 19:52:41 +04:00
|
|
|
/* find frame according to B.8, ie using the following priorities:
|
|
|
|
*
|
|
|
|
* 1) current frame
|
|
|
|
* 2) closest to front
|
|
|
|
*/
|
|
|
|
rdepth = -1;
|
2007-04-08 03:08:31 +04:00
|
|
|
bw_target = NULL;
|
2006-09-02 19:52:41 +04:00
|
|
|
for (top = bw; top->parent; top = top->parent);
|
2009-03-31 15:06:09 +04:00
|
|
|
browser_window_find_target_internal(top, target, 0, bw, &rdepth,
|
|
|
|
&bw_target);
|
2007-04-08 03:08:31 +04:00
|
|
|
if (bw_target)
|
|
|
|
return bw_target;
|
2007-08-07 11:58:04 +04:00
|
|
|
|
2007-04-08 03:08:31 +04:00
|
|
|
/* we require a new window using the target name */
|
|
|
|
if (!option_target_blank)
|
|
|
|
return bw;
|
2008-08-24 14:31:38 +04:00
|
|
|
bw_target = browser_window_create(NULL, bw, NULL, false, false);
|
2007-04-08 03:08:31 +04:00
|
|
|
if (!bw_target)
|
|
|
|
return bw;
|
2007-08-07 11:58:04 +04:00
|
|
|
|
2009-03-31 15:06:09 +04:00
|
|
|
/* frame names should begin with an alphabetic character (a-z,A-Z),
|
|
|
|
* however in practice you get things such as '_new' and '2left'. The
|
|
|
|
* only real effect this has is when giving out names as it can be
|
|
|
|
* assumed that an author intended '_new' to create a new nameless
|
|
|
|
* window (ie '_blank') whereas in the case of '2left' the intention
|
|
|
|
* was for a new named window. As such we merely special case windows
|
|
|
|
* that begin with an underscore. */
|
2007-04-08 03:08:31 +04:00
|
|
|
if (target[0] != '_') {
|
|
|
|
bw_target->name = strdup(target);
|
|
|
|
if (!bw_target->name)
|
|
|
|
warn_user("NoMemory", 0);
|
|
|
|
}
|
2006-09-02 19:52:41 +04:00
|
|
|
return bw_target;
|
|
|
|
}
|
|
|
|
|
2009-03-31 15:06:09 +04:00
|
|
|
void browser_window_find_target_internal(struct browser_window *bw,
|
|
|
|
const char *target, int depth, struct browser_window *page,
|
|
|
|
int *rdepth, struct browser_window **bw_target)
|
2006-09-02 19:52:41 +04:00
|
|
|
{
|
|
|
|
int i;
|
2006-09-06 04:15:10 +04:00
|
|
|
|
2006-09-02 19:52:41 +04:00
|
|
|
if ((bw->name) && (!strcasecmp(bw->name, target))) {
|
|
|
|
if ((bw == page) || (depth > *rdepth)) {
|
|
|
|
*rdepth = depth;
|
|
|
|
*bw_target = bw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((!bw->children) && (!bw->iframes))
|
|
|
|
return;
|
2006-09-06 04:15:10 +04:00
|
|
|
|
2006-09-02 19:52:41 +04:00
|
|
|
depth++;
|
2009-11-22 16:35:41 +03:00
|
|
|
|
|
|
|
if (bw->children != NULL) {
|
|
|
|
for (i = 0; i < (bw->cols * bw->rows); i++) {
|
|
|
|
if ((bw->children[i].name) &&
|
|
|
|
(!strcasecmp(bw->children[i].name,
|
|
|
|
target))) {
|
|
|
|
if ((page == &bw->children[i]) ||
|
|
|
|
(depth > *rdepth)) {
|
|
|
|
*rdepth = depth;
|
|
|
|
*bw_target = &bw->children[i];
|
|
|
|
}
|
2006-09-02 19:52:41 +04:00
|
|
|
}
|
2009-11-22 16:35:41 +03:00
|
|
|
if (bw->children[i].children)
|
|
|
|
browser_window_find_target_internal(
|
|
|
|
&bw->children[i],
|
|
|
|
target, depth, page,
|
|
|
|
rdepth, bw_target);
|
2006-09-02 19:52:41 +04:00
|
|
|
}
|
2009-11-22 16:35:41 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (bw->iframes != NULL) {
|
|
|
|
for (i = 0; i < bw->iframe_count; i++)
|
|
|
|
browser_window_find_target_internal(&bw->iframes[i],
|
2009-03-31 15:06:09 +04:00
|
|
|
target, depth, page, rdepth, bw_target);
|
2006-09-02 19:52:41 +04:00
|
|
|
}
|
2003-10-25 18:13:49 +04:00
|
|
|
}
|
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
|
2004-10-18 01:11:29 +04:00
|
|
|
/**
|
2005-04-15 09:52:25 +04:00
|
|
|
* Handle mouse movements in a browser window.
|
2004-10-18 01:11:29 +04:00
|
|
|
*
|
2006-09-02 19:52:41 +04:00
|
|
|
* \param bw browser window
|
2005-04-15 09:52:25 +04:00
|
|
|
* \param mouse state of mouse buttons and modifier keys
|
2006-09-02 19:52:41 +04:00
|
|
|
* \param x coordinate of mouse
|
|
|
|
* \param y coordinate of mouse
|
2004-10-18 01:11:29 +04:00
|
|
|
*/
|
|
|
|
|
2005-04-15 09:52:25 +04:00
|
|
|
void browser_window_mouse_track(struct browser_window *bw,
|
|
|
|
browser_mouse_state mouse, int x, int y)
|
2004-10-18 01:11:29 +04:00
|
|
|
{
|
2010-03-28 16:56:39 +04:00
|
|
|
hlcache_handle *c = bw->current_content;
|
2009-05-28 18:35:12 +04:00
|
|
|
|
|
|
|
if (c == NULL && bw->drag_type != DRAGGING_FRAME)
|
2005-08-21 14:52:17 +04:00
|
|
|
return;
|
2004-10-18 01:11:29 +04:00
|
|
|
|
2005-04-18 15:52:26 +04:00
|
|
|
/* detect end of drag operation in case the platform-specific code
|
|
|
|
doesn't call browser_mouse_drag_end() (RISC OS code does) */
|
2005-04-15 09:52:25 +04:00
|
|
|
|
|
|
|
if (bw->drag_type != DRAGGING_NONE && !mouse) {
|
|
|
|
browser_window_mouse_drag_end(bw, mouse, x, y);
|
|
|
|
}
|
2009-05-28 18:35:12 +04:00
|
|
|
|
2006-09-02 19:52:41 +04:00
|
|
|
if (bw->drag_type == DRAGGING_FRAME) {
|
|
|
|
browser_window_resize_frame(bw, bw->x0 + x, bw->y0 + y);
|
|
|
|
} else if (bw->drag_type == DRAGGING_PAGE_SCROLL) {
|
2005-08-21 14:52:17 +04:00
|
|
|
/* mouse movement since drag started */
|
2006-09-02 19:52:41 +04:00
|
|
|
int scrollx = bw->drag_start_x - x;
|
|
|
|
int scrolly = bw->drag_start_y - y;
|
2005-04-15 09:52:25 +04:00
|
|
|
|
2005-08-21 14:52:17 +04:00
|
|
|
/* new scroll offsets */
|
2006-09-02 19:52:41 +04:00
|
|
|
scrollx += bw->drag_start_scroll_x;
|
|
|
|
scrolly += bw->drag_start_scroll_y;
|
2005-04-15 09:52:25 +04:00
|
|
|
|
2006-09-02 19:52:41 +04:00
|
|
|
bw->drag_start_scroll_x = scrollx;
|
|
|
|
bw->drag_start_scroll_y = scrolly;
|
2005-04-15 09:52:25 +04:00
|
|
|
|
|
|
|
gui_window_set_scroll(bw->window, scrollx, scrolly);
|
2009-05-28 18:35:12 +04:00
|
|
|
} else {
|
|
|
|
assert(c != NULL);
|
2010-06-04 13:35:08 +04:00
|
|
|
content_mouse_track(c, bw, mouse, x, y);
|
2005-04-15 09:52:25 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2010-06-04 13:35:08 +04:00
|
|
|
* Handle mouse clicks in a browser window.
|
2005-04-15 09:52:25 +04:00
|
|
|
*
|
2006-09-02 19:52:41 +04:00
|
|
|
* \param bw browser window
|
2006-02-16 02:09:55 +03:00
|
|
|
* \param mouse state of mouse buttons and modifier keys
|
2006-09-02 19:52:41 +04:00
|
|
|
* \param x coordinate of mouse
|
|
|
|
* \param y coordinate of mouse
|
2005-04-15 09:52:25 +04:00
|
|
|
*/
|
|
|
|
|
2010-06-04 13:35:08 +04:00
|
|
|
void browser_window_mouse_click(struct browser_window *bw,
|
2005-04-15 09:52:25 +04:00
|
|
|
browser_mouse_state mouse, int x, int y)
|
|
|
|
{
|
2010-06-04 13:35:08 +04:00
|
|
|
hlcache_handle *c = bw->current_content;
|
2009-07-21 14:59:53 +04:00
|
|
|
|
2010-06-04 13:35:08 +04:00
|
|
|
if (!c)
|
|
|
|
return;
|
2006-02-16 02:09:55 +03:00
|
|
|
|
2010-06-04 13:35:08 +04:00
|
|
|
switch (content_get_type(c)) {
|
|
|
|
case CONTENT_HTML:
|
|
|
|
case CONTENT_TEXTPLAIN:
|
|
|
|
content_mouse_action(c, bw, mouse, x, y);
|
2005-04-15 09:52:25 +04:00
|
|
|
break;
|
2010-06-04 13:35:08 +04:00
|
|
|
default:
|
|
|
|
if (mouse & BROWSER_MOUSE_MOD_2) {
|
|
|
|
if (mouse & BROWSER_MOUSE_DRAG_2)
|
|
|
|
gui_drag_save_object(GUI_SAVE_OBJECT_NATIVE, c,
|
|
|
|
bw->window);
|
|
|
|
else if (mouse & BROWSER_MOUSE_DRAG_1)
|
|
|
|
gui_drag_save_object(GUI_SAVE_OBJECT_ORIG, c,
|
|
|
|
bw->window);
|
|
|
|
}
|
|
|
|
else if (mouse & (BROWSER_MOUSE_DRAG_1 |
|
|
|
|
BROWSER_MOUSE_DRAG_2)) {
|
|
|
|
browser_window_page_drag_start(bw, x, y);
|
|
|
|
browser_window_set_pointer(bw->window, GUI_POINTER_MOVE);
|
2006-02-16 02:09:55 +03:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handles the end of a drag operation in a browser window.
|
|
|
|
*
|
2006-09-02 19:52:41 +04:00
|
|
|
* \param bw browser window
|
2006-02-16 02:09:55 +03:00
|
|
|
* \param mouse state of mouse buttons and modifier keys
|
2006-09-02 19:52:41 +04:00
|
|
|
* \param x coordinate of mouse
|
|
|
|
* \param y coordinate of mouse
|
2006-02-16 02:09:55 +03:00
|
|
|
*/
|
|
|
|
|
2010-06-04 13:35:08 +04:00
|
|
|
// TODO: MOVE content specific stuff out
|
|
|
|
|
2006-02-16 02:09:55 +03:00
|
|
|
void browser_window_mouse_drag_end(struct browser_window *bw,
|
|
|
|
browser_mouse_state mouse, int x, int y)
|
|
|
|
{
|
2009-08-14 14:37:33 +04:00
|
|
|
|
|
|
|
if (bw->visible_select_menu != NULL) {
|
2010-06-04 13:35:08 +04:00
|
|
|
form_select_mouse_drag_end(bw->visible_select_menu, mouse,
|
|
|
|
x, y);
|
2009-08-14 14:37:33 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bw->scroll != NULL) {
|
2010-06-04 13:35:08 +04:00
|
|
|
html_overflow_scroll_drag_end(bw->scroll, mouse, x, y);
|
2009-08-14 14:37:33 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-02-16 02:09:55 +03:00
|
|
|
switch (bw->drag_type) {
|
2010-06-04 13:35:08 +04:00
|
|
|
case DRAGGING_SELECTION: {
|
|
|
|
hlcache_handle *h = bw->current_content;
|
|
|
|
if (h) {
|
|
|
|
int dir = -1;
|
|
|
|
size_t idx;
|
|
|
|
|
|
|
|
if (selection_dragging_start(bw->sel))
|
|
|
|
dir = 1;
|
2006-02-16 02:09:55 +03:00
|
|
|
|
2010-06-04 13:35:08 +04:00
|
|
|
if (content_get_type(h) == CONTENT_HTML) {
|
|
|
|
idx = html_selection_drag_end(h, mouse, x, y,
|
|
|
|
dir);
|
|
|
|
if (idx != 0)
|
2006-02-16 02:09:55 +03:00
|
|
|
selection_track(bw->sel, mouse, idx);
|
2010-06-04 13:35:08 +04:00
|
|
|
} else {
|
|
|
|
assert(content_get_type(h) ==
|
|
|
|
CONTENT_TEXTPLAIN);
|
|
|
|
idx = textplain_offset_from_coords(h, x, y,
|
|
|
|
dir);
|
|
|
|
selection_track(bw->sel, mouse, idx);
|
2006-02-16 02:09:55 +03:00
|
|
|
}
|
2005-07-24 11:00:47 +04:00
|
|
|
}
|
2010-06-04 13:35:08 +04:00
|
|
|
selection_drag_end(bw->sel);
|
2005-04-15 09:52:25 +04:00
|
|
|
}
|
2010-06-04 13:35:08 +04:00
|
|
|
break;
|
2005-04-15 09:52:25 +04:00
|
|
|
|
2010-06-04 13:35:08 +04:00
|
|
|
default:
|
|
|
|
break;
|
2002-12-31 01:56:30 +03:00
|
|
|
}
|
|
|
|
|
2010-06-04 13:35:08 +04:00
|
|
|
bw->drag_type = DRAGGING_NONE;
|
2002-12-31 01:56:30 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-15 09:52:25 +04:00
|
|
|
/**
|
|
|
|
* Redraw a rectangular region of a browser window
|
|
|
|
*
|
2006-09-02 19:52:41 +04:00
|
|
|
* \param bw browser window to be redrawn
|
|
|
|
* \param x x co-ord of top-left
|
|
|
|
* \param y y co-ord of top-left
|
2005-04-15 09:52:25 +04:00
|
|
|
* \param width width of rectangle
|
|
|
|
* \param height height of rectangle
|
|
|
|
*/
|
|
|
|
|
2005-07-24 11:00:47 +04:00
|
|
|
void browser_window_redraw_rect(struct browser_window *bw, int x, int y,
|
|
|
|
int width, int height)
|
2005-04-15 09:52:25 +04:00
|
|
|
{
|
2010-03-28 16:56:39 +04:00
|
|
|
content_request_redraw(bw->current_content, x, y, width, height);
|
2005-04-15 09:52:25 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Start drag scrolling the contents of the browser window
|
|
|
|
*
|
|
|
|
* \param bw browser window
|
|
|
|
* \param x x ordinate of initial mouse position
|
|
|
|
* \param y y ordinate
|
|
|
|
*/
|
|
|
|
|
|
|
|
void browser_window_page_drag_start(struct browser_window *bw, int x, int y)
|
|
|
|
{
|
|
|
|
bw->drag_type = DRAGGING_PAGE_SCROLL;
|
|
|
|
|
2006-09-02 19:52:41 +04:00
|
|
|
bw->drag_start_x = x;
|
|
|
|
bw->drag_start_y = y;
|
2005-04-15 09:52:25 +04:00
|
|
|
|
2009-08-14 14:37:33 +04:00
|
|
|
gui_window_get_scroll(bw->window, &bw->drag_start_scroll_x,
|
|
|
|
&bw->drag_start_scroll_y);
|
2005-04-15 09:52:25 +04:00
|
|
|
|
|
|
|
gui_window_scroll_start(bw->window);
|
|
|
|
}
|
2009-03-24 01:22:30 +03:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check availability of Back action for a given browser window
|
|
|
|
*
|
|
|
|
* \param bw browser window
|
|
|
|
* \return true if Back action is available
|
|
|
|
*/
|
|
|
|
|
|
|
|
bool browser_window_back_available(struct browser_window *bw)
|
|
|
|
{
|
|
|
|
return (bw && bw->history && history_back_available(bw->history));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check availability of Forward action for a given browser window
|
|
|
|
*
|
|
|
|
* \param bw browser window
|
|
|
|
* \return true if Forward action is available
|
|
|
|
*/
|
|
|
|
|
|
|
|
bool browser_window_forward_available(struct browser_window *bw)
|
|
|
|
{
|
|
|
|
return (bw && bw->history && history_forward_available(bw->history));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check availability of Reload action for a given browser window
|
|
|
|
*
|
|
|
|
* \param bw browser window
|
|
|
|
* \return true if Reload action is available
|
|
|
|
*/
|
|
|
|
|
|
|
|
bool browser_window_reload_available(struct browser_window *bw)
|
|
|
|
{
|
|
|
|
return (bw && bw->current_content && !bw->loading_content);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check availability of Stop action for a given browser window
|
|
|
|
*
|
|
|
|
* \param bw browser window
|
|
|
|
* \return true if Stop action is available
|
|
|
|
*/
|
|
|
|
|
|
|
|
bool browser_window_stop_available(struct browser_window *bw)
|
|
|
|
{
|
|
|
|
return (bw && (bw->loading_content ||
|
|
|
|
(bw->current_content &&
|
2010-03-28 16:56:39 +04:00
|
|
|
(content_get_status(bw->current_content) !=
|
|
|
|
CONTENT_STATUS_DONE))));
|
2009-03-24 01:22:30 +03:00
|
|
|
}
|