2006-03-25 23:30:35 +03:00
|
|
|
/*
|
|
|
|
* Copyright 2006 James Bursa <bursa@users.sourceforge.net>
|
|
|
|
* Copyright 2005 Richard Wilson <info@tinct.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/>.
|
2006-03-25 23:30:35 +03:00
|
|
|
*/
|
|
|
|
|
2014-11-09 18:48:38 +03:00
|
|
|
/**
|
|
|
|
* \file
|
2014-10-13 14:56:31 +04:00
|
|
|
* Browser history tree implementation.
|
2006-03-25 23:30:35 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <time.h>
|
2014-01-30 01:35:53 +04:00
|
|
|
|
2014-10-13 14:56:31 +04:00
|
|
|
#include "utils/log.h"
|
|
|
|
#include "utils/utils.h"
|
2016-06-06 10:59:23 +03:00
|
|
|
#include "netsurf/layout.h"
|
|
|
|
#include "netsurf/content.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"
|
2016-05-27 01:01:03 +03:00
|
|
|
#include "netsurf/bitmap.h"
|
2014-10-13 14:56:31 +04:00
|
|
|
|
2015-04-14 01:19:04 +03:00
|
|
|
#include "desktop/gui_internal.h"
|
2014-02-15 22:43:59 +04:00
|
|
|
#include "desktop/browser_history.h"
|
|
|
|
#include "desktop/browser_private.h"
|
2006-03-25 23:30:35 +03:00
|
|
|
|
|
|
|
#define WIDTH 100
|
|
|
|
#define HEIGHT 86
|
|
|
|
#define RIGHT_MARGIN 50
|
|
|
|
#define BOTTOM_MARGIN 30
|
|
|
|
|
2006-04-22 20:38:13 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Clone a history entry
|
|
|
|
*
|
2014-11-09 18:48:38 +03:00
|
|
|
* \param history opaque history structure, as returned by history_create()
|
|
|
|
* \param entry entry to clone
|
|
|
|
* \return A cloned history entry or NULL on error
|
2006-04-22 20:38:13 +04:00
|
|
|
*/
|
2014-11-09 18:48:38 +03:00
|
|
|
static struct history_entry *
|
|
|
|
browser_window_history__clone_entry(struct history *history,
|
|
|
|
struct history_entry *entry)
|
2006-04-22 20:38:13 +04:00
|
|
|
{
|
|
|
|
struct history_entry *child;
|
2006-04-23 01:35:28 +04:00
|
|
|
struct history_entry *new_child;
|
|
|
|
struct history_entry *prev = NULL;
|
2006-04-22 20:38:13 +04:00
|
|
|
struct history_entry *new_entry;
|
|
|
|
|
2007-04-18 06:52:26 +04:00
|
|
|
assert(entry->page.url);
|
|
|
|
assert(entry->page.title);
|
|
|
|
|
2006-04-22 20:38:13 +04:00
|
|
|
/* clone the entry */
|
|
|
|
new_entry = malloc(sizeof *entry);
|
2006-06-29 02:45:48 +04:00
|
|
|
if (!new_entry)
|
2013-11-03 19:29:17 +04:00
|
|
|
return NULL;
|
|
|
|
|
2006-04-22 20:38:13 +04:00
|
|
|
memcpy(new_entry, entry, sizeof *entry);
|
2013-07-12 02:38:32 +04:00
|
|
|
new_entry->page.url = nsurl_ref(entry->page.url);
|
2006-09-02 19:52:41 +04:00
|
|
|
if (entry->page.frag_id)
|
2013-07-12 02:38:32 +04:00
|
|
|
new_entry->page.frag_id = lwc_string_ref(entry->page.frag_id);
|
2013-11-03 19:29:17 +04:00
|
|
|
|
2006-09-02 19:52:41 +04:00
|
|
|
new_entry->page.title = strdup(entry->page.title);
|
2007-04-18 06:52:26 +04:00
|
|
|
if (!new_entry->page.url || !new_entry->page.title ||
|
2006-09-02 19:52:41 +04:00
|
|
|
((entry->page.frag_id) && (!new_entry->page.frag_id))) {
|
2013-07-12 02:38:32 +04:00
|
|
|
nsurl_unref(new_entry->page.url);
|
|
|
|
if (new_entry->page.frag_id)
|
|
|
|
lwc_string_unref(new_entry->page.frag_id);
|
2006-09-02 19:52:41 +04:00
|
|
|
free(new_entry->page.title);
|
2006-06-29 02:45:48 +04:00
|
|
|
free(new_entry);
|
2013-11-03 19:29:17 +04:00
|
|
|
return NULL;
|
2006-04-22 22:24:18 +04:00
|
|
|
}
|
2006-11-27 18:35:18 +03:00
|
|
|
|
2006-04-23 01:35:28 +04:00
|
|
|
/* update references */
|
2006-04-22 20:38:13 +04:00
|
|
|
if (history->current == entry)
|
|
|
|
history->current = new_entry;
|
|
|
|
|
2006-04-23 01:35:28 +04:00
|
|
|
/* recurse for all children */
|
|
|
|
for (child = new_entry->forward; child; child = child->next) {
|
2014-02-15 22:43:59 +04:00
|
|
|
new_child = browser_window_history__clone_entry(history, child);
|
2013-11-03 19:29:17 +04:00
|
|
|
if (new_child) {
|
2007-04-08 00:30:39 +04:00
|
|
|
new_child->back = new_entry;
|
2013-11-03 19:29:17 +04:00
|
|
|
} else {
|
|
|
|
nsurl_unref(new_entry->page.url);
|
|
|
|
if (new_entry->page.frag_id)
|
|
|
|
lwc_string_unref(new_entry->page.frag_id);
|
|
|
|
free(new_entry->page.title);
|
|
|
|
free(new_entry);
|
|
|
|
return NULL;
|
|
|
|
}
|
2006-04-23 01:35:28 +04:00
|
|
|
if (prev)
|
|
|
|
prev->next = new_child;
|
|
|
|
if (new_entry->forward == child)
|
|
|
|
new_entry->forward = new_child;
|
|
|
|
if (new_entry->forward_pref == child)
|
|
|
|
new_entry->forward_pref = new_child;
|
|
|
|
if (new_entry->forward_last == child)
|
|
|
|
new_entry->forward_last = new_child;
|
|
|
|
prev = new_child;
|
2006-04-22 20:38:13 +04:00
|
|
|
}
|
2014-02-15 22:43:59 +04:00
|
|
|
return new_entry;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Free an entry in the tree recursively.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static void browser_window_history__free_entry(struct history_entry *entry)
|
|
|
|
{
|
|
|
|
if (!entry)
|
|
|
|
return;
|
|
|
|
browser_window_history__free_entry(entry->forward);
|
|
|
|
browser_window_history__free_entry(entry->next);
|
|
|
|
nsurl_unref(entry->page.url);
|
|
|
|
if (entry->page.frag_id)
|
|
|
|
lwc_string_unref(entry->page.frag_id);
|
|
|
|
free(entry->page.title);
|
|
|
|
free(entry);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Recursively position a subtree.
|
|
|
|
*
|
|
|
|
* \param history history being laid out
|
|
|
|
* \param entry subtree to position
|
|
|
|
* \param x x position for entry
|
|
|
|
* \param y smallest available y
|
|
|
|
* \return greatest y used by subtree
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int browser_window_history__layout_subtree(struct history *history,
|
2014-11-05 20:30:00 +03:00
|
|
|
struct history_entry *entry, int x, int y)
|
2014-02-15 22:43:59 +04:00
|
|
|
{
|
|
|
|
struct history_entry *child;
|
|
|
|
int y1 = y;
|
|
|
|
|
|
|
|
if (history->width < x + WIDTH)
|
|
|
|
history->width = x + WIDTH;
|
|
|
|
|
|
|
|
if (!entry->forward) {
|
|
|
|
entry->x = x;
|
|
|
|
entry->y = y;
|
|
|
|
return y + HEIGHT;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* layout child subtrees below each other */
|
|
|
|
for (child = entry->forward; child; child = child->next) {
|
|
|
|
y1 = browser_window_history__layout_subtree(history, child,
|
2014-11-05 20:30:00 +03:00
|
|
|
x + WIDTH + RIGHT_MARGIN, y1);
|
2014-02-15 22:43:59 +04:00
|
|
|
if (child->next)
|
|
|
|
y1 += BOTTOM_MARGIN;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* place ourselves in the middle */
|
|
|
|
entry->x = x;
|
|
|
|
entry->y = (y + y1) / 2 - HEIGHT / 2;
|
|
|
|
|
|
|
|
return y1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Compute node positions.
|
|
|
|
*
|
|
|
|
* \param history history to layout
|
|
|
|
*
|
|
|
|
* Each node's x and y are filled in.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static void browser_window_history__layout(struct history *history)
|
|
|
|
{
|
|
|
|
if (!history)
|
|
|
|
return;
|
|
|
|
|
|
|
|
history->width = 0;
|
|
|
|
if (history->start)
|
|
|
|
history->height = browser_window_history__layout_subtree(
|
|
|
|
history, history->start,
|
2014-11-05 20:30:00 +03:00
|
|
|
RIGHT_MARGIN / 2, BOTTOM_MARGIN / 2);
|
2014-02-15 22:43:59 +04:00
|
|
|
else
|
|
|
|
history->height = 0;
|
2014-11-05 20:30:00 +03:00
|
|
|
|
2014-02-15 22:43:59 +04:00
|
|
|
history->width += RIGHT_MARGIN / 2;
|
|
|
|
history->height += BOTTOM_MARGIN / 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Enumerate subentries in history
|
|
|
|
* See also history_enumerate()
|
|
|
|
*
|
|
|
|
* \param bw The browser window to enumerate history of
|
|
|
|
* \param entry entry to start enumeration at
|
|
|
|
* \param cb callback function
|
|
|
|
* \param ud context pointer passed to cb
|
|
|
|
* \return true to continue enumeration, false to cancel
|
|
|
|
*/
|
|
|
|
static bool browser_window_history__enumerate_entry(
|
|
|
|
const struct browser_window *bw,
|
|
|
|
const struct history_entry *entry,
|
|
|
|
browser_window_history_enumerate_cb cb,
|
|
|
|
void *ud)
|
|
|
|
{
|
|
|
|
const struct history_entry *child;
|
|
|
|
|
|
|
|
if (!cb(bw, entry->x, entry->y,
|
|
|
|
entry->x + WIDTH, entry->y + HEIGHT,
|
|
|
|
entry, ud))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
for (child = entry->forward; child; child = child->next) {
|
|
|
|
if (!browser_window_history__enumerate_entry(bw, child,
|
|
|
|
cb, ud))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
|
2014-10-31 01:19:42 +03:00
|
|
|
/* exported interface documented in desktop/browser_history.h */
|
2014-02-15 22:43:59 +04:00
|
|
|
nserror browser_window_history_create(struct browser_window *bw)
|
|
|
|
{
|
|
|
|
struct history *history;
|
|
|
|
|
|
|
|
bw->history = NULL;
|
|
|
|
|
|
|
|
history = calloc(1, sizeof *history);
|
2014-10-30 01:14:48 +03:00
|
|
|
if (history == NULL) {
|
2014-02-15 22:43:59 +04:00
|
|
|
return NSERROR_NOMEM;
|
|
|
|
}
|
2014-10-30 01:14:48 +03:00
|
|
|
|
2014-02-15 22:43:59 +04:00
|
|
|
history->width = RIGHT_MARGIN / 2;
|
|
|
|
history->height = BOTTOM_MARGIN / 2;
|
|
|
|
|
|
|
|
bw->history = history;
|
2017-01-12 10:58:33 +03:00
|
|
|
|
2014-02-15 22:43:59 +04:00
|
|
|
return NSERROR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-10-31 01:19:42 +03:00
|
|
|
/* exported interface documented in desktop/browser_history.h */
|
2014-02-19 18:08:52 +04:00
|
|
|
nserror browser_window_history_clone(const struct browser_window *existing,
|
|
|
|
struct browser_window *clone)
|
2014-02-15 22:43:59 +04:00
|
|
|
{
|
|
|
|
struct history *new_history;
|
|
|
|
|
2014-02-19 18:08:52 +04:00
|
|
|
clone->history = NULL;
|
2014-02-15 22:43:59 +04:00
|
|
|
|
2014-02-19 18:08:52 +04:00
|
|
|
if (existing == NULL || existing->history == NULL ||
|
|
|
|
existing->history->start == NULL)
|
|
|
|
/* Nothing to clone, create new history for clone window */
|
|
|
|
return browser_window_history_create(clone);
|
2014-02-15 22:43:59 +04:00
|
|
|
|
2014-02-19 18:08:52 +04:00
|
|
|
/* Make cloned history */
|
2014-02-15 22:43:59 +04:00
|
|
|
new_history = malloc(sizeof *new_history);
|
|
|
|
if (!new_history)
|
|
|
|
return NSERROR_NOMEM;
|
|
|
|
|
2014-02-19 18:08:52 +04:00
|
|
|
clone->history = new_history;
|
|
|
|
memcpy(new_history, existing->history, sizeof *new_history);
|
2014-02-15 22:43:59 +04:00
|
|
|
|
|
|
|
new_history->start = browser_window_history__clone_entry(new_history,
|
|
|
|
new_history->start);
|
|
|
|
if (!new_history->start) {
|
2015-05-28 18:08:46 +03:00
|
|
|
LOG("Insufficient memory to clone history");
|
2014-02-19 18:08:52 +04:00
|
|
|
browser_window_history_destroy(clone);
|
|
|
|
clone->history = NULL;
|
2014-02-15 22:43:59 +04:00
|
|
|
return NSERROR_NOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NSERROR_OK;
|
2006-04-22 20:38:13 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-10-30 01:47:25 +03:00
|
|
|
/* exported interface documented in desktop/browser_history.h */
|
|
|
|
nserror browser_window_history_add(struct browser_window *bw,
|
2014-02-15 22:43:59 +04:00
|
|
|
struct hlcache_handle *content, lwc_string *frag_id)
|
2006-03-25 23:30:35 +03:00
|
|
|
{
|
2014-02-15 22:43:59 +04:00
|
|
|
struct history *history;
|
2006-03-25 23:30:35 +03:00
|
|
|
struct history_entry *entry;
|
2012-10-11 14:20:02 +04:00
|
|
|
nsurl *nsurl = hlcache_handle_get_url(content);
|
2006-03-25 23:30:35 +03:00
|
|
|
char *title;
|
2008-04-07 15:15:09 +04:00
|
|
|
struct bitmap *bitmap;
|
2015-04-24 00:23:09 +03:00
|
|
|
nserror ret;
|
2006-03-25 23:30:35 +03:00
|
|
|
|
2014-02-15 22:43:59 +04:00
|
|
|
assert(bw);
|
|
|
|
assert(bw->history);
|
2006-03-25 23:30:35 +03:00
|
|
|
assert(content);
|
|
|
|
|
2014-02-15 22:43:59 +04:00
|
|
|
history = bw->history;
|
|
|
|
|
2006-03-25 23:30:35 +03:00
|
|
|
/* allocate space */
|
|
|
|
entry = malloc(sizeof *entry);
|
2014-10-30 01:47:25 +03:00
|
|
|
if (entry == NULL) {
|
|
|
|
return NSERROR_NOMEM;
|
|
|
|
}
|
2007-04-18 06:52:26 +04:00
|
|
|
|
2010-03-28 16:56:39 +04:00
|
|
|
title = strdup(content_get_title(content));
|
2009-11-22 17:10:39 +03:00
|
|
|
if (title == NULL) {
|
|
|
|
free(entry);
|
2014-10-30 01:47:25 +03:00
|
|
|
return NSERROR_NOMEM;
|
2006-03-25 23:30:35 +03:00
|
|
|
}
|
|
|
|
|
2013-07-12 02:38:32 +04:00
|
|
|
entry->page.url = nsurl_ref(nsurl);
|
|
|
|
entry->page.frag_id = frag_id ? lwc_string_ref(frag_id) : 0;
|
|
|
|
|
2006-09-02 19:52:41 +04:00
|
|
|
entry->page.title = title;
|
2006-03-25 23:30:35 +03:00
|
|
|
entry->back = history->current;
|
|
|
|
entry->next = 0;
|
|
|
|
entry->forward = entry->forward_pref = entry->forward_last = 0;
|
|
|
|
entry->children = 0;
|
|
|
|
entry->bitmap = 0;
|
|
|
|
if (history->current) {
|
|
|
|
if (history->current->forward_last)
|
|
|
|
history->current->forward_last->next = entry;
|
|
|
|
else
|
|
|
|
history->current->forward = entry;
|
|
|
|
history->current->forward_pref = entry;
|
|
|
|
history->current->forward_last = entry;
|
|
|
|
history->current->children++;
|
|
|
|
} else {
|
|
|
|
history->start = entry;
|
|
|
|
}
|
|
|
|
history->current = entry;
|
|
|
|
|
|
|
|
/* if we have a thumbnail, don't update until the page has finished
|
|
|
|
* loading */
|
2012-10-11 14:20:02 +04:00
|
|
|
bitmap = urldb_get_thumbnail(nsurl);
|
2014-10-30 01:47:25 +03:00
|
|
|
if (bitmap == NULL) {
|
2015-05-28 18:08:46 +03:00
|
|
|
LOG("Creating thumbnail for %s", nsurl_access(nsurl));
|
2015-04-14 01:19:04 +03:00
|
|
|
bitmap = guit->bitmap->create(WIDTH, HEIGHT,
|
|
|
|
BITMAP_NEW | BITMAP_CLEAR_MEMORY |
|
|
|
|
BITMAP_OPAQUE);
|
2015-03-15 03:00:45 +03:00
|
|
|
if (bitmap != NULL) {
|
2015-04-24 00:23:09 +03:00
|
|
|
ret = guit->bitmap->render(bitmap, content);
|
|
|
|
if (ret == NSERROR_OK) {
|
2015-03-15 03:00:45 +03:00
|
|
|
/* Successful thumbnail so register it
|
|
|
|
* with the url.
|
|
|
|
*/
|
|
|
|
urldb_set_thumbnail(nsurl, bitmap);
|
|
|
|
} else {
|
|
|
|
/* Thumbnailing failed. Ignore it
|
|
|
|
* silently but clean up bitmap.
|
|
|
|
*/
|
2015-05-28 18:08:46 +03:00
|
|
|
LOG("Thumbnail renderfailed");
|
2015-04-14 01:19:04 +03:00
|
|
|
guit->bitmap->destroy(bitmap);
|
2015-03-15 03:00:45 +03:00
|
|
|
bitmap = NULL;
|
|
|
|
}
|
2009-02-18 16:25:57 +03:00
|
|
|
}
|
2006-03-25 23:30:35 +03:00
|
|
|
}
|
|
|
|
entry->bitmap = bitmap;
|
|
|
|
|
2014-02-15 22:43:59 +04:00
|
|
|
browser_window_history__layout(history);
|
2014-10-30 01:47:25 +03:00
|
|
|
|
|
|
|
return NSERROR_OK;
|
2006-03-25 23:30:35 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-10-30 02:15:51 +03:00
|
|
|
/* exported interface documented in desktop/browser_history.h */
|
|
|
|
nserror browser_window_history_update(struct browser_window *bw,
|
2014-02-15 22:43:59 +04:00
|
|
|
struct hlcache_handle *content)
|
2006-03-25 23:30:35 +03:00
|
|
|
{
|
2014-02-15 22:43:59 +04:00
|
|
|
struct history *history;
|
2007-04-18 06:52:26 +04:00
|
|
|
char *title;
|
|
|
|
|
2014-02-15 22:43:59 +04:00
|
|
|
assert(bw != NULL);
|
|
|
|
|
|
|
|
history = bw->history;
|
|
|
|
|
2014-10-30 02:15:51 +03:00
|
|
|
if (!history || !history->current || !history->current->bitmap) {
|
|
|
|
return NSERROR_INVALID;
|
|
|
|
}
|
2006-03-25 23:30:35 +03:00
|
|
|
|
2007-04-18 06:52:26 +04:00
|
|
|
assert(history->current->page.url);
|
|
|
|
assert(history->current->page.title);
|
|
|
|
|
2010-03-28 16:56:39 +04:00
|
|
|
title = strdup(content_get_title(content));
|
2014-10-30 02:15:51 +03:00
|
|
|
if (title == NULL) {
|
|
|
|
return NSERROR_NOMEM;
|
2007-04-18 06:52:26 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
free(history->current->page.title);
|
|
|
|
history->current->page.title = title;
|
2006-11-27 18:35:18 +03:00
|
|
|
|
2015-04-24 00:23:09 +03:00
|
|
|
guit->bitmap->render(history->current->bitmap, content);
|
2014-10-30 02:15:51 +03:00
|
|
|
|
|
|
|
return NSERROR_OK;
|
2006-03-25 23:30:35 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-10-31 01:19:42 +03:00
|
|
|
/* exported interface documented in desktop/browser_history.h */
|
2014-02-15 22:43:59 +04:00
|
|
|
void browser_window_history_destroy(struct browser_window *bw)
|
2006-03-25 23:30:35 +03:00
|
|
|
{
|
2014-02-15 22:43:59 +04:00
|
|
|
assert(bw != NULL);
|
2006-03-25 23:30:35 +03:00
|
|
|
|
2014-02-15 22:43:59 +04:00
|
|
|
if (bw->history == NULL)
|
|
|
|
return;
|
2006-03-25 23:30:35 +03:00
|
|
|
|
2014-02-15 22:43:59 +04:00
|
|
|
browser_window_history__free_entry(bw->history->start);
|
|
|
|
free(bw->history);
|
2006-03-25 23:30:35 +03:00
|
|
|
|
2014-02-15 22:43:59 +04:00
|
|
|
bw->history = NULL;
|
2006-03-25 23:30:35 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-10-31 01:19:42 +03:00
|
|
|
/* exported interface documented in desktop/browser_history.h */
|
|
|
|
nserror browser_window_history_back(struct browser_window *bw, bool new_window)
|
2006-03-25 23:30:35 +03:00
|
|
|
{
|
2014-02-15 22:43:59 +04:00
|
|
|
if (!bw || !bw->history || !bw->history->current ||
|
2014-10-31 01:19:42 +03:00
|
|
|
!bw->history->current->back) {
|
|
|
|
return NSERROR_BAD_PARAMETER;
|
|
|
|
}
|
|
|
|
return browser_window_history_go(bw, bw->history->current->back,
|
|
|
|
new_window);
|
2006-03-25 23:30:35 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-10-31 01:19:42 +03:00
|
|
|
/* exported interface documented in desktop/browser_history.h */
|
|
|
|
nserror browser_window_history_forward(struct browser_window *bw,
|
|
|
|
bool new_window)
|
2006-03-25 23:30:35 +03:00
|
|
|
{
|
2014-02-15 22:43:59 +04:00
|
|
|
if (!bw || !bw->history || !bw->history->current ||
|
2014-10-31 01:19:42 +03:00
|
|
|
!bw->history->current->forward_pref) {
|
|
|
|
return NSERROR_BAD_PARAMETER;
|
|
|
|
}
|
|
|
|
return browser_window_history_go(bw, bw->history->current->forward_pref,
|
|
|
|
new_window);
|
2006-03-25 23:30:35 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-10-31 01:19:42 +03:00
|
|
|
/* exported interface documented in desktop/browser_history.h */
|
2014-02-15 22:43:59 +04:00
|
|
|
bool browser_window_history_back_available(struct browser_window *bw)
|
2006-03-25 23:30:35 +03:00
|
|
|
{
|
2014-02-15 22:43:59 +04:00
|
|
|
return (bw && bw->history && bw->history->current &&
|
|
|
|
bw->history->current->back);
|
2006-03-25 23:30:35 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-10-31 01:19:42 +03:00
|
|
|
/* exported interface documented in desktop/browser_history.h */
|
2014-02-15 22:43:59 +04:00
|
|
|
bool browser_window_history_forward_available(struct browser_window *bw)
|
2006-03-25 23:30:35 +03:00
|
|
|
{
|
2014-02-15 22:43:59 +04:00
|
|
|
return (bw && bw->history && bw->history->current &&
|
|
|
|
bw->history->current->forward_pref);
|
2006-03-25 23:30:35 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-10-31 01:19:42 +03:00
|
|
|
/* exported interface documented in desktop/browser_history.h */
|
|
|
|
nserror browser_window_history_go(struct browser_window *bw,
|
2014-02-15 22:43:59 +04:00
|
|
|
struct history_entry *entry, bool new_window)
|
2006-03-25 23:30:35 +03:00
|
|
|
{
|
2014-02-15 22:43:59 +04:00
|
|
|
struct history *history;
|
2013-02-14 19:09:28 +04:00
|
|
|
nsurl *url;
|
2006-04-22 22:24:18 +04:00
|
|
|
struct history_entry *current;
|
2013-02-14 19:09:28 +04:00
|
|
|
nserror error;
|
2006-03-25 23:30:35 +03:00
|
|
|
|
2014-02-15 22:43:59 +04:00
|
|
|
assert(bw != NULL);
|
|
|
|
history = bw->history;
|
2007-04-07 21:58:42 +04:00
|
|
|
|
2006-09-02 19:52:41 +04:00
|
|
|
if (entry->page.frag_id) {
|
2013-07-12 02:38:32 +04:00
|
|
|
error = nsurl_refragment(entry->page.url,
|
|
|
|
entry->page.frag_id, &url);
|
|
|
|
|
|
|
|
if (error != NSERROR_OK) {
|
2014-10-31 01:19:42 +03:00
|
|
|
return error;
|
2006-03-25 23:30:35 +03:00
|
|
|
}
|
2013-02-14 19:09:28 +04:00
|
|
|
} else {
|
2013-07-12 02:38:32 +04:00
|
|
|
url = nsurl_ref(entry->page.url);
|
2006-03-25 23:30:35 +03:00
|
|
|
}
|
|
|
|
|
2006-04-22 22:24:18 +04:00
|
|
|
if (new_window) {
|
|
|
|
current = history->current;
|
|
|
|
history->current = entry;
|
2013-02-14 22:21:11 +04:00
|
|
|
|
2014-02-17 16:31:02 +04:00
|
|
|
error = browser_window_create(BW_CREATE_CLONE,
|
2014-02-15 22:43:59 +04:00
|
|
|
url, NULL, bw, NULL);
|
2006-04-22 22:24:18 +04:00
|
|
|
history->current = current;
|
|
|
|
} else {
|
2006-03-25 23:30:35 +03:00
|
|
|
history->current = entry;
|
2014-10-31 01:19:42 +03:00
|
|
|
error = browser_window_navigate(bw, url, NULL,
|
2014-02-11 02:40:04 +04:00
|
|
|
BW_NAVIGATE_NONE, NULL, NULL, NULL);
|
2006-03-25 23:30:35 +03:00
|
|
|
}
|
|
|
|
|
2013-02-14 19:09:28 +04:00
|
|
|
nsurl_unref(url);
|
2006-03-25 23:30:35 +03:00
|
|
|
|
2014-10-31 01:19:42 +03:00
|
|
|
return error;
|
|
|
|
}
|
2006-03-25 23:30:35 +03:00
|
|
|
|
|
|
|
|
2014-10-31 01:19:42 +03:00
|
|
|
/* exported interface documented in desktop/browser_history.h */
|
2014-02-15 22:43:59 +04:00
|
|
|
void browser_window_history_enumerate_forward(const struct browser_window *bw,
|
|
|
|
browser_window_history_enumerate_cb cb, void *user_data)
|
2006-03-25 23:30:35 +03:00
|
|
|
{
|
2014-02-15 22:43:59 +04:00
|
|
|
struct history_entry *e;
|
2006-03-25 23:30:35 +03:00
|
|
|
|
2014-02-15 22:43:59 +04:00
|
|
|
if (bw == NULL || bw->history == NULL || bw->history->current == NULL)
|
|
|
|
return;
|
2011-02-28 18:24:02 +03:00
|
|
|
|
2014-02-15 22:43:59 +04:00
|
|
|
e = bw->history->current->forward_pref;
|
|
|
|
for (; e != NULL; e = e->forward_pref) {
|
|
|
|
if (!cb(bw, e->x, e->y, e->x + WIDTH, e->y + HEIGHT,
|
|
|
|
e, user_data))
|
2011-02-28 18:24:30 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-31 01:19:42 +03:00
|
|
|
|
|
|
|
/* exported interface documented in desktop/browser_history.h */
|
2014-02-15 22:43:59 +04:00
|
|
|
void browser_window_history_enumerate_back(const struct browser_window *bw,
|
|
|
|
browser_window_history_enumerate_cb cb, void *user_data)
|
2011-02-28 18:24:30 +03:00
|
|
|
{
|
2014-02-15 22:43:59 +04:00
|
|
|
struct history_entry *e;
|
|
|
|
|
|
|
|
if (bw == NULL || bw->history == NULL || bw->history->current == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (e = bw->history->current->back; e != NULL; e = e->back) {
|
|
|
|
if (!cb(bw, e->x, e->y, e->x + WIDTH, e->y + HEIGHT,
|
|
|
|
e, user_data))
|
2011-02-28 18:24:30 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-31 01:19:42 +03:00
|
|
|
|
|
|
|
/* exported interface documented in desktop/browser_history.h */
|
2014-02-15 22:43:59 +04:00
|
|
|
void browser_window_history_enumerate(const struct browser_window *bw,
|
|
|
|
browser_window_history_enumerate_cb cb, void *user_data)
|
2011-02-28 18:24:02 +03:00
|
|
|
{
|
2014-02-15 22:43:59 +04:00
|
|
|
if (bw == NULL || bw->history == NULL)
|
|
|
|
return;
|
|
|
|
browser_window_history__enumerate_entry(bw,
|
|
|
|
bw->history->start, cb, user_data);
|
2011-02-28 18:24:02 +03:00
|
|
|
}
|
|
|
|
|
2014-10-31 01:19:42 +03:00
|
|
|
|
|
|
|
/* exported interface documented in desktop/browser_history.h */
|
2017-06-10 20:34:05 +03:00
|
|
|
nsurl *browser_window_history_entry_get_url(const struct history_entry *entry)
|
2011-02-28 18:24:02 +03:00
|
|
|
{
|
2017-06-10 20:34:05 +03:00
|
|
|
return nsurl_ref(entry->page.url);
|
2011-02-28 18:24:02 +03:00
|
|
|
}
|
|
|
|
|
2014-10-31 01:19:42 +03:00
|
|
|
|
|
|
|
/* exported interface documented in desktop/browser_history.h */
|
2014-02-15 22:43:59 +04:00
|
|
|
const char *browser_window_history_entry_get_fragment_id(
|
|
|
|
const struct history_entry *entry)
|
2011-02-28 18:24:02 +03:00
|
|
|
{
|
2013-07-12 02:38:32 +04:00
|
|
|
return (entry->page.frag_id) ? lwc_string_data(entry->page.frag_id) : 0;
|
2011-02-28 18:24:02 +03:00
|
|
|
}
|
|
|
|
|
2014-10-31 01:19:42 +03:00
|
|
|
|
|
|
|
/* exported interface documented in desktop/browser_history.h */
|
2014-02-15 22:43:59 +04:00
|
|
|
const char *browser_window_history_entry_get_title(
|
|
|
|
const struct history_entry *entry)
|
2011-02-28 18:24:02 +03:00
|
|
|
{
|
|
|
|
return entry->page.title;
|
2011-02-28 18:24:30 +03:00
|
|
|
}
|