2003-11-08 02:51:13 +03:00
|
|
|
/*
|
|
|
|
* This file is part of NetSurf, http://netsurf.sourceforge.net/
|
|
|
|
* Licensed under the GNU General Public License,
|
2004-05-05 02:23:44 +04:00
|
|
|
* http://www.opensource.org/licenses/gpl-license
|
2003-11-08 02:51:13 +03:00
|
|
|
* Copyright 2003 Phil Mellor <monkeyson@users.sourceforge.net>
|
2004-02-25 18:12:58 +03:00
|
|
|
* Copyright 2004 James Bursa <bursa@users.sourceforge.net>
|
2003-11-08 02:51:13 +03:00
|
|
|
* Copyright 2003 John M Bell <jmb202@ecs.soton.ac.uk>
|
2004-05-08 22:12:36 +04:00
|
|
|
* Copyright 2004 Richard Wilson <not_ginger_matt@users.sourceforge.net>
|
2004-07-19 02:21:32 +04:00
|
|
|
* Copyright 2004 Andrew Timmins <atimmins@blueyonder.co.uk>
|
2003-11-08 02:51:13 +03:00
|
|
|
*/
|
|
|
|
|
2003-12-12 04:33:38 +03:00
|
|
|
/** \file
|
|
|
|
* Browser window handling (implementation).
|
|
|
|
*/
|
|
|
|
|
2003-12-15 15:58:58 +03:00
|
|
|
#include <assert.h>
|
2004-06-03 01:27:07 +04:00
|
|
|
#include <math.h>
|
2003-12-28 19:17:31 +03:00
|
|
|
#include <stdbool.h>
|
2003-11-08 02:51:13 +03:00
|
|
|
#include <string.h>
|
2004-05-07 02:24:37 +04:00
|
|
|
#include "oslib/colourtrans.h"
|
2004-02-25 18:12:58 +03:00
|
|
|
#include "oslib/osspriteop.h"
|
2003-11-08 02:51:13 +03:00
|
|
|
#include "oslib/wimp.h"
|
|
|
|
#include "oslib/wimpspriteop.h"
|
2004-01-05 05:10:59 +03:00
|
|
|
#include "netsurf/utils/config.h"
|
2004-08-11 23:02:32 +04:00
|
|
|
#include "netsurf/css/css.h"
|
2004-10-18 01:16:00 +04:00
|
|
|
#include "netsurf/desktop/plotters.h"
|
2004-08-11 23:02:32 +04:00
|
|
|
#include "netsurf/render/box.h"
|
|
|
|
#include "netsurf/render/form.h"
|
2004-07-20 03:35:12 +04:00
|
|
|
#include "netsurf/riscos/buffer.h"
|
2003-11-08 02:51:13 +03:00
|
|
|
#include "netsurf/riscos/gui.h"
|
2004-02-25 18:12:58 +03:00
|
|
|
#include "netsurf/riscos/options.h"
|
2003-11-08 02:51:13 +03:00
|
|
|
#include "netsurf/riscos/theme.h"
|
2004-02-25 18:12:58 +03:00
|
|
|
#include "netsurf/riscos/thumbnail.h"
|
2004-05-05 02:23:44 +04:00
|
|
|
#include "netsurf/riscos/wimp.h"
|
2003-12-12 04:33:38 +03:00
|
|
|
#include "netsurf/utils/log.h"
|
2004-03-02 21:02:41 +03:00
|
|
|
#include "netsurf/utils/url.h"
|
2003-11-08 02:51:13 +03:00
|
|
|
#include "netsurf/utils/utils.h"
|
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
|
|
|
|
/** List of all browser windows. */
|
|
|
|
static struct gui_window *window_list = 0;
|
2004-08-07 03:45:21 +04:00
|
|
|
/** GUI window which is being redrawn. Valid only during redraw. */
|
2004-07-17 17:00:38 +04:00
|
|
|
struct gui_window *ro_gui_current_redraw_gui;
|
2004-08-07 03:45:21 +04:00
|
|
|
/** GUI window which the current zoom window refers to. */
|
|
|
|
struct gui_window *ro_gui_current_zoom_gui;
|
2004-07-17 17:00:38 +04:00
|
|
|
|
|
|
|
|
|
|
|
static void ro_gui_window_clone_options(struct browser_window *new_bw,
|
|
|
|
struct browser_window *old_bw);
|
|
|
|
|
2003-11-08 02:51:13 +03:00
|
|
|
|
2003-12-12 04:33:38 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Create and open a new browser window.
|
2004-05-05 02:23:44 +04:00
|
|
|
*
|
2004-08-07 03:45:21 +04:00
|
|
|
* \param bw browser_window structure to update
|
2004-05-25 14:42:28 +04:00
|
|
|
* \param clone the browser window to clone options from, or NULL for default
|
|
|
|
* \return gui_window, or 0 on error and error reported
|
2003-12-12 04:33:38 +03:00
|
|
|
*/
|
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
struct gui_window *gui_create_browser_window(struct browser_window *bw,
|
2004-05-25 14:42:28 +04:00
|
|
|
struct browser_window *clone)
|
2003-11-08 02:51:13 +03:00
|
|
|
{
|
2004-05-25 14:42:28 +04:00
|
|
|
int screen_width, screen_height, win_width, win_height, scroll_width;
|
|
|
|
static int window_count = 2;
|
|
|
|
wimp_window window;
|
|
|
|
wimp_window_state state;
|
|
|
|
os_error *error;
|
2004-06-27 18:41:14 +04:00
|
|
|
bool open_centred = true;
|
2004-07-17 17:00:38 +04:00
|
|
|
struct gui_window *g;
|
2003-11-08 02:51:13 +03:00
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
g = malloc(sizeof *g);
|
2004-05-25 14:42:28 +04:00
|
|
|
if (!g) {
|
|
|
|
warn_user("NoMemory", 0);
|
|
|
|
return 0;
|
|
|
|
}
|
2004-07-17 17:00:38 +04:00
|
|
|
g->bw = bw;
|
|
|
|
g->toolbar = 0;
|
|
|
|
g->reformat_pending = false;
|
|
|
|
g->old_width = 0;
|
|
|
|
g->old_height = 0;
|
2004-05-25 14:42:28 +04:00
|
|
|
strcpy(g->title, "NetSurf");
|
|
|
|
g->throbber = 0;
|
|
|
|
g->throbtime = 0;
|
|
|
|
|
2004-06-27 18:41:14 +04:00
|
|
|
/* Set the window position
|
|
|
|
*/
|
2004-06-28 23:35:04 +04:00
|
|
|
if (clone && clone->window && option_window_size_clone) {
|
2004-06-27 18:41:14 +04:00
|
|
|
state.w = clone->window->window;
|
|
|
|
error = xwimp_get_window_state(&state);
|
|
|
|
if (error) {
|
|
|
|
LOG(("xwimp_get_window_state: 0x%x: %s",
|
|
|
|
error->errnum, error->errmess));
|
|
|
|
warn_user("WimpError", error->errmess);
|
|
|
|
}
|
|
|
|
window.visible.x0 = state.visible.x0;
|
|
|
|
window.visible.x1 = state.visible.x1;
|
|
|
|
window.visible.y0 = state.visible.y0 - 48;
|
|
|
|
window.visible.y1 = state.visible.y1 - 48;
|
|
|
|
open_centred = false;
|
|
|
|
} else {
|
|
|
|
ro_gui_screen_size(&screen_width, &screen_height);
|
2004-06-29 23:08:19 +04:00
|
|
|
|
2004-06-27 18:41:14 +04:00
|
|
|
/* Check if we have a preferred position
|
|
|
|
*/
|
2004-07-17 17:00:38 +04:00
|
|
|
if ((option_window_screen_width != 0) &&
|
|
|
|
(option_window_screen_height != 0)) {
|
|
|
|
win_width = (option_window_width * screen_width) /
|
|
|
|
option_window_screen_width;
|
|
|
|
win_height = (option_window_height * screen_height) /
|
|
|
|
option_window_screen_height;
|
|
|
|
window.visible.x0 = (option_window_x * screen_width) /
|
|
|
|
option_window_screen_width;
|
|
|
|
window.visible.y0 = (option_window_y * screen_height) /
|
|
|
|
option_window_screen_height;
|
2004-06-27 18:41:14 +04:00
|
|
|
if (option_window_stagger) {
|
2004-07-17 17:00:38 +04:00
|
|
|
window.visible.y0 += 96 -
|
|
|
|
(48 * (window_count % 5));
|
2004-06-27 18:41:14 +04:00
|
|
|
}
|
|
|
|
open_centred = false;
|
2004-07-17 17:00:38 +04:00
|
|
|
if (win_width < 100)
|
|
|
|
win_width = 100;
|
|
|
|
if (win_height < 100)
|
|
|
|
win_height = 100;
|
2004-06-27 18:41:14 +04:00
|
|
|
} else {
|
2004-07-19 02:21:32 +04:00
|
|
|
|
2004-08-07 03:45:21 +04:00
|
|
|
/* Base how we define the window height/width
|
|
|
|
on the compile time options set */
|
2004-07-19 02:21:32 +04:00
|
|
|
#ifdef WITH_KIOSK_BROWSING
|
2004-08-07 03:45:21 +04:00
|
|
|
/* We're going fullscreen, forget the iconbar! */
|
2004-07-19 02:21:32 +04:00
|
|
|
win_width = screen_width;
|
|
|
|
win_height = screen_height;
|
|
|
|
#else
|
2004-06-27 18:41:14 +04:00
|
|
|
win_width = screen_width * 3 / 4;
|
|
|
|
if (1600 < win_width)
|
|
|
|
win_width = 1600;
|
|
|
|
win_height = win_width * 3 / 4;
|
2004-07-19 02:21:32 +04:00
|
|
|
#endif
|
2004-06-27 18:41:14 +04:00
|
|
|
|
|
|
|
window.visible.x0 = (screen_width - win_width) / 2;
|
2004-07-17 17:00:38 +04:00
|
|
|
window.visible.y0 = ((screen_height - win_height) / 2) +
|
|
|
|
96 - (48 * (window_count % 5));
|
2004-06-27 18:41:14 +04:00
|
|
|
}
|
|
|
|
window.visible.x1 = window.visible.x0 + win_width;
|
|
|
|
window.visible.y1 = window.visible.y0 + win_height;
|
|
|
|
}
|
2004-06-29 23:08:19 +04:00
|
|
|
|
2004-06-27 18:41:14 +04:00
|
|
|
/* Set the general window characteristics
|
|
|
|
*/
|
2004-05-25 14:42:28 +04:00
|
|
|
window.xscroll = 0;
|
|
|
|
window.yscroll = 0;
|
|
|
|
window.next = wimp_TOP;
|
2004-07-19 02:21:32 +04:00
|
|
|
|
2004-08-07 03:45:21 +04:00
|
|
|
/* Base how we define the window characteristics
|
|
|
|
on the compile time options set */
|
2004-07-19 02:21:32 +04:00
|
|
|
#ifdef WITH_KIOSK_BROWSING
|
|
|
|
window.flags = wimp_WINDOW_NEW_FORMAT |
|
|
|
|
wimp_WINDOW_VSCROLL |
|
|
|
|
wimp_WINDOW_HSCROLL |
|
|
|
|
wimp_WINDOW_IGNORE_XEXTENT |
|
|
|
|
wimp_WINDOW_IGNORE_YEXTENT |
|
|
|
|
wimp_WINDOW_SCROLL_REPEAT;
|
|
|
|
#else
|
|
|
|
window.flags = wimp_WINDOW_MOVEABLE |
|
2004-05-25 14:42:28 +04:00
|
|
|
wimp_WINDOW_NEW_FORMAT |
|
|
|
|
wimp_WINDOW_BACK_ICON |
|
|
|
|
wimp_WINDOW_CLOSE_ICON |
|
|
|
|
wimp_WINDOW_TITLE_ICON |
|
|
|
|
wimp_WINDOW_VSCROLL |
|
|
|
|
wimp_WINDOW_HSCROLL |
|
|
|
|
wimp_WINDOW_SIZE_ICON |
|
|
|
|
wimp_WINDOW_TOGGLE_ICON |
|
|
|
|
wimp_WINDOW_IGNORE_XEXTENT |
|
|
|
|
wimp_WINDOW_IGNORE_YEXTENT |
|
|
|
|
wimp_WINDOW_SCROLL_REPEAT;
|
2004-07-19 02:21:32 +04:00
|
|
|
#endif
|
|
|
|
|
2004-05-25 14:42:28 +04:00
|
|
|
window.title_fg = wimp_COLOUR_BLACK;
|
|
|
|
window.title_bg = wimp_COLOUR_LIGHT_GREY;
|
|
|
|
window.work_fg = wimp_COLOUR_LIGHT_GREY;
|
|
|
|
window.work_bg = wimp_COLOUR_TRANSPARENT;
|
|
|
|
window.scroll_outer = wimp_COLOUR_DARK_GREY;
|
|
|
|
window.scroll_inner = wimp_COLOUR_MID_LIGHT_GREY;
|
|
|
|
window.highlight_bg = wimp_COLOUR_CREAM;
|
|
|
|
window.extra_flags = 0;
|
|
|
|
window.extent.x0 = 0;
|
2004-06-27 18:41:14 +04:00
|
|
|
window.extent.y0 = window.visible.y1 - window.visible.y0;
|
|
|
|
window.extent.x1 = window.visible.x1 - window.visible.x0;
|
2004-05-25 14:42:28 +04:00
|
|
|
window.extent.y1 = 0;
|
|
|
|
window.title_flags = wimp_ICON_TEXT |
|
|
|
|
wimp_ICON_INDIRECTED |
|
|
|
|
wimp_ICON_HCENTRED;
|
|
|
|
window.work_flags = wimp_BUTTON_CLICK_DRAG <<
|
|
|
|
wimp_ICON_BUTTON_TYPE_SHIFT;
|
|
|
|
window.sprite_area = wimpspriteop_AREA;
|
|
|
|
window.xmin = 100;
|
2004-06-28 23:35:04 +04:00
|
|
|
window.ymin = 100;
|
2004-05-25 14:42:28 +04:00
|
|
|
window.title_data.indirected_text.text = g->title;
|
|
|
|
window.title_data.indirected_text.validation = (char *) -1;
|
|
|
|
window.title_data.indirected_text.size = 255;
|
|
|
|
window.icon_count = 0;
|
2004-08-31 01:03:48 +04:00
|
|
|
if (open_centred) {
|
|
|
|
scroll_width = ro_get_vscroll_width(g->window);
|
|
|
|
window.visible.x0 -= scroll_width;
|
|
|
|
}
|
2004-05-25 14:42:28 +04:00
|
|
|
|
|
|
|
error = xwimp_create_window(&window, &g->window);
|
|
|
|
if (error) {
|
|
|
|
LOG(("xwimp_create_window: 0x%x: %s",
|
|
|
|
error->errnum, error->errmess));
|
|
|
|
warn_user("WimpError", error->errmess);
|
|
|
|
free(g);
|
|
|
|
return 0;
|
|
|
|
}
|
2004-06-29 23:08:19 +04:00
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
g->prev = 0;
|
2004-05-05 02:23:44 +04:00
|
|
|
g->next = window_list;
|
2004-07-18 21:38:01 +04:00
|
|
|
if (window_list)
|
|
|
|
window_list->prev = g;
|
2004-05-05 02:23:44 +04:00
|
|
|
window_list = g;
|
2004-05-25 14:42:28 +04:00
|
|
|
window_count++;
|
2004-05-05 02:23:44 +04:00
|
|
|
|
2004-08-31 01:03:48 +04:00
|
|
|
/* Add in a toolbar
|
|
|
|
*/
|
|
|
|
g->toolbar = ro_gui_theme_create_toolbar(NULL, THEME_BROWSER_TOOLBAR);
|
|
|
|
ro_gui_theme_attach_toolbar(g->toolbar, g->window);
|
|
|
|
|
2004-05-05 02:23:44 +04:00
|
|
|
/* Set the window options
|
|
|
|
*/
|
2004-05-25 14:42:28 +04:00
|
|
|
bw->window = g;
|
2004-07-17 17:00:38 +04:00
|
|
|
ro_gui_window_clone_options(bw, clone);
|
2004-08-31 01:03:48 +04:00
|
|
|
ro_gui_prepare_navigate(g);
|
2003-12-12 04:33:38 +03:00
|
|
|
|
2004-05-23 16:22:05 +04:00
|
|
|
/* Open the window
|
|
|
|
*/
|
|
|
|
state.w = g->window;
|
2004-05-25 14:42:28 +04:00
|
|
|
error = xwimp_get_window_state(&state);
|
|
|
|
if (error) {
|
|
|
|
LOG(("xwimp_get_window_state: 0x%x: %s",
|
|
|
|
error->errnum, error->errmess));
|
|
|
|
warn_user("WimpError", error->errmess);
|
|
|
|
return g;
|
|
|
|
}
|
2004-06-29 23:08:19 +04:00
|
|
|
|
2004-06-27 18:41:14 +04:00
|
|
|
/* Open the window at the top of the stack
|
|
|
|
*/
|
2004-05-23 16:22:05 +04:00
|
|
|
state.next = wimp_TOP;
|
|
|
|
ro_gui_window_open(g, (wimp_open*)&state);
|
2004-08-31 01:03:48 +04:00
|
|
|
|
2003-12-12 04:33:38 +03:00
|
|
|
|
2004-05-05 02:23:44 +04:00
|
|
|
/* Set the caret position to the URL bar
|
|
|
|
*/
|
2004-08-31 01:03:48 +04:00
|
|
|
if (g->toolbar && g->toolbar->display_url)
|
2004-06-10 17:05:43 +04:00
|
|
|
error = xwimp_set_caret_position(
|
2004-07-17 17:00:38 +04:00
|
|
|
g->toolbar->toolbar_handle,
|
2004-06-10 17:05:43 +04:00
|
|
|
ICON_TOOLBAR_URL, -1, -1, -1, 0);
|
|
|
|
else
|
|
|
|
error = xwimp_set_caret_position(g->window,
|
|
|
|
wimp_ICON_WINDOW, -100, -100, 32, -1);
|
|
|
|
|
2004-05-25 14:42:28 +04:00
|
|
|
if (error) {
|
|
|
|
LOG(("xwimp_set_caret_position: 0x%x: %s",
|
|
|
|
error->errnum, error->errmess));
|
|
|
|
warn_user("WimpError", error->errmess);
|
|
|
|
return g;
|
|
|
|
}
|
|
|
|
|
|
|
|
return g;
|
2003-11-08 02:51:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
/**
|
|
|
|
* Close a browser window and free any related resources.
|
|
|
|
*
|
|
|
|
* \param g gui_window to destroy
|
|
|
|
*/
|
|
|
|
|
|
|
|
void gui_window_destroy(struct gui_window *g)
|
|
|
|
{
|
|
|
|
os_error *error;
|
|
|
|
|
|
|
|
assert(g);
|
|
|
|
|
|
|
|
/* remove from list */
|
|
|
|
if (g->prev)
|
|
|
|
g->prev->next = g->next;
|
|
|
|
else
|
|
|
|
window_list = g->next;
|
|
|
|
if (g->next)
|
|
|
|
g->next->prev = g->prev;
|
|
|
|
|
2004-08-31 01:03:48 +04:00
|
|
|
ro_gui_theme_destroy_toolbar(g->toolbar);
|
2004-07-17 17:00:38 +04:00
|
|
|
|
|
|
|
/* delete window */
|
|
|
|
error = xwimp_delete_window(g->window);
|
|
|
|
if (error) {
|
|
|
|
LOG(("xwimp_delete_window: 0x%x: %s",
|
|
|
|
error->errnum, error->errmess));
|
|
|
|
warn_user("WimpError", error->errmess);
|
|
|
|
}
|
|
|
|
|
|
|
|
free(g);
|
2003-11-08 02:51:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-07-30 20:16:07 +04:00
|
|
|
/**
|
|
|
|
* Destroy all browser windows.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void ro_gui_window_quit(void)
|
|
|
|
{
|
|
|
|
while (window_list)
|
|
|
|
browser_window_destroy(window_list->bw);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
/**
|
|
|
|
* Set the title of a browser window.
|
|
|
|
*
|
2004-08-07 03:45:21 +04:00
|
|
|
* \param g gui_window to update
|
2004-07-17 17:00:38 +04:00
|
|
|
* \param title new window title, copied
|
|
|
|
*/
|
|
|
|
|
|
|
|
void gui_window_set_title(struct gui_window *g, const char *title)
|
2003-11-08 02:51:13 +03:00
|
|
|
{
|
2004-07-17 17:00:38 +04:00
|
|
|
os_error *error;
|
|
|
|
|
|
|
|
assert(g);
|
|
|
|
assert(title);
|
|
|
|
|
|
|
|
strncpy(g->title, title, sizeof g->title);
|
|
|
|
error = xwimp_force_redraw_title(g->window);
|
|
|
|
if (error) {
|
|
|
|
LOG(("xwimp_force_redraw_title: 0x%x: %s",
|
|
|
|
error->errnum, error->errmess));
|
|
|
|
warn_user("WimpError", error->errmess);
|
|
|
|
}
|
2003-11-08 02:51:13 +03:00
|
|
|
}
|
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Force a redraw of part of the contents of a browser window.
|
|
|
|
*
|
|
|
|
* \param g gui_window to redraw
|
|
|
|
* \param x0 rectangle to redraw
|
|
|
|
* \param y0 rectangle to redraw
|
|
|
|
* \param x1 rectangle to redraw
|
|
|
|
* \param y1 rectangle to redraw
|
|
|
|
*/
|
|
|
|
|
|
|
|
void gui_window_redraw(struct gui_window *g, int x0, int y0, int x1, int y1)
|
2003-11-08 02:51:13 +03:00
|
|
|
{
|
2004-07-17 17:00:38 +04:00
|
|
|
os_error *error;
|
2003-11-08 02:51:13 +03:00
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
assert(g);
|
|
|
|
|
|
|
|
error = xwimp_force_redraw(g->window, x0 * 2, -y1 * 2, x1 * 2, -y0 * 2);
|
|
|
|
if (error) {
|
|
|
|
LOG(("xwimp_force_redraw: 0x%x: %s",
|
|
|
|
error->errnum, error->errmess));
|
|
|
|
warn_user("WimpError", error->errmess);
|
|
|
|
}
|
2003-11-08 02:51:13 +03:00
|
|
|
}
|
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Force a redraw of the entire contents of a browser window.
|
|
|
|
*
|
|
|
|
* \param g gui_window to redraw
|
|
|
|
*/
|
|
|
|
|
|
|
|
void gui_window_redraw_window(struct gui_window *g)
|
2003-11-08 02:51:13 +03:00
|
|
|
{
|
2004-07-17 17:00:38 +04:00
|
|
|
wimp_window_info info;
|
|
|
|
os_error *error;
|
|
|
|
|
|
|
|
assert(g);
|
|
|
|
|
|
|
|
info.w = g->window;
|
|
|
|
error = xwimp_get_window_info_header_only(&info);
|
|
|
|
if (error) {
|
|
|
|
LOG(("xwimp_get_window_info_header_only: 0x%x: %s",
|
|
|
|
error->errnum, error->errmess));
|
|
|
|
warn_user("WimpError", error->errmess);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
error = xwimp_force_redraw(g->window, info.extent.x0, info.extent.y0,
|
|
|
|
info.extent.x1, info.extent.y1);
|
|
|
|
if (error) {
|
|
|
|
LOG(("xwimp_force_redraw: 0x%x: %s",
|
|
|
|
error->errnum, error->errmess));
|
|
|
|
warn_user("WimpError", error->errmess);
|
|
|
|
}
|
2003-11-08 02:51:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
/**
|
|
|
|
* Handle a Redraw_Window_Request for a browser window.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void ro_gui_window_redraw(struct gui_window *g, wimp_draw *redraw)
|
|
|
|
{
|
2004-05-07 02:24:37 +04:00
|
|
|
osbool more;
|
2004-05-10 01:05:24 +04:00
|
|
|
bool clear_background = false;
|
2004-07-17 17:00:38 +04:00
|
|
|
struct content *c = g->bw->current_content;
|
2004-10-18 01:16:00 +04:00
|
|
|
int clip_x0, clip_y0, clip_x1, clip_y1;
|
2004-07-17 17:00:38 +04:00
|
|
|
os_error *error;
|
2004-07-21 18:19:21 +04:00
|
|
|
|
2004-10-18 01:16:00 +04:00
|
|
|
plot = ro_plotters;
|
|
|
|
ro_plot_set_scale(g->option.scale);
|
|
|
|
|
2004-05-10 01:05:24 +04:00
|
|
|
/* Set the current redraw gui_window to get options from
|
|
|
|
*/
|
|
|
|
ro_gui_current_redraw_gui = g;
|
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
/* We should clear the background, except for HTML.
|
2004-05-10 01:05:24 +04:00
|
|
|
*/
|
2004-07-17 17:00:38 +04:00
|
|
|
if (!c || c->type != CONTENT_HTML)
|
|
|
|
clear_background = true;
|
2004-05-07 04:06:26 +04:00
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
error = xwimp_redraw_window(redraw, &more);
|
|
|
|
if (error) {
|
|
|
|
LOG(("xwimp_redraw_window: 0x%x: %s",
|
|
|
|
error->errnum, error->errmess));
|
|
|
|
warn_user("WimpError", error->errmess);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
while (more) {
|
2004-07-21 00:02:59 +04:00
|
|
|
if (ro_gui_current_redraw_gui->option.buffer_everything) {
|
2004-07-21 02:20:58 +04:00
|
|
|
ro_gui_buffer_open(redraw);
|
2004-07-21 00:02:59 +04:00
|
|
|
}
|
2004-07-17 17:00:38 +04:00
|
|
|
if (clear_background) {
|
|
|
|
error = xcolourtrans_set_gcol(os_COLOUR_WHITE,
|
|
|
|
colourtrans_SET_BG,
|
|
|
|
os_ACTION_OVERWRITE, 0, 0);
|
|
|
|
if (error) {
|
|
|
|
LOG(("xcolourtrans_set_gcol: 0x%x: %s",
|
|
|
|
error->errnum, error->errmess));
|
|
|
|
warn_user("MiscError", error->errmess);
|
|
|
|
}
|
|
|
|
os_clg();
|
2004-05-07 02:24:37 +04:00
|
|
|
}
|
2004-05-07 04:06:26 +04:00
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
if (c) {
|
2004-10-18 01:16:00 +04:00
|
|
|
ro_plot_origin_x = redraw->box.x0 - redraw->xscroll;
|
|
|
|
ro_plot_origin_y = redraw->box.y1 - redraw->yscroll;
|
|
|
|
clip_x0 = (redraw->clip.x0 - ro_plot_origin_x) / 2;
|
|
|
|
clip_y0 = (ro_plot_origin_y - redraw->clip.y1) / 2;
|
|
|
|
clip_x1 = (redraw->clip.x1 - ro_plot_origin_x) / 2;
|
|
|
|
clip_y1 = (ro_plot_origin_y - redraw->clip.y0) / 2;
|
|
|
|
content_redraw(c, 0, 0,
|
2004-10-20 01:17:16 +04:00
|
|
|
c->width, c->height,
|
2004-10-18 01:16:00 +04:00
|
|
|
clip_x0, clip_y0, clip_x1, clip_y1,
|
2004-08-15 23:06:24 +04:00
|
|
|
g->option.scale,
|
|
|
|
0xFFFFFF);
|
2004-07-17 17:00:38 +04:00
|
|
|
}
|
2004-07-21 00:02:59 +04:00
|
|
|
if (ro_gui_current_redraw_gui->option.buffer_everything) {
|
2004-07-21 02:20:58 +04:00
|
|
|
ro_gui_buffer_close();
|
2004-07-21 00:02:59 +04:00
|
|
|
}
|
2004-07-17 17:00:38 +04:00
|
|
|
error = xwimp_get_rectangle(redraw, &more);
|
2004-10-18 01:16:00 +04:00
|
|
|
/* RISC OS 3.7 returns an error here if enough buffer was
|
|
|
|
claimed to cause a new dynamic area to be created. It
|
|
|
|
doesn't actually stop anything working, so we mask it out
|
|
|
|
for now until a better fix is found. This appears to be a
|
|
|
|
bug in RISC OS. */
|
|
|
|
if (error && !(ro_gui_current_redraw_gui->
|
|
|
|
option.buffer_everything &&
|
|
|
|
error->errnum == error_WIMP_GET_RECT)) {
|
|
|
|
LOG(("xwimp_get_rectangle: 0x%x: %s",
|
|
|
|
error->errnum, error->errmess));
|
|
|
|
warn_user("WimpError", error->errmess);
|
2004-07-21 00:02:59 +04:00
|
|
|
ro_gui_current_redraw_gui = NULL;
|
2004-07-17 17:00:38 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2004-05-10 01:05:24 +04:00
|
|
|
|
|
|
|
/* Reset the current redraw gui_window to prevent thumbnails from
|
|
|
|
retaining options
|
|
|
|
*/
|
|
|
|
ro_gui_current_redraw_gui = NULL;
|
2003-11-08 02:51:13 +03:00
|
|
|
}
|
|
|
|
|
2004-03-21 16:55:51 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Redraw an area of a window.
|
|
|
|
*
|
|
|
|
* \param g gui_window
|
2004-04-25 03:42:32 +04:00
|
|
|
* \param data content_msg_data union with filled in redraw data
|
2004-03-21 16:55:51 +03:00
|
|
|
*/
|
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
void gui_window_update_box(struct gui_window *g,
|
|
|
|
const union content_msg_data *data)
|
2004-03-21 16:55:51 +03:00
|
|
|
{
|
2004-07-17 17:00:38 +04:00
|
|
|
struct content *c = g->bw->current_content;
|
2004-03-21 16:55:51 +03:00
|
|
|
osbool more;
|
2004-05-10 01:05:24 +04:00
|
|
|
bool clear_background = false;
|
2004-08-05 23:27:31 +04:00
|
|
|
bool use_buffer = g->option.buffer_everything;
|
2004-03-21 16:55:51 +03:00
|
|
|
wimp_draw update;
|
2004-10-18 01:16:00 +04:00
|
|
|
int clip_x0, clip_y0, clip_x1, clip_y1;
|
2004-07-17 17:00:38 +04:00
|
|
|
os_error *error;
|
2004-05-25 14:42:28 +04:00
|
|
|
|
2004-03-21 16:55:51 +03:00
|
|
|
update.w = g->window;
|
2004-07-17 17:00:38 +04:00
|
|
|
update.box.x0 = floorf(data->redraw.x * 2 * g->option.scale);
|
2004-06-03 01:27:07 +04:00
|
|
|
update.box.y0 = -ceilf((data->redraw.y + data->redraw.height) * 2 *
|
2004-07-17 17:00:38 +04:00
|
|
|
g->option.scale);
|
2004-06-03 01:27:07 +04:00
|
|
|
update.box.x1 = ceilf((data->redraw.x + data->redraw.width) * 2 *
|
2004-07-17 17:00:38 +04:00
|
|
|
g->option.scale) + 1;
|
|
|
|
update.box.y1 = -floorf(data->redraw.y * 2 * g->option.scale) + 1;
|
2004-05-27 01:13:07 +04:00
|
|
|
|
2004-03-21 16:55:51 +03:00
|
|
|
error = xwimp_update_window(&update, &more);
|
|
|
|
if (error) {
|
|
|
|
LOG(("xwimp_update_window: 0x%x: %s",
|
|
|
|
error->errnum, error->errmess));
|
2004-07-17 17:00:38 +04:00
|
|
|
warn_user("WimpError", error->errmess);
|
2004-03-21 16:55:51 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2004-05-10 01:05:24 +04:00
|
|
|
/* Set the current redraw gui_window to get options from
|
|
|
|
*/
|
|
|
|
ro_gui_current_redraw_gui = g;
|
2004-10-18 01:16:00 +04:00
|
|
|
/* if (data->redraw.full_redraw) */
|
|
|
|
use_buffer = use_buffer || g->option.buffer_animations;
|
|
|
|
|
|
|
|
plot = ro_plotters;
|
|
|
|
ro_plot_origin_x = update.box.x0 - update.xscroll;
|
|
|
|
ro_plot_origin_y = update.box.y1 - update.yscroll;
|
|
|
|
ro_plot_set_scale(g->option.scale);
|
2004-05-10 01:05:24 +04:00
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
/* We should clear the background, except for HTML.
|
2004-05-09 20:12:24 +04:00
|
|
|
*/
|
2004-07-17 17:00:38 +04:00
|
|
|
if (c->type != CONTENT_HTML)
|
|
|
|
clear_background = true;
|
2004-05-09 20:12:24 +04:00
|
|
|
|
2004-03-21 16:55:51 +03:00
|
|
|
while (more) {
|
2004-10-18 01:16:00 +04:00
|
|
|
clip_x0 = (update.clip.x0 - ro_plot_origin_x) / 2;
|
|
|
|
clip_y0 = (ro_plot_origin_y - update.clip.y1) / 2;
|
|
|
|
clip_x1 = (update.clip.x1 - ro_plot_origin_x) / 2;
|
|
|
|
clip_y1 = (ro_plot_origin_y - update.clip.y0) / 2;
|
2004-08-06 00:32:00 +04:00
|
|
|
|
2004-10-18 01:16:00 +04:00
|
|
|
if (use_buffer)
|
|
|
|
ro_gui_buffer_open(&update);
|
2004-04-25 03:42:32 +04:00
|
|
|
if (data->redraw.full_redraw) {
|
2004-05-09 20:12:24 +04:00
|
|
|
if (clear_background) {
|
2004-07-17 17:00:38 +04:00
|
|
|
error = xcolourtrans_set_gcol(os_COLOUR_WHITE,
|
|
|
|
colourtrans_SET_BG,
|
|
|
|
os_ACTION_OVERWRITE, 0, 0);
|
|
|
|
if (error) {
|
|
|
|
LOG(("xcolourtrans_set_gcol: 0x%x: %s",
|
|
|
|
error->errnum,
|
|
|
|
error->errmess));
|
|
|
|
warn_user("MiscError", error->errmess);
|
|
|
|
}
|
2004-05-09 20:12:24 +04:00
|
|
|
os_clg();
|
|
|
|
}
|
2004-07-17 17:00:38 +04:00
|
|
|
|
2004-10-18 01:16:00 +04:00
|
|
|
content_redraw(c, 0, 0,
|
2004-10-20 01:17:16 +04:00
|
|
|
c->width, c->height,
|
2004-10-18 01:16:00 +04:00
|
|
|
clip_x0, clip_y0, clip_x1, clip_y1,
|
2004-08-15 23:06:24 +04:00
|
|
|
g->option.scale,
|
|
|
|
0xFFFFFF);
|
2004-07-17 17:00:38 +04:00
|
|
|
} else {
|
2004-04-25 03:42:32 +04:00
|
|
|
assert(data->redraw.object);
|
|
|
|
content_redraw(data->redraw.object,
|
2004-10-18 01:16:00 +04:00
|
|
|
floorf(data->redraw.object_x *
|
2004-07-17 17:00:38 +04:00
|
|
|
g->option.scale),
|
2004-10-18 01:16:00 +04:00
|
|
|
ceilf(data->redraw.object_y *
|
2004-07-17 17:00:38 +04:00
|
|
|
g->option.scale),
|
2004-10-18 01:16:00 +04:00
|
|
|
data->redraw.object_width *
|
2004-07-17 17:00:38 +04:00
|
|
|
g->option.scale,
|
2004-10-18 01:16:00 +04:00
|
|
|
data->redraw.object_height *
|
2004-07-17 17:00:38 +04:00
|
|
|
g->option.scale,
|
2004-10-18 01:16:00 +04:00
|
|
|
clip_x0, clip_y0, clip_x1, clip_y1,
|
2004-08-15 23:06:24 +04:00
|
|
|
g->option.scale,
|
|
|
|
0xFFFFFF);
|
2004-04-25 03:42:32 +04:00
|
|
|
}
|
2004-03-21 16:55:51 +03:00
|
|
|
|
2004-10-18 01:16:00 +04:00
|
|
|
if (use_buffer)
|
|
|
|
ro_gui_buffer_close();
|
2004-03-21 16:55:51 +03:00
|
|
|
error = xwimp_get_rectangle(&update, &more);
|
2004-10-18 01:16:00 +04:00
|
|
|
/* RISC OS 3.7 returns an error here if enough buffer was
|
|
|
|
claimed to cause a new dynamic area to be created. It
|
|
|
|
doesn't actually stop anything working, so we mask it out
|
|
|
|
for now until a better fix is found. This appears to be a
|
|
|
|
bug in RISC OS. */
|
|
|
|
if (error && !(use_buffer &&
|
|
|
|
error->errnum == error_WIMP_GET_RECT)) {
|
|
|
|
LOG(("xwimp_get_rectangle: 0x%x: %s",
|
|
|
|
error->errnum, error->errmess));
|
|
|
|
warn_user("WimpError", error->errmess);
|
2004-07-21 00:02:59 +04:00
|
|
|
ro_gui_current_redraw_gui = NULL;
|
2004-07-17 17:00:38 +04:00
|
|
|
return;
|
2004-03-21 16:55:51 +03:00
|
|
|
}
|
|
|
|
}
|
2004-05-10 01:05:24 +04:00
|
|
|
|
|
|
|
/* Reset the current redraw gui_window to prevent thumbnails from
|
|
|
|
retaining options
|
|
|
|
*/
|
|
|
|
ro_gui_current_redraw_gui = NULL;
|
2004-03-21 16:55:51 +03:00
|
|
|
}
|
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the scroll position of a browser window.
|
|
|
|
*
|
|
|
|
* \param g gui_window to scroll
|
|
|
|
* \param sx point to place at top-left of window
|
|
|
|
* \param sy point to place at top-left of window
|
|
|
|
*/
|
|
|
|
|
|
|
|
void gui_window_set_scroll(struct gui_window *g, int sx, int sy)
|
2003-11-08 02:51:13 +03:00
|
|
|
{
|
2004-07-17 17:00:38 +04:00
|
|
|
wimp_window_state state;
|
|
|
|
os_error *error;
|
|
|
|
|
|
|
|
assert(g);
|
|
|
|
|
|
|
|
state.w = g->window;
|
|
|
|
error = xwimp_get_window_state(&state);
|
|
|
|
if (error) {
|
|
|
|
LOG(("xwimp_get_window_state: 0x%x: %s",
|
|
|
|
error->errnum, error->errmess));
|
|
|
|
warn_user("WimpError", error->errmess);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
state.xscroll = sx * 2;
|
|
|
|
state.yscroll = -sy * 2;
|
|
|
|
if (g->toolbar)
|
|
|
|
state.yscroll += g->toolbar->height;
|
|
|
|
ro_gui_window_open(g, (wimp_open *) &state);
|
2003-11-08 02:51:13 +03:00
|
|
|
}
|
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Find the current width of a browser window.
|
|
|
|
*
|
|
|
|
* \param g gui_window to measure
|
|
|
|
* \return width of window
|
|
|
|
*/
|
|
|
|
|
|
|
|
int gui_window_get_width(struct gui_window *g)
|
|
|
|
{
|
|
|
|
wimp_window_state state;
|
|
|
|
os_error *error;
|
|
|
|
|
|
|
|
state.w = g->window;
|
|
|
|
error = xwimp_get_window_state(&state);
|
|
|
|
if (error) {
|
|
|
|
LOG(("xwimp_get_window_state: 0x%x: %s",
|
|
|
|
error->errnum, error->errmess));
|
|
|
|
warn_user("WimpError", error->errmess);
|
|
|
|
return 800;
|
|
|
|
}
|
2004-08-04 02:43:38 +04:00
|
|
|
return (state.visible.x1 - state.visible.x0) / 2 / g->option.scale;
|
2003-11-08 02:51:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
/**
|
|
|
|
* Set the extent of the inside of a browser window.
|
|
|
|
*
|
2004-08-07 03:45:21 +04:00
|
|
|
* \param g gui_window to resize
|
2004-07-17 17:00:38 +04:00
|
|
|
* \param width new extent
|
|
|
|
* \param height new extent
|
|
|
|
*/
|
|
|
|
|
|
|
|
void gui_window_set_extent(struct gui_window *g, int width, int height)
|
|
|
|
{
|
2003-12-12 04:33:38 +03:00
|
|
|
os_box extent = { 0, 0, 0, 0 };
|
|
|
|
wimp_window_state state;
|
|
|
|
int toolbar_height = 0;
|
2004-07-17 17:00:38 +04:00
|
|
|
os_error *error;
|
2003-12-12 04:33:38 +03:00
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
width *= 2 * g->option.scale;
|
|
|
|
height *= 2 * g->option.scale;
|
2003-12-12 04:33:38 +03:00
|
|
|
|
|
|
|
state.w = g->window;
|
2004-07-17 17:00:38 +04:00
|
|
|
error = xwimp_get_window_state(&state);
|
|
|
|
if (error) {
|
|
|
|
LOG(("xwimp_get_window_state: 0x%x: %s",
|
|
|
|
error->errnum, error->errmess));
|
|
|
|
warn_user("WimpError", error->errmess);
|
|
|
|
return;
|
|
|
|
}
|
2003-12-12 04:33:38 +03:00
|
|
|
|
|
|
|
/* account for toolbar height, if present */
|
2004-07-17 17:00:38 +04:00
|
|
|
if (g->toolbar)
|
|
|
|
toolbar_height = g->toolbar->height;
|
2003-12-12 04:33:38 +03:00
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
if (width < state.visible.x1 - state.visible.x0)
|
2003-12-12 04:33:38 +03:00
|
|
|
width = state.visible.x1 - state.visible.x0;
|
2004-07-17 17:00:38 +04:00
|
|
|
if (height < state.visible.y1 - state.visible.y0 - toolbar_height)
|
2003-12-12 04:33:38 +03:00
|
|
|
height = state.visible.y1 - state.visible.y0 - toolbar_height;
|
|
|
|
|
|
|
|
extent.y0 = -height;
|
|
|
|
extent.x1 = width;
|
|
|
|
extent.y1 = toolbar_height;
|
2004-07-17 17:00:38 +04:00
|
|
|
error = xwimp_set_extent(g->window, &extent);
|
|
|
|
if (error) {
|
|
|
|
LOG(("xwimp_set_extent: 0x%x: %s",
|
|
|
|
error->errnum, error->errmess));
|
|
|
|
warn_user("WimpError", error->errmess);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
error = xwimp_open_window((wimp_open *) &state);
|
|
|
|
if (error) {
|
|
|
|
LOG(("xwimp_open_window: 0x%x: %s",
|
|
|
|
error->errnum, error->errmess));
|
|
|
|
warn_user("WimpError", error->errmess);
|
|
|
|
}
|
2003-11-08 02:51:13 +03:00
|
|
|
}
|
|
|
|
|
2003-12-12 04:33:38 +03:00
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
/**
|
|
|
|
* Set the status bar of a browser window.
|
|
|
|
*
|
2004-08-07 03:45:21 +04:00
|
|
|
* \param g gui_window to update
|
2004-07-17 17:00:38 +04:00
|
|
|
* \param text new status text
|
|
|
|
*/
|
|
|
|
|
|
|
|
void gui_window_set_status(struct gui_window *g, const char *text)
|
|
|
|
{
|
2004-08-31 01:03:48 +04:00
|
|
|
if ((!g->toolbar) || (!g->toolbar->status_handle))
|
2004-07-17 17:00:38 +04:00
|
|
|
return;
|
|
|
|
ro_gui_set_icon_string(g->toolbar->status_handle,
|
|
|
|
ICON_STATUS_TEXT, text);
|
2003-11-08 02:51:13 +03:00
|
|
|
}
|
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
|
2003-12-26 03:17:55 +03:00
|
|
|
/**
|
|
|
|
* Set the contents of a window's address bar.
|
2004-07-17 17:00:38 +04:00
|
|
|
*
|
2004-08-07 03:45:21 +04:00
|
|
|
* \param g gui_window to update
|
2004-07-17 17:00:38 +04:00
|
|
|
* \param url new url for address bar
|
2003-12-26 03:17:55 +03:00
|
|
|
*/
|
2003-11-08 02:51:13 +03:00
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
void gui_window_set_url(struct gui_window *g, const char *url)
|
|
|
|
{
|
|
|
|
wimp_caret caret;
|
|
|
|
os_error *error;
|
2004-08-31 01:03:48 +04:00
|
|
|
char *toolbar_url;
|
2004-07-17 17:00:38 +04:00
|
|
|
|
|
|
|
if (!g->toolbar)
|
|
|
|
return;
|
2004-05-05 02:23:44 +04:00
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
ro_gui_set_icon_string(g->toolbar->toolbar_handle,
|
|
|
|
ICON_TOOLBAR_URL, url);
|
|
|
|
|
|
|
|
/* if the caret is in the address bar, move it to the end */
|
|
|
|
error = xwimp_get_caret_position(&caret);
|
|
|
|
if (error) {
|
|
|
|
LOG(("xwimp_get_caret_position: 0x%x: %s",
|
|
|
|
error->errnum, error->errmess));
|
|
|
|
warn_user("WimpError", error->errmess);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(caret.w == g->toolbar->toolbar_handle &&
|
|
|
|
caret.i == ICON_TOOLBAR_URL))
|
|
|
|
return;
|
|
|
|
|
2004-08-31 01:03:48 +04:00
|
|
|
toolbar_url = ro_gui_get_icon_string(g->toolbar->toolbar_handle,
|
|
|
|
ICON_TOOLBAR_URL);
|
2004-07-17 17:00:38 +04:00
|
|
|
error = xwimp_set_caret_position(g->toolbar->toolbar_handle,
|
2004-08-31 01:03:48 +04:00
|
|
|
ICON_TOOLBAR_URL, 0, 0, -1, (int)strlen(toolbar_url));
|
2004-07-17 17:00:38 +04:00
|
|
|
if (error) {
|
|
|
|
LOG(("xwimp_set_caret_position: 0x%x: %s",
|
|
|
|
error->errnum, error->errmess));
|
|
|
|
warn_user("WimpError", error->errmess);
|
2004-05-05 02:23:44 +04:00
|
|
|
}
|
2003-11-08 02:51:13 +03:00
|
|
|
}
|
|
|
|
|
2004-10-01 04:06:49 +04:00
|
|
|
/**
|
|
|
|
* Get the contents of a window's address bar.
|
|
|
|
*
|
|
|
|
* \param g gui_window to update
|
|
|
|
* \return The url in the address bar or NULL
|
|
|
|
*/
|
|
|
|
char *gui_window_get_url(struct gui_window *g)
|
|
|
|
{
|
|
|
|
if (!g->toolbar)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return ro_gui_get_icon_string(g->toolbar->toolbar_handle,
|
|
|
|
ICON_TOOLBAR_URL);
|
|
|
|
}
|
2003-11-08 02:51:13 +03:00
|
|
|
|
2004-08-31 01:03:48 +04:00
|
|
|
/**
|
|
|
|
* Forces all windows to be set to the current theme
|
|
|
|
*
|
|
|
|
* /param g the gui window to update
|
|
|
|
*/
|
|
|
|
void ro_gui_window_update_theme(void) {
|
|
|
|
int height;
|
|
|
|
struct gui_window *g;
|
|
|
|
for (g = window_list; g; g = g->next) {
|
|
|
|
if (g->toolbar) {
|
|
|
|
height = g->toolbar->height;
|
|
|
|
if (!ro_gui_theme_update_toolbar(NULL, g->toolbar)) {
|
|
|
|
ro_gui_theme_destroy_toolbar(g->toolbar);
|
|
|
|
g->toolbar = NULL;
|
|
|
|
if (height != 0)
|
|
|
|
ro_gui_window_update_dimensions(g, height);
|
|
|
|
} else {
|
|
|
|
if (height != g->toolbar->height)
|
|
|
|
ro_gui_window_update_dimensions(g, height -
|
|
|
|
g->toolbar->height);
|
|
|
|
}
|
|
|
|
ro_gui_prepare_navigate(g);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (hotlist_toolbar) {
|
|
|
|
if (!ro_gui_theme_update_toolbar(NULL, hotlist_toolbar)) {
|
|
|
|
ro_gui_theme_destroy_toolbar(hotlist_toolbar);
|
|
|
|
hotlist_toolbar = NULL;
|
|
|
|
}
|
2004-08-31 01:57:47 +04:00
|
|
|
ro_gui_theme_attach_toolbar(hotlist_toolbar, hotlist_window);
|
2004-08-31 01:03:48 +04:00
|
|
|
xwimp_force_redraw(hotlist_window, 0, -16384, 16384, 16384);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Forces the windows extent to be updated
|
|
|
|
*
|
|
|
|
* /param g the gui window to update
|
|
|
|
* /param yscroll an amount to scroll the vertical scroll bar by
|
|
|
|
*/
|
|
|
|
void ro_gui_window_update_dimensions(struct gui_window *g, int yscroll) {
|
|
|
|
os_error *error;
|
|
|
|
wimp_window_state state;
|
|
|
|
if (!g) return;
|
|
|
|
state.w = g->window;
|
|
|
|
error = xwimp_get_window_state(&state);
|
|
|
|
if (error) {
|
|
|
|
LOG(("xwimp_get_window_state: 0x%x: %s",
|
|
|
|
error->errnum, error->errmess));
|
|
|
|
warn_user("WimpError", error->errmess);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
state.yscroll -= yscroll;
|
2004-10-01 04:06:49 +04:00
|
|
|
g->old_height = -1;
|
2004-08-31 01:03:48 +04:00
|
|
|
ro_gui_window_open(g, (wimp_open *)&state);
|
|
|
|
/* gui_window_redraw_window(g); */
|
|
|
|
}
|
|
|
|
|
2003-12-12 04:33:38 +03:00
|
|
|
/**
|
|
|
|
* Open a window using the given wimp_open, handling toolbars and resizing.
|
|
|
|
*/
|
2003-11-08 02:51:13 +03:00
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
void ro_gui_window_open(struct gui_window *g, wimp_open *open)
|
|
|
|
{
|
2003-12-12 04:33:38 +03:00
|
|
|
int width = open->visible.x1 - open->visible.x0;
|
|
|
|
int height = open->visible.y1 - open->visible.y0;
|
|
|
|
int toolbar_height = 0;
|
|
|
|
struct content *content;
|
|
|
|
wimp_window_state state;
|
2004-06-27 18:41:14 +04:00
|
|
|
bool toggle_hack = false;
|
|
|
|
int screen_height, screen_width;
|
2004-07-17 17:00:38 +04:00
|
|
|
os_error *error;
|
2003-12-12 04:33:38 +03:00
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
content = g->bw->current_content;
|
2003-12-12 04:33:38 +03:00
|
|
|
|
2004-06-27 18:41:14 +04:00
|
|
|
/* check for toggle to full size - NOW FEATURING "TEMPORARY HACK" */
|
2003-12-12 04:33:38 +03:00
|
|
|
state.w = g->window;
|
2004-07-17 17:00:38 +04:00
|
|
|
error = xwimp_get_window_state(&state);
|
|
|
|
if (error) {
|
|
|
|
LOG(("xwimp_get_window_state: 0x%x: %s",
|
|
|
|
error->errnum, error->errmess));
|
|
|
|
warn_user("WimpError", error->errmess);
|
|
|
|
return;
|
|
|
|
}
|
2003-12-12 04:33:38 +03:00
|
|
|
if ((state.flags & wimp_WINDOW_TOGGLED) &&
|
|
|
|
(state.flags & wimp_WINDOW_BOUNDED_ONCE) &&
|
|
|
|
!(state.flags & wimp_WINDOW_FULL_SIZE)) {
|
2004-06-27 18:41:14 +04:00
|
|
|
/* Check if we need to perform our hack
|
|
|
|
*/
|
|
|
|
ro_gui_screen_size(&screen_width, &screen_height);
|
2004-07-17 17:00:38 +04:00
|
|
|
if ((content->height * 2 * g->option.scale) < screen_height) {
|
2004-06-27 18:41:14 +04:00
|
|
|
open->visible.y0 = 0;
|
|
|
|
open->visible.y1 = 0x1000;
|
|
|
|
height = 0x1000;
|
|
|
|
toggle_hack = true;
|
|
|
|
}
|
2003-12-12 04:33:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* account for toolbar height, if present */
|
2004-07-17 17:00:38 +04:00
|
|
|
if (g->toolbar)
|
|
|
|
toolbar_height = g->toolbar->height;
|
2004-05-05 02:23:44 +04:00
|
|
|
height -= toolbar_height;
|
2003-12-12 04:33:38 +03:00
|
|
|
|
2004-05-05 02:23:44 +04:00
|
|
|
/* The height should be no less than the content height
|
|
|
|
*/
|
2004-07-17 17:00:38 +04:00
|
|
|
if (content && height < content->height * 2 * g->option.scale)
|
|
|
|
height = content->height * 2 * g->option.scale;
|
2003-12-12 04:33:38 +03:00
|
|
|
|
|
|
|
/* change extent if necessary */
|
2004-07-17 17:00:38 +04:00
|
|
|
if (g->old_width != width || g->old_height != height) {
|
|
|
|
if (content && g->old_width != width) {
|
|
|
|
g->reformat_pending = true;
|
2003-12-12 04:33:38 +03:00
|
|
|
gui_reformat_pending = true;
|
|
|
|
}
|
2004-07-17 17:00:38 +04:00
|
|
|
g->old_width = width;
|
|
|
|
g->old_height = height;
|
2003-12-12 04:33:38 +03:00
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
if (content && width < content->width * 2 * g->option.scale)
|
|
|
|
width = content->width * 2 * g->option.scale;
|
2003-12-12 04:33:38 +03:00
|
|
|
else {
|
|
|
|
os_box extent = { 0, -height, width, toolbar_height };
|
2004-07-17 17:00:38 +04:00
|
|
|
error = xwimp_set_extent(g->window, &extent);
|
|
|
|
if (error) {
|
|
|
|
LOG(("xwimp_set_extent: 0x%x: %s",
|
|
|
|
error->errnum, error->errmess));
|
|
|
|
warn_user("WimpError", error->errmess);
|
|
|
|
return;
|
|
|
|
}
|
2003-12-12 04:33:38 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
error = xwimp_open_window(open);
|
|
|
|
if (error) {
|
|
|
|
LOG(("xwimp_open_window: 0x%x: %s",
|
|
|
|
error->errnum, error->errmess));
|
|
|
|
warn_user("WimpError", error->errmess);
|
|
|
|
return;
|
|
|
|
}
|
2003-12-12 04:33:38 +03:00
|
|
|
|
|
|
|
/* update extent to actual size if toggled */
|
2004-06-27 18:41:14 +04:00
|
|
|
if (toggle_hack) {
|
2003-12-12 04:33:38 +03:00
|
|
|
width = open->visible.x1 - open->visible.x0;
|
|
|
|
height = open->visible.y1 - open->visible.y0 - toolbar_height;
|
2004-07-17 17:00:38 +04:00
|
|
|
if (content && height < content->height * 2 * g->option.scale)
|
|
|
|
height = content->height * 2 * g->option.scale;
|
2003-12-12 04:33:38 +03:00
|
|
|
{
|
|
|
|
os_box extent = { 0, -height, width, toolbar_height };
|
2004-07-17 17:00:38 +04:00
|
|
|
error = xwimp_set_extent(g->window, &extent);
|
|
|
|
if (error) {
|
|
|
|
LOG(("xwimp_set_extent: 0x%x: %s",
|
|
|
|
error->errnum, error->errmess));
|
|
|
|
warn_user("WimpError", error->errmess);
|
|
|
|
return;
|
|
|
|
}
|
2003-12-12 04:33:38 +03:00
|
|
|
}
|
2004-07-17 17:00:38 +04:00
|
|
|
g->old_width = width;
|
|
|
|
g->old_height = height;
|
2003-12-12 04:33:38 +03:00
|
|
|
}
|
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
if (g->toolbar)
|
2004-08-31 01:03:48 +04:00
|
|
|
ro_gui_theme_process_toolbar(g->toolbar, -1);
|
2003-11-08 02:51:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
/**
|
|
|
|
* Animate the "throbbers" of all browser windows.
|
|
|
|
*/
|
2004-05-05 02:23:44 +04:00
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
void ro_gui_throb(void)
|
|
|
|
{
|
|
|
|
os_t t;
|
|
|
|
struct gui_window *g;
|
2004-08-31 01:03:48 +04:00
|
|
|
char throb_buf[12];
|
2004-05-05 02:23:44 +04:00
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
xos_read_monotonic_time(&t);
|
2003-11-08 02:51:13 +03:00
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
for (g = window_list; g; g = g->next) {
|
2004-08-31 01:03:48 +04:00
|
|
|
if (!g->bw->throbbing || !g->toolbar || !g->toolbar->display_throbber ||
|
2004-09-08 03:05:34 +04:00
|
|
|
!g->toolbar->descriptor ||!g->toolbar->descriptor->theme ||
|
|
|
|
(t < g->throbtime + 10))
|
2004-07-17 17:00:38 +04:00
|
|
|
continue;
|
|
|
|
g->throbtime = t;
|
|
|
|
g->throbber++;
|
2004-09-08 03:05:34 +04:00
|
|
|
if (g->toolbar->descriptor->theme->throbber_frames < g->throbber)
|
2004-08-31 01:03:48 +04:00
|
|
|
g->throbber = 1;
|
|
|
|
sprintf(throb_buf, "throbber%i", g->throbber);
|
|
|
|
ro_gui_set_icon_string(g->toolbar->toolbar_handle,
|
|
|
|
ICON_TOOLBAR_THROBBER, throb_buf);
|
2004-05-05 02:23:44 +04:00
|
|
|
}
|
2003-11-08 02:51:13 +03:00
|
|
|
}
|
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert a RISC OS window handle to a gui_window.
|
|
|
|
*
|
|
|
|
* \param w RISC OS window handle
|
|
|
|
* \return pointer to a structure if found, 0 otherwise
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct gui_window *ro_gui_window_lookup(wimp_w window)
|
|
|
|
{
|
|
|
|
struct gui_window *g;
|
|
|
|
for (g = window_list; g; g = g->next)
|
|
|
|
if (g->window == window)
|
|
|
|
return g;
|
|
|
|
return 0;
|
2004-05-05 02:23:44 +04:00
|
|
|
}
|
2003-11-08 02:51:13 +03:00
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert a toolbar RISC OS window handle to a gui_window.
|
|
|
|
*
|
|
|
|
* \param w RISC OS window handle of a toolbar
|
|
|
|
* \return pointer to a structure if found, 0 otherwise
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct gui_window *ro_gui_toolbar_lookup(wimp_w window)
|
|
|
|
{
|
|
|
|
struct gui_window *g;
|
|
|
|
for (g = window_list; g; g = g->next)
|
|
|
|
if (g->toolbar && g->toolbar->toolbar_handle == window)
|
|
|
|
return g;
|
|
|
|
return 0;
|
2003-11-08 02:51:13 +03:00
|
|
|
}
|
|
|
|
|
2003-12-11 04:23:57 +03:00
|
|
|
|
|
|
|
/**
|
2004-07-17 17:00:38 +04:00
|
|
|
* Convert a status bar RISC OS window handle to a gui_window.
|
|
|
|
*
|
|
|
|
* \param w RISC OS window handle of a status bar
|
|
|
|
* \return pointer to a structure if found, 0 otherwise
|
2003-12-11 04:23:57 +03:00
|
|
|
*/
|
2004-07-17 17:00:38 +04:00
|
|
|
|
|
|
|
struct gui_window *ro_gui_status_lookup(wimp_w window)
|
|
|
|
{
|
|
|
|
struct gui_window *g;
|
|
|
|
for (g = window_list; g; g = g->next)
|
|
|
|
if (g->toolbar && g->toolbar->status_handle == window)
|
2003-12-11 04:23:57 +03:00
|
|
|
return g;
|
2004-07-17 17:00:38 +04:00
|
|
|
return 0;
|
2003-12-11 04:23:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
/**
|
|
|
|
* Handle pointer movements in a browser window.
|
|
|
|
*
|
2004-08-07 03:45:21 +04:00
|
|
|
* \param g browser window that the pointer is in
|
2004-07-17 17:00:38 +04:00
|
|
|
* \param pointer new mouse position
|
|
|
|
*/
|
|
|
|
|
|
|
|
void ro_gui_window_mouse_at(struct gui_window *g, wimp_pointer *pointer)
|
2003-11-08 02:51:13 +03:00
|
|
|
{
|
2004-07-17 17:00:38 +04:00
|
|
|
int x, y;
|
|
|
|
wimp_window_state state;
|
|
|
|
os_error *error;
|
|
|
|
|
|
|
|
assert(g);
|
|
|
|
|
|
|
|
state.w = pointer->w;
|
|
|
|
error = xwimp_get_window_state(&state);
|
|
|
|
if (error) {
|
|
|
|
LOG(("xwimp_get_window_state: 0x%x: %s",
|
|
|
|
error->errnum, error->errmess));
|
|
|
|
warn_user("WimpError", error->errmess);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
x = window_x_units(pointer->pos.x, &state) / 2 / g->option.scale;
|
|
|
|
y = -window_y_units(pointer->pos.y, &state) / 2 / g->option.scale;
|
|
|
|
|
2004-08-26 03:56:49 +04:00
|
|
|
if (pointer->buttons)
|
|
|
|
browser_window_mouse_click(g->bw, BROWSER_MOUSE_DRAG, x, y);
|
|
|
|
else
|
|
|
|
browser_window_mouse_click(g->bw, BROWSER_MOUSE_HOVER, x, y);
|
2003-11-08 02:51:13 +03:00
|
|
|
}
|
|
|
|
|
2004-06-21 03:10:50 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Process Mouse_Click events in a toolbar.
|
|
|
|
*/
|
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
void ro_gui_toolbar_click(struct gui_window *g, wimp_pointer *pointer)
|
|
|
|
{
|
2004-08-07 03:45:21 +04:00
|
|
|
char url[80];
|
2004-06-29 23:08:19 +04:00
|
|
|
|
2004-10-05 03:54:42 +04:00
|
|
|
/* Store the toolbar
|
2004-06-28 23:35:04 +04:00
|
|
|
*/
|
2004-10-05 03:54:42 +04:00
|
|
|
current_toolbar = g->toolbar;
|
2004-10-18 01:16:00 +04:00
|
|
|
|
2004-10-05 03:54:42 +04:00
|
|
|
/* Handle Menu clicks
|
|
|
|
*/
|
|
|
|
if (pointer->buttons == wimp_CLICK_MENU) {
|
|
|
|
ro_gui_create_menu(toolbar_menu, pointer->pos.x,
|
|
|
|
pointer->pos.y, g);
|
2004-07-17 17:00:38 +04:00
|
|
|
return;
|
2004-10-05 03:54:42 +04:00
|
|
|
}
|
2004-06-28 23:35:04 +04:00
|
|
|
|
|
|
|
/* Handle the buttons appropriately
|
|
|
|
*/
|
2003-11-20 03:16:31 +03:00
|
|
|
switch (pointer->i) {
|
2004-02-26 20:52:10 +03:00
|
|
|
case ICON_TOOLBAR_BACK:
|
2004-07-17 17:00:38 +04:00
|
|
|
history_back(g->bw, g->bw->history);
|
2004-06-28 23:35:04 +04:00
|
|
|
break;
|
2004-02-26 20:52:10 +03:00
|
|
|
case ICON_TOOLBAR_FORWARD:
|
2004-07-17 17:00:38 +04:00
|
|
|
history_forward(g->bw, g->bw->history);
|
2004-06-21 03:10:50 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ICON_TOOLBAR_STOP:
|
2004-07-17 17:00:38 +04:00
|
|
|
browser_window_stop(g->bw);
|
2004-02-26 20:52:10 +03:00
|
|
|
break;
|
|
|
|
|
2004-06-23 00:39:16 +04:00
|
|
|
case ICON_TOOLBAR_RELOAD:
|
2004-06-29 23:08:19 +04:00
|
|
|
if (pointer->buttons == wimp_CLICK_SELECT)
|
2004-07-17 17:00:38 +04:00
|
|
|
browser_window_reload(g->bw, false);
|
2004-06-29 23:08:19 +04:00
|
|
|
else if (pointer->buttons == wimp_CLICK_ADJUST)
|
2004-07-17 17:00:38 +04:00
|
|
|
browser_window_reload(g->bw, true);
|
2004-06-23 00:39:16 +04:00
|
|
|
break;
|
|
|
|
|
2003-11-20 03:16:31 +03:00
|
|
|
case ICON_TOOLBAR_HISTORY:
|
2004-07-17 17:00:38 +04:00
|
|
|
ro_gui_history_open(g->bw,
|
|
|
|
g->bw->history,
|
2004-02-26 20:26:01 +03:00
|
|
|
pointer->pos.x, pointer->pos.y);
|
2003-11-20 03:16:31 +03:00
|
|
|
break;
|
2004-08-06 03:10:24 +04:00
|
|
|
case ICON_TOOLBAR_HOME:
|
|
|
|
if (option_homepage_url && option_homepage_url[0]) {
|
|
|
|
if (pointer->buttons == wimp_CLICK_SELECT) {
|
|
|
|
browser_window_go_post(g->bw, option_homepage_url,
|
2004-10-02 01:31:55 +04:00
|
|
|
0, 0, true, 0);
|
2004-08-06 03:10:24 +04:00
|
|
|
} else {
|
2004-10-02 01:31:55 +04:00
|
|
|
browser_window_create(option_homepage_url, NULL, 0);
|
2004-08-07 03:45:21 +04:00
|
|
|
}
|
|
|
|
} else {
|
2004-08-06 03:10:24 +04:00
|
|
|
snprintf(url, sizeof url,
|
|
|
|
"file:/<NetSurf$Dir>/Docs/intro_%s",
|
|
|
|
option_language);
|
|
|
|
if (pointer->buttons == wimp_CLICK_SELECT) {
|
2004-10-02 01:31:55 +04:00
|
|
|
browser_window_go_post(g->bw, url, 0, 0, true, 0);
|
2004-08-06 03:10:24 +04:00
|
|
|
} else {
|
2004-10-02 01:31:55 +04:00
|
|
|
browser_window_create(url, NULL, 0);
|
2004-08-06 03:10:24 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2004-09-14 03:59:30 +04:00
|
|
|
#ifdef WITH_SEARCH
|
2004-08-06 03:10:24 +04:00
|
|
|
case ICON_TOOLBAR_SEARCH:
|
|
|
|
ro_gui_search_open(g, 0, 0, false, true);
|
|
|
|
break;
|
2004-09-14 03:59:30 +04:00
|
|
|
#endif
|
2004-05-05 02:23:44 +04:00
|
|
|
case ICON_TOOLBAR_SCALE:
|
|
|
|
current_gui = g;
|
|
|
|
ro_gui_menu_prepare_scale();
|
2004-08-07 03:45:21 +04:00
|
|
|
ro_gui_dialog_open_persistant(g->window, dialog_zoom, true);
|
2004-05-05 02:23:44 +04:00
|
|
|
break;
|
2004-07-17 17:00:38 +04:00
|
|
|
|
2004-06-30 03:13:40 +04:00
|
|
|
case ICON_TOOLBAR_BOOKMARK:
|
2004-07-12 01:45:51 +04:00
|
|
|
if (pointer->buttons == wimp_CLICK_ADJUST) {
|
2004-07-17 17:00:38 +04:00
|
|
|
if (g->bw->current_content)
|
|
|
|
ro_gui_hotlist_add(g->title,
|
|
|
|
g->bw->current_content);
|
2004-06-30 03:13:40 +04:00
|
|
|
} else {
|
|
|
|
ro_gui_hotlist_show();
|
|
|
|
}
|
|
|
|
break;
|
2004-05-05 02:23:44 +04:00
|
|
|
|
2004-03-31 00:24:00 +04:00
|
|
|
case ICON_TOOLBAR_SAVE:
|
2004-05-05 02:23:44 +04:00
|
|
|
current_gui = g;
|
2004-07-17 17:00:38 +04:00
|
|
|
if (g->bw->current_content)
|
|
|
|
ro_gui_save_open(GUI_SAVE_SOURCE,
|
|
|
|
g->bw->current_content,
|
|
|
|
false, 0, 0, g->window, false);
|
2004-05-05 02:23:44 +04:00
|
|
|
break;
|
2004-08-31 22:01:22 +04:00
|
|
|
case ICON_TOOLBAR_PRINT:
|
|
|
|
current_gui = g;
|
|
|
|
ro_gui_print_open(g, 0, 0, false, false);
|
|
|
|
break;
|
2003-11-20 03:16:31 +03:00
|
|
|
}
|
2003-11-08 02:51:13 +03:00
|
|
|
}
|
|
|
|
|
2004-06-21 03:10:50 +04:00
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
/**
|
|
|
|
* Handle Mouse_Click events in the status bar.
|
|
|
|
*
|
2004-08-07 03:45:21 +04:00
|
|
|
* \param g browser window that owns the status bar
|
2004-07-17 17:00:38 +04:00
|
|
|
* \param pointer details of mouse click
|
|
|
|
*/
|
|
|
|
|
|
|
|
void ro_gui_status_click(struct gui_window *g, wimp_pointer *pointer)
|
|
|
|
{
|
2004-05-05 02:23:44 +04:00
|
|
|
wimp_drag drag;
|
|
|
|
os_error *error;
|
|
|
|
switch (pointer->i) {
|
|
|
|
case ICON_STATUS_RESIZE:
|
|
|
|
gui_current_drag_type = GUI_DRAG_STATUS_RESIZE;
|
2004-07-17 17:00:38 +04:00
|
|
|
drag.w = g->toolbar->status_handle;
|
|
|
|
drag.type = wimp_DRAG_SYSTEM_SIZE;
|
|
|
|
drag.initial.x0 = pointer->pos.x;
|
|
|
|
drag.initial.x1 = pointer->pos.x;
|
|
|
|
drag.initial.y0 = pointer->pos.y;
|
|
|
|
drag.initial.y1 = pointer->pos.y;
|
|
|
|
error = xwimp_drag_box(&drag);
|
|
|
|
if (error) {
|
|
|
|
LOG(("xwimp_drag_box: 0x%x: %s",
|
|
|
|
error->errnum, error->errmess));
|
|
|
|
warn_user("WimpError", error->errmess);
|
|
|
|
}
|
2004-05-05 02:23:44 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2003-11-08 02:51:13 +03:00
|
|
|
|
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
/**
|
|
|
|
* Handle Mouse_Click events in a browser window.
|
|
|
|
*
|
2004-08-07 03:45:21 +04:00
|
|
|
* \param g browser window
|
2004-07-17 17:00:38 +04:00
|
|
|
* \param pointer details of mouse click
|
|
|
|
*/
|
|
|
|
|
|
|
|
void ro_gui_window_click(struct gui_window *g, wimp_pointer *pointer)
|
|
|
|
{
|
|
|
|
int x, y;
|
2004-05-05 02:23:44 +04:00
|
|
|
wimp_window_state state;
|
2004-06-25 21:38:39 +04:00
|
|
|
os_error *error;
|
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
assert(g);
|
2003-11-08 02:51:13 +03:00
|
|
|
|
2004-05-05 02:23:44 +04:00
|
|
|
state.w = pointer->w;
|
2004-06-25 21:38:39 +04:00
|
|
|
error = xwimp_get_window_state(&state);
|
|
|
|
if (error) {
|
2004-06-25 21:52:05 +04:00
|
|
|
LOG(("xwimp_get_window_state: 0x%x: %s", error->errnum,
|
|
|
|
error->errmess));
|
|
|
|
warn_user("WimpError", error->errmess);
|
2004-06-25 21:38:39 +04:00
|
|
|
return;
|
|
|
|
}
|
2004-05-05 02:23:44 +04:00
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
x = window_x_units(pointer->pos.x, &state) / 2 / g->option.scale;
|
|
|
|
y = -window_y_units(pointer->pos.y, &state) / 2 / g->option.scale;
|
2004-05-05 02:23:44 +04:00
|
|
|
|
2004-06-25 21:38:39 +04:00
|
|
|
/* set input focus */
|
2004-07-17 17:00:38 +04:00
|
|
|
if (pointer->buttons == wimp_CLICK_SELECT ||
|
|
|
|
pointer->buttons == wimp_CLICK_ADJUST) {
|
|
|
|
error = xwimp_set_caret_position(state.w, -1,
|
|
|
|
-100, -100, 32, -1);
|
2004-06-25 21:38:39 +04:00
|
|
|
if (error) {
|
2004-06-25 21:52:05 +04:00
|
|
|
LOG(("xwimp_set_caret_position: 0x%x: %s",
|
2004-07-17 17:00:38 +04:00
|
|
|
error->errnum, error->errmess));
|
2004-06-25 21:52:05 +04:00
|
|
|
warn_user("WimpError", error->errmess);
|
2004-06-25 21:38:39 +04:00
|
|
|
return;
|
|
|
|
}
|
2004-05-05 02:23:44 +04:00
|
|
|
}
|
2004-06-25 21:38:39 +04:00
|
|
|
|
2004-07-18 03:32:09 +04:00
|
|
|
if (pointer->buttons == wimp_CLICK_MENU)
|
2004-07-18 21:38:01 +04:00
|
|
|
ro_gui_create_menu(browser_menu, pointer->pos.x,
|
2004-06-25 21:38:39 +04:00
|
|
|
pointer->pos.y, g);
|
2004-07-18 03:32:09 +04:00
|
|
|
else if (pointer->buttons == wimp_CLICK_SELECT)
|
|
|
|
browser_window_mouse_click(g->bw, BROWSER_MOUSE_CLICK_1, x, y);
|
|
|
|
else if (pointer->buttons == wimp_CLICK_ADJUST)
|
|
|
|
browser_window_mouse_click(g->bw, BROWSER_MOUSE_CLICK_2, x, y);
|
2003-11-08 02:51:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
/**
|
|
|
|
* Update the interface to reflect start of page loading.
|
|
|
|
*
|
|
|
|
* \param g window with start of load
|
|
|
|
*/
|
|
|
|
|
|
|
|
void gui_window_start_throbber(struct gui_window *g)
|
|
|
|
{
|
2004-06-27 02:31:34 +04:00
|
|
|
ro_gui_prepare_navigate(g);
|
2004-07-17 17:00:38 +04:00
|
|
|
xos_read_monotonic_time(&g->throbtime);
|
2004-05-05 02:23:44 +04:00
|
|
|
g->throbber = 0;
|
2003-11-08 02:51:13 +03:00
|
|
|
}
|
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update the interface to reflect page loading stopped.
|
|
|
|
*
|
|
|
|
* \param g window with start of load
|
|
|
|
*/
|
|
|
|
|
|
|
|
void gui_window_stop_throbber(struct gui_window *g)
|
|
|
|
{
|
2004-08-31 01:03:48 +04:00
|
|
|
char throb_buf[12];
|
2004-06-27 02:31:34 +04:00
|
|
|
ro_gui_prepare_navigate(g);
|
2004-05-05 02:23:44 +04:00
|
|
|
g->throbber = 0;
|
2004-08-31 01:03:48 +04:00
|
|
|
if (g->toolbar) {
|
|
|
|
strcpy(throb_buf, "throbber0");
|
|
|
|
ro_gui_set_icon_string(g->toolbar->toolbar_handle,
|
|
|
|
ICON_TOOLBAR_THROBBER, throb_buf);
|
|
|
|
}
|
2003-11-08 02:51:13 +03:00
|
|
|
}
|
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Place the caret in a browser window.
|
|
|
|
*
|
2004-08-07 03:45:21 +04:00
|
|
|
* \param g window with caret
|
|
|
|
* \param x coordinates of caret
|
|
|
|
* \param y coordinates of caret
|
2004-07-17 17:00:38 +04:00
|
|
|
* \param height height of caret
|
|
|
|
*/
|
|
|
|
|
|
|
|
void gui_window_place_caret(struct gui_window *g, int x, int y, int height)
|
|
|
|
{
|
|
|
|
os_error *error;
|
|
|
|
|
|
|
|
error = xwimp_set_caret_position(g->window, -1,
|
2004-07-19 05:00:25 +04:00
|
|
|
x * 2 * g->option.scale,
|
|
|
|
-(y + height) * 2 * g->option.scale,
|
|
|
|
height * 2 * g->option.scale, -1);
|
2004-07-21 18:19:21 +04:00
|
|
|
if (error) {
|
|
|
|
LOG(("xwimp_set_caret_position: 0x%x: %s",
|
|
|
|
error->errnum, error->errmess));
|
|
|
|
warn_user("WimpError", error->errmess);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove/disown the caret.
|
|
|
|
*
|
2004-08-07 03:45:21 +04:00
|
|
|
* \param g window with caret
|
2004-07-21 18:19:21 +04:00
|
|
|
*
|
|
|
|
* \todo: do we want to do a test if g really owns the caret ?
|
|
|
|
*/
|
|
|
|
|
|
|
|
void gui_window_remove_caret(struct gui_window *g)
|
|
|
|
{
|
|
|
|
os_error *error;
|
|
|
|
|
2004-08-05 23:27:31 +04:00
|
|
|
error = xwimp_set_caret_position((wimp_w)-1, (wimp_i)-1,
|
2004-07-21 18:19:21 +04:00
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0, -1);
|
2004-07-17 17:00:38 +04:00
|
|
|
if (error) {
|
|
|
|
LOG(("xwimp_set_caret_position: 0x%x: %s",
|
|
|
|
error->errnum, error->errmess));
|
|
|
|
warn_user("WimpError", error->errmess);
|
|
|
|
}
|
2003-11-08 02:51:13 +03:00
|
|
|
}
|
2003-12-11 04:23:57 +03:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Process Key_Pressed events in a browser window.
|
|
|
|
*/
|
2004-03-27 21:46:08 +03:00
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
bool ro_gui_window_keypress(struct gui_window *g, int key, bool toolbar)
|
2003-12-11 04:23:57 +03:00
|
|
|
{
|
2004-07-17 17:00:38 +04:00
|
|
|
struct content *content = g->bw->current_content;
|
2003-12-11 04:23:57 +03:00
|
|
|
wimp_window_state state;
|
2003-12-21 05:27:22 +03:00
|
|
|
int y;
|
2004-03-02 21:02:41 +03:00
|
|
|
char *url;
|
2004-08-31 01:03:48 +04:00
|
|
|
char *toolbar_url;
|
2004-03-27 21:46:08 +03:00
|
|
|
os_error *error;
|
|
|
|
wimp_pointer pointer;
|
2004-08-09 20:11:58 +04:00
|
|
|
url_func_result res;
|
2004-03-27 21:46:08 +03:00
|
|
|
|
|
|
|
error = xwimp_get_pointer_info(&pointer);
|
|
|
|
if (error) {
|
|
|
|
LOG(("xwimp_get_pointer_info: 0x%x: %s\n",
|
|
|
|
error->errnum, error->errmess));
|
2004-05-07 23:14:54 +04:00
|
|
|
warn_user("WimpError", error->errmess);
|
2004-03-27 21:46:08 +03:00
|
|
|
return false;
|
|
|
|
}
|
2003-12-11 04:23:57 +03:00
|
|
|
|
|
|
|
/* First send the key to the browser window, eg. form fields. */
|
|
|
|
if (!toolbar) {
|
2004-08-14 16:16:45 +04:00
|
|
|
wchar_t c = (wchar_t)key;
|
2003-12-11 04:23:57 +03:00
|
|
|
/* Munge cursor keys into unused control chars */
|
2004-06-23 00:39:16 +04:00
|
|
|
/* We can't map on to any of: 3,8,10,13,17,18,21,22,23 or 24
|
2004-06-11 04:08:53 +04:00
|
|
|
* That leaves 1,2,4-7,11,12,14-16,18-20,25-31 and 129-159
|
2004-04-09 03:46:41 +04:00
|
|
|
*/
|
2004-05-05 02:23:44 +04:00
|
|
|
if (c == 394) c = 9; /* Tab */
|
2004-04-09 03:46:41 +04:00
|
|
|
else if (c == 410) c = 11; /* Shift+Tab */
|
|
|
|
else if (c == 428) c = 26; /* Ctrl+Left */
|
|
|
|
else if (c == 429) c = 27; /* Ctrl+Right*/
|
|
|
|
else if (c == 396) c = 29; /* Left */
|
2003-12-11 04:23:57 +03:00
|
|
|
else if (c == 397) c = 28; /* Right */
|
|
|
|
else if (c == 398) c = 31; /* Down */
|
|
|
|
else if (c == 399) c = 30; /* Up */
|
|
|
|
if (c < 256)
|
2004-07-20 15:30:03 +04:00
|
|
|
if (browser_window_key_press(g->bw, c))
|
2003-12-11 04:23:57 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (key) {
|
2004-07-08 21:28:56 +04:00
|
|
|
case wimp_KEY_CONTROL + wimp_KEY_F1:
|
|
|
|
current_gui = g;
|
|
|
|
ro_gui_menu_prepare_pageinfo();
|
2004-07-16 20:33:45 +04:00
|
|
|
ro_gui_dialog_open_persistant(g->window, dialog_pageinfo, false);
|
2004-07-08 21:28:56 +04:00
|
|
|
return true;
|
2004-05-14 23:59:09 +04:00
|
|
|
case wimp_KEY_F1: /* Help. */
|
|
|
|
ro_gui_open_help_page("docs");
|
|
|
|
return true;
|
|
|
|
|
2004-09-14 03:59:30 +04:00
|
|
|
#ifdef WITH_SEARCH
|
2004-08-06 00:32:00 +04:00
|
|
|
case wimp_KEY_F4: /* Search */
|
2004-08-06 02:03:56 +04:00
|
|
|
ro_gui_search_open(g, 0, 0, false, true);
|
2004-08-06 00:32:00 +04:00
|
|
|
return true;
|
2004-09-14 03:59:30 +04:00
|
|
|
#endif
|
2004-08-06 00:32:00 +04:00
|
|
|
|
2004-08-07 03:45:21 +04:00
|
|
|
case wimp_KEY_F5: /* Refresh. */
|
|
|
|
browser_window_reload(g->bw, false);
|
|
|
|
return true;
|
2004-07-27 00:13:45 +04:00
|
|
|
|
2004-08-07 03:45:21 +04:00
|
|
|
case wimp_KEY_F6: /* Hotlist. */
|
2004-06-30 03:13:40 +04:00
|
|
|
ro_gui_hotlist_show();
|
|
|
|
return true;
|
|
|
|
|
2004-08-07 03:45:21 +04:00
|
|
|
case wimp_KEY_F7: /* Toggle fullscreen browsing. */
|
2004-07-27 00:13:45 +04:00
|
|
|
|
|
|
|
|
|
|
|
|
2004-08-07 03:45:21 +04:00
|
|
|
return true;
|
2004-07-27 00:13:45 +04:00
|
|
|
|
|
|
|
|
2003-12-11 04:23:57 +03:00
|
|
|
case wimp_KEY_F8: /* View source. */
|
|
|
|
ro_gui_view_source(content);
|
|
|
|
return true;
|
|
|
|
|
|
|
|
case wimp_KEY_F9: /* Dump content for debugging. */
|
|
|
|
switch (content->type) {
|
|
|
|
case CONTENT_HTML:
|
2004-10-18 01:16:00 +04:00
|
|
|
box_dump(content->data.html.layout, 0);
|
2003-12-11 04:23:57 +03:00
|
|
|
break;
|
|
|
|
case CONTENT_CSS:
|
|
|
|
css_dump_stylesheet(content->data.css.css);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
|
2004-08-07 03:45:21 +04:00
|
|
|
case wimp_KEY_F11: /* Zoom */
|
|
|
|
current_gui = g;
|
|
|
|
ro_gui_menu_prepare_scale();
|
|
|
|
ro_gui_dialog_open_persistant(g->window, dialog_zoom, false);
|
|
|
|
return true;
|
|
|
|
|
|
|
|
case wimp_KEY_SHIFT + wimp_KEY_F11: /* Toggle display of box outlines. */
|
2004-10-18 01:16:00 +04:00
|
|
|
html_redraw_debug = !html_redraw_debug;
|
2004-02-02 03:22:59 +03:00
|
|
|
gui_window_redraw_window(g);
|
|
|
|
return true;
|
|
|
|
|
2004-05-07 00:37:48 +04:00
|
|
|
case wimp_KEY_F2:
|
2004-07-17 17:00:38 +04:00
|
|
|
if (!g->toolbar)
|
2004-05-07 00:37:48 +04:00
|
|
|
return false;
|
2004-07-17 17:00:38 +04:00
|
|
|
ro_gui_set_icon_string(g->toolbar->toolbar_handle,
|
2004-05-07 00:37:48 +04:00
|
|
|
ICON_TOOLBAR_URL, "www.");
|
2004-07-17 17:00:38 +04:00
|
|
|
xwimp_set_caret_position(g->toolbar->toolbar_handle,
|
2004-05-07 00:37:48 +04:00
|
|
|
ICON_TOOLBAR_URL, 0, 0, -1, 4);
|
|
|
|
return true;
|
|
|
|
|
2003-12-11 04:23:57 +03:00
|
|
|
case wimp_KEY_CONTROL + wimp_KEY_F2: /* Close window. */
|
2004-07-17 17:00:38 +04:00
|
|
|
browser_window_destroy(g->bw);
|
2003-12-11 04:23:57 +03:00
|
|
|
return true;
|
2004-03-27 21:46:08 +03:00
|
|
|
|
|
|
|
case wimp_KEY_F3:
|
|
|
|
current_gui = g;
|
2004-07-11 17:05:38 +04:00
|
|
|
ro_gui_save_open(GUI_SAVE_SOURCE, content,
|
2004-07-16 20:33:45 +04:00
|
|
|
false, 0, 0, g->window, true);
|
2004-06-21 03:10:50 +04:00
|
|
|
return true;
|
2004-03-27 21:46:08 +03:00
|
|
|
|
|
|
|
case wimp_KEY_CONTROL + wimp_KEY_F3:
|
|
|
|
current_gui = g;
|
2004-07-11 17:05:38 +04:00
|
|
|
ro_gui_save_open(GUI_SAVE_TEXT, content,
|
2004-07-16 20:33:45 +04:00
|
|
|
false, 0, 0, g->window, true);
|
2004-06-21 03:10:50 +04:00
|
|
|
return true;
|
2004-03-27 21:46:08 +03:00
|
|
|
|
|
|
|
case wimp_KEY_SHIFT + wimp_KEY_F3:
|
|
|
|
current_gui = g;
|
2004-07-11 17:05:38 +04:00
|
|
|
ro_gui_save_open(GUI_SAVE_COMPLETE, content,
|
2004-07-16 20:33:45 +04:00
|
|
|
false, 0, 0, g->window, true);
|
2004-06-21 03:10:50 +04:00
|
|
|
return true;
|
2004-03-27 21:46:08 +03:00
|
|
|
|
|
|
|
case wimp_KEY_CONTROL + wimp_KEY_SHIFT + wimp_KEY_F3:
|
|
|
|
current_gui = g;
|
2004-07-11 17:05:38 +04:00
|
|
|
ro_gui_save_open(GUI_SAVE_DRAW, content,
|
2004-07-16 20:33:45 +04:00
|
|
|
false, 0, 0, g->window, true);
|
2004-06-21 03:10:50 +04:00
|
|
|
return true;
|
2004-02-15 01:26:35 +03:00
|
|
|
|
2003-12-11 04:23:57 +03:00
|
|
|
case wimp_KEY_RETURN:
|
|
|
|
if (!toolbar)
|
|
|
|
break;
|
2004-08-31 01:03:48 +04:00
|
|
|
toolbar_url = ro_gui_get_icon_string(g->toolbar->toolbar_handle,
|
|
|
|
ICON_TOOLBAR_URL);
|
|
|
|
res = url_normalize(toolbar_url, &url);
|
2004-08-09 20:11:58 +04:00
|
|
|
if (res == URL_FUNC_OK) {
|
2004-03-02 21:02:41 +03:00
|
|
|
gui_window_set_url(g, url);
|
2004-10-02 01:31:55 +04:00
|
|
|
browser_window_go(g->bw, url, 0);
|
2004-03-02 21:02:41 +03:00
|
|
|
free(url);
|
2003-12-11 04:23:57 +03:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
|
2004-06-21 03:10:50 +04:00
|
|
|
case wimp_KEY_ESCAPE:
|
2004-07-17 17:00:38 +04:00
|
|
|
browser_window_stop(g->bw);
|
2004-06-21 03:10:50 +04:00
|
|
|
return true;
|
|
|
|
|
2004-06-28 23:35:04 +04:00
|
|
|
case 14: /* CTRL+N */
|
2004-06-28 23:40:57 +04:00
|
|
|
current_gui = g;
|
2004-08-31 01:03:48 +04:00
|
|
|
browser_window_create(current_gui->bw->current_content->url,
|
2004-10-02 01:31:55 +04:00
|
|
|
current_gui->bw, 0);
|
2004-06-28 23:35:04 +04:00
|
|
|
return true;
|
2004-06-23 00:39:16 +04:00
|
|
|
case 18: /* CTRL+R */
|
2004-07-17 17:00:38 +04:00
|
|
|
browser_window_reload(g->bw, false);
|
2004-06-23 00:39:16 +04:00
|
|
|
return true;
|
|
|
|
|
2004-06-11 04:08:53 +04:00
|
|
|
case 17: /* CTRL+Q (Zoom out) */
|
2004-08-07 03:45:21 +04:00
|
|
|
current_gui = g;
|
|
|
|
if (0.1 < current_gui->option.scale) {
|
|
|
|
current_gui->option.scale -= 0.1;
|
|
|
|
if (current_gui->option.scale < 0.1)
|
|
|
|
current_gui->option.scale = 0.1;
|
|
|
|
current_gui->reformat_pending = true;
|
|
|
|
gui_reformat_pending = true;
|
|
|
|
}
|
|
|
|
return true;
|
2004-06-11 04:08:53 +04:00
|
|
|
case 23: /* CTRL+W (Zoom in) */
|
2004-08-07 03:45:21 +04:00
|
|
|
current_gui = g;
|
|
|
|
if (current_gui->option.scale < 10.0) {
|
|
|
|
current_gui->option.scale += 0.1;
|
|
|
|
if (10.0 < current_gui->option.scale)
|
|
|
|
current_gui->option.scale = 10.0;
|
|
|
|
current_gui->reformat_pending = true;
|
|
|
|
gui_reformat_pending = true;
|
|
|
|
}
|
|
|
|
return true;
|
2004-06-11 04:08:53 +04:00
|
|
|
|
2004-09-14 03:59:30 +04:00
|
|
|
#ifdef WITH_PRINT
|
2004-08-09 10:28:57 +04:00
|
|
|
case wimp_KEY_PRINT:
|
|
|
|
ro_gui_print_open(g, 0, 0, false, true);
|
|
|
|
return true;
|
2004-09-14 03:59:30 +04:00
|
|
|
#endif
|
2004-08-09 10:28:57 +04:00
|
|
|
|
2003-12-11 04:23:57 +03:00
|
|
|
case wimp_KEY_UP:
|
|
|
|
case wimp_KEY_DOWN:
|
2003-12-21 05:27:22 +03:00
|
|
|
case wimp_KEY_PAGE_UP:
|
|
|
|
case wimp_KEY_PAGE_DOWN:
|
|
|
|
case wimp_KEY_CONTROL | wimp_KEY_UP:
|
|
|
|
case wimp_KEY_CONTROL | wimp_KEY_DOWN:
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
state.w = g->window;
|
|
|
|
wimp_get_window_state(&state);
|
|
|
|
y = state.visible.y1 - state.visible.y0 - 32;
|
2004-07-17 17:00:38 +04:00
|
|
|
y -= g->toolbar->height;
|
2003-12-21 05:27:22 +03:00
|
|
|
|
|
|
|
switch (key) {
|
|
|
|
case wimp_KEY_UP:
|
|
|
|
state.yscroll += 32;
|
|
|
|
break;
|
|
|
|
case wimp_KEY_DOWN:
|
|
|
|
state.yscroll -= 32;
|
|
|
|
break;
|
|
|
|
case wimp_KEY_PAGE_UP:
|
|
|
|
state.yscroll += y;
|
|
|
|
break;
|
|
|
|
case wimp_KEY_PAGE_DOWN:
|
|
|
|
state.yscroll -= y;
|
|
|
|
break;
|
|
|
|
case wimp_KEY_CONTROL | wimp_KEY_UP:
|
|
|
|
state.yscroll = 1000;
|
|
|
|
break;
|
|
|
|
case wimp_KEY_CONTROL | wimp_KEY_DOWN:
|
|
|
|
state.yscroll = -0x10000000;
|
|
|
|
break;
|
2004-05-05 02:23:44 +04:00
|
|
|
}
|
2003-12-21 05:27:22 +03:00
|
|
|
|
|
|
|
wimp_open_window((wimp_open *) &state);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Process Scroll_Request events.
|
|
|
|
*/
|
|
|
|
void ro_gui_scroll_request(wimp_scroll *scroll)
|
|
|
|
{
|
|
|
|
int x, y;
|
2004-07-17 17:00:38 +04:00
|
|
|
struct gui_window *g = ro_gui_window_lookup(scroll->w);
|
2003-12-21 05:27:22 +03:00
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
if (!g)
|
2003-12-21 05:27:22 +03:00
|
|
|
return;
|
|
|
|
|
|
|
|
x = scroll->visible.x1 - scroll->visible.x0 - 32;
|
|
|
|
y = scroll->visible.y1 - scroll->visible.y0 - 32;
|
2004-07-17 17:00:38 +04:00
|
|
|
y -= g->toolbar->height;
|
2003-12-21 05:27:22 +03:00
|
|
|
|
|
|
|
switch (scroll->xmin) {
|
|
|
|
case wimp_SCROLL_PAGE_LEFT:
|
|
|
|
scroll->xscroll -= x;
|
|
|
|
break;
|
|
|
|
case wimp_SCROLL_COLUMN_LEFT:
|
|
|
|
scroll->xscroll -= 32;
|
|
|
|
break;
|
|
|
|
case wimp_SCROLL_COLUMN_RIGHT:
|
|
|
|
scroll->xscroll += 32;
|
|
|
|
break;
|
|
|
|
case wimp_SCROLL_PAGE_RIGHT:
|
|
|
|
scroll->xscroll += x;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2003-12-11 04:23:57 +03:00
|
|
|
|
2003-12-21 05:27:22 +03:00
|
|
|
switch (scroll->ymin) {
|
|
|
|
case wimp_SCROLL_PAGE_UP:
|
|
|
|
scroll->yscroll += y;
|
|
|
|
break;
|
|
|
|
case wimp_SCROLL_LINE_UP:
|
|
|
|
scroll->yscroll += 32;
|
|
|
|
break;
|
|
|
|
case wimp_SCROLL_LINE_DOWN:
|
|
|
|
scroll->yscroll -= 32;
|
|
|
|
break;
|
|
|
|
case wimp_SCROLL_PAGE_DOWN:
|
|
|
|
scroll->yscroll -= y;
|
|
|
|
break;
|
2003-12-11 04:23:57 +03:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2003-12-21 05:27:22 +03:00
|
|
|
wimp_open_window((wimp_open *) scroll);
|
2003-12-11 04:23:57 +03:00
|
|
|
}
|
2004-02-25 18:12:58 +03:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert x from screen to window coordinates.
|
|
|
|
*
|
2004-05-05 02:23:44 +04:00
|
|
|
* \param x x coordinate / os units
|
2004-02-25 18:12:58 +03:00
|
|
|
* \param state window state
|
|
|
|
* \return x coordinate in window / os units
|
|
|
|
*/
|
2004-05-05 02:23:44 +04:00
|
|
|
//#define window_x_units(x, state) (x - (state->visible.x0 - state->xscroll))
|
|
|
|
int window_x_units(int x, wimp_window_state *state) {
|
2004-02-25 18:12:58 +03:00
|
|
|
return x - (state->visible.x0 - state->xscroll);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert y from screen to window coordinates.
|
|
|
|
*
|
2004-05-05 02:23:44 +04:00
|
|
|
* \param y y coordinate / os units
|
2004-02-25 18:12:58 +03:00
|
|
|
* \param state window state
|
|
|
|
* \return y coordinate in window / os units
|
|
|
|
*/
|
2004-05-05 02:23:44 +04:00
|
|
|
//#define window_y_units(y, state) (y - (state->visible.y1 - state->yscroll))
|
|
|
|
int window_y_units(int y, wimp_window_state *state) {
|
2004-02-25 18:12:58 +03:00
|
|
|
return y - (state->visible.y1 - state->yscroll);
|
|
|
|
}
|
2004-05-04 02:05:40 +04:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle Message_DataLoad (file dragged in) for a window.
|
|
|
|
*
|
2004-08-07 03:45:21 +04:00
|
|
|
* \param g window
|
2004-05-04 02:05:40 +04:00
|
|
|
* \param message Message_DataLoad block
|
|
|
|
* \return true if the load was processed
|
|
|
|
*
|
|
|
|
* If the file was dragged into a form file input, it is used as the value.
|
|
|
|
*/
|
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
bool ro_gui_window_dataload(struct gui_window *g, wimp_message *message)
|
2004-05-04 02:05:40 +04:00
|
|
|
{
|
2004-07-18 21:38:01 +04:00
|
|
|
int box_x = 0, box_y = 0;
|
2004-05-04 02:05:40 +04:00
|
|
|
int x, y;
|
2004-07-18 21:38:01 +04:00
|
|
|
struct box *box;
|
|
|
|
struct box *file_box = 0;
|
|
|
|
struct browser_window *bw = g->bw;
|
|
|
|
struct content *content;
|
2004-05-04 02:05:40 +04:00
|
|
|
wimp_window_state state;
|
2004-07-18 21:38:01 +04:00
|
|
|
os_error *error;
|
2004-05-04 02:05:40 +04:00
|
|
|
|
|
|
|
/* HTML content only. */
|
|
|
|
if (!bw->current_content || bw->current_content->type != CONTENT_HTML)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
/* Ignore directories etc. */
|
|
|
|
if (0x1000 <= message->data.data_xfer.file_type)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
/* Search for a file input at the drop point. */
|
|
|
|
state.w = message->data.data_xfer.w;
|
2004-07-18 21:38:01 +04:00
|
|
|
error = xwimp_get_window_state(&state);
|
|
|
|
if (error) {
|
|
|
|
LOG(("xwimp_get_window_state: 0x%x: %s\n",
|
|
|
|
error->errnum, error->errmess));
|
|
|
|
warn_user("WimpError", error->errmess);
|
2004-05-04 02:05:40 +04:00
|
|
|
return false;
|
|
|
|
}
|
2004-07-18 21:38:01 +04:00
|
|
|
|
|
|
|
x = window_x_units(message->data.data_xfer.pos.x, &state) / 2 /
|
|
|
|
g->option.scale;
|
|
|
|
y = -window_y_units(message->data.data_xfer.pos.y, &state) / 2 /
|
|
|
|
g->option.scale;
|
|
|
|
|
|
|
|
content = bw->current_content;
|
|
|
|
box = content->data.html.layout;
|
|
|
|
while ((box = box_at_point(box, x, y, &box_x, &box_y, &content))) {
|
|
|
|
if (box->style &&
|
|
|
|
box->style->visibility == CSS_VISIBILITY_HIDDEN)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (box->gadget && box->gadget->type == GADGET_FILE)
|
|
|
|
file_box = box;
|
2004-05-04 02:05:40 +04:00
|
|
|
}
|
|
|
|
|
2004-07-18 21:38:01 +04:00
|
|
|
if (!file_box)
|
|
|
|
return false;
|
|
|
|
|
2004-05-04 02:05:40 +04:00
|
|
|
/* Found: update form input. */
|
2004-07-18 21:38:01 +04:00
|
|
|
free(file_box->gadget->value);
|
|
|
|
file_box->gadget->value =
|
2004-05-04 02:05:40 +04:00
|
|
|
strdup(message->data.data_xfer.file_name);
|
|
|
|
|
|
|
|
/* Redraw box. */
|
2004-07-18 21:38:01 +04:00
|
|
|
box_coords(file_box, &x, &y);
|
2004-05-04 02:05:40 +04:00
|
|
|
gui_window_redraw(bw->window, x, y,
|
2004-07-18 21:38:01 +04:00
|
|
|
x + file_box->width,
|
|
|
|
y + file_box->height);
|
2004-05-04 02:05:40 +04:00
|
|
|
|
|
|
|
/* send DataLoadAck */
|
|
|
|
message->action = message_DATA_LOAD_ACK;
|
|
|
|
message->your_ref = message->my_ref;
|
2004-07-18 21:38:01 +04:00
|
|
|
error = xwimp_send_message(wimp_USER_MESSAGE, message, message->sender);
|
|
|
|
if (error) {
|
|
|
|
LOG(("xwimp_send_message: 0x%x: %s\n",
|
|
|
|
error->errnum, error->errmess));
|
|
|
|
warn_user("WimpError", error->errmess);
|
|
|
|
}
|
2004-05-04 02:05:40 +04:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2004-05-08 22:12:36 +04:00
|
|
|
|
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
/**
|
|
|
|
* Process pending reformats
|
|
|
|
*/
|
|
|
|
|
|
|
|
void ro_gui_window_process_reformats(void)
|
|
|
|
{
|
|
|
|
struct gui_window *g;
|
|
|
|
|
|
|
|
for (g = window_list; g; g = g->next) {
|
|
|
|
if (!g->reformat_pending)
|
|
|
|
continue;
|
|
|
|
content_reformat(g->bw->current_content,
|
|
|
|
g->old_width / 2 / g->option.scale,
|
|
|
|
1000);
|
|
|
|
g->reformat_pending = false;
|
|
|
|
}
|
|
|
|
gui_reformat_pending = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-05-08 22:12:36 +04:00
|
|
|
/**
|
|
|
|
* Clones a browser window's options.
|
|
|
|
*
|
|
|
|
* \param new_bw the new browser window
|
|
|
|
* \param old_bw the browser window to clone from, or NULL for default
|
|
|
|
*/
|
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
void ro_gui_window_clone_options(struct browser_window *new_bw,
|
2004-05-08 22:12:36 +04:00
|
|
|
struct browser_window *old_bw) {
|
2004-07-17 17:00:38 +04:00
|
|
|
struct gui_window *old_gui = NULL;
|
|
|
|
struct gui_window *new_gui;
|
2004-05-08 22:12:36 +04:00
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
assert(new_bw);
|
2004-05-08 22:12:36 +04:00
|
|
|
|
|
|
|
/* Get our GUIs
|
|
|
|
*/
|
|
|
|
new_gui = new_bw->window;
|
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
if (old_bw)
|
|
|
|
old_gui = old_bw->window;
|
2004-05-08 22:12:36 +04:00
|
|
|
|
|
|
|
/* Clone the basic options
|
|
|
|
*/
|
|
|
|
if (!old_gui) {
|
2004-07-17 17:00:38 +04:00
|
|
|
new_gui->option.scale = ((float)option_scale) / 100;
|
|
|
|
new_gui->option.dither_sprites = option_dither_sprites;
|
|
|
|
new_gui->option.filter_sprites = option_filter_sprites;
|
|
|
|
new_gui->option.animate_images = option_animate_images;
|
|
|
|
new_gui->option.background_images = option_background_images;
|
2004-07-21 00:02:59 +04:00
|
|
|
new_gui->option.background_blending = option_background_blending;
|
|
|
|
new_gui->option.buffer_animations = option_buffer_animations;
|
|
|
|
new_gui->option.buffer_everything = option_buffer_everything;
|
2004-05-08 22:12:36 +04:00
|
|
|
} else {
|
2004-07-17 17:00:38 +04:00
|
|
|
new_gui->option = old_gui->option;
|
2004-05-08 22:12:36 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Set up the toolbar
|
|
|
|
*/
|
2004-07-17 17:00:38 +04:00
|
|
|
if (new_gui->toolbar) {
|
2004-08-07 03:45:21 +04:00
|
|
|
if ((old_gui) && (old_gui->toolbar)) {
|
2004-07-17 17:00:38 +04:00
|
|
|
new_gui->toolbar->status_width = old_gui->toolbar->status_width;
|
2004-08-31 01:03:48 +04:00
|
|
|
new_gui->toolbar->display_status = old_gui->toolbar->display_status;
|
|
|
|
new_gui->toolbar->display_buttons = old_gui->toolbar->display_buttons;
|
|
|
|
new_gui->toolbar->display_url = old_gui->toolbar->display_url;
|
|
|
|
new_gui->toolbar->display_throbber = old_gui->toolbar->display_throbber;
|
2004-08-07 03:45:21 +04:00
|
|
|
} else {
|
2004-07-17 17:00:38 +04:00
|
|
|
new_gui->toolbar->status_width = option_toolbar_status_width;
|
2004-08-31 01:03:48 +04:00
|
|
|
new_gui->toolbar->display_status = option_toolbar_show_status;
|
|
|
|
new_gui->toolbar->display_buttons = option_toolbar_show_buttons;
|
|
|
|
new_gui->toolbar->display_url = option_toolbar_show_address;
|
|
|
|
new_gui->toolbar->display_throbber = option_toolbar_show_throbber;
|
2004-05-08 22:12:36 +04:00
|
|
|
}
|
2004-08-31 01:03:48 +04:00
|
|
|
new_gui->toolbar->reformat_buttons = true;
|
|
|
|
ro_gui_theme_process_toolbar(new_gui->toolbar, -1);
|
2004-05-08 22:12:36 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Makes a browser window's options the default.
|
|
|
|
*
|
|
|
|
* \param bw the browser window to read options from
|
|
|
|
*/
|
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
void ro_gui_window_default_options(struct browser_window *bw) {
|
|
|
|
struct gui_window *gui;
|
2004-05-08 22:12:36 +04:00
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
assert(bw);
|
2004-05-08 22:12:36 +04:00
|
|
|
|
|
|
|
/* Get our GUI
|
|
|
|
*/
|
|
|
|
gui = bw->window;
|
|
|
|
if (!gui) return;
|
|
|
|
|
|
|
|
/* Save the basic options
|
|
|
|
*/
|
2004-07-17 17:00:38 +04:00
|
|
|
option_scale = gui->option.scale * 100;
|
|
|
|
option_dither_sprites = gui->option.dither_sprites;
|
|
|
|
option_filter_sprites = gui->option.filter_sprites;
|
|
|
|
option_animate_images = gui->option.animate_images;
|
2004-07-21 00:02:59 +04:00
|
|
|
option_background_blending = gui->option.background_blending;
|
|
|
|
option_buffer_animations = gui->option.buffer_animations;
|
|
|
|
option_buffer_everything = gui->option.buffer_everything;
|
2004-05-08 22:12:36 +04:00
|
|
|
|
|
|
|
/* Set up the toolbar
|
|
|
|
*/
|
2004-07-17 17:00:38 +04:00
|
|
|
if (gui->toolbar) {
|
|
|
|
option_toolbar_status_width = gui->toolbar->status_width;
|
2004-08-31 01:03:48 +04:00
|
|
|
option_toolbar_show_status = gui->toolbar->display_status;
|
|
|
|
option_toolbar_show_buttons = gui->toolbar->display_buttons;
|
|
|
|
option_toolbar_show_address = gui->toolbar->display_url;
|
|
|
|
option_toolbar_show_throbber = gui->toolbar->display_throbber;
|
2004-05-08 22:12:36 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** An entry in ro_gui_pointer_table. */
|
|
|
|
struct ro_gui_pointer_entry {
|
|
|
|
bool wimp_area; /** The pointer is in the Wimp's sprite area. */
|
|
|
|
char sprite_name[12];
|
|
|
|
int xactive;
|
|
|
|
int yactive;
|
|
|
|
};
|
|
|
|
|
|
|
|
/** Map from gui_pointer_shape to pointer sprite data. Must be ordered as
|
|
|
|
* enum gui_pointer_shape. */
|
|
|
|
struct ro_gui_pointer_entry ro_gui_pointer_table[] = {
|
|
|
|
{ true, "ptr_default", 0, 0 },
|
|
|
|
{ false, "ptr_point", 6, 0 },
|
|
|
|
{ false, "ptr_caret", 4, 9 },
|
|
|
|
{ false, "ptr_menu", 6, 4 },
|
|
|
|
{ false, "ptr_ud", 6, 7 },
|
|
|
|
{ false, "ptr_lr", 7, 6 },
|
|
|
|
{ false, "ptr_ld", 7, 7 },
|
|
|
|
{ false, "ptr_rd", 7, 7 },
|
|
|
|
{ false, "ptr_cross", 7, 7 },
|
|
|
|
{ false, "ptr_move", 8, 0 },
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Change mouse pointer shape
|
|
|
|
*/
|
|
|
|
|
|
|
|
void gui_window_set_pointer(gui_pointer_shape shape)
|
|
|
|
{
|
|
|
|
static gui_pointer_shape curr_pointer = GUI_POINTER_DEFAULT;
|
|
|
|
struct ro_gui_pointer_entry *entry;
|
|
|
|
os_error *error;
|
|
|
|
|
|
|
|
if (shape == curr_pointer)
|
|
|
|
return;
|
|
|
|
|
|
|
|
assert(shape < sizeof ro_gui_pointer_table /
|
|
|
|
sizeof ro_gui_pointer_table[0]);
|
|
|
|
|
|
|
|
entry = &ro_gui_pointer_table[shape];
|
|
|
|
|
|
|
|
if (entry->wimp_area) {
|
|
|
|
/* pointer in the Wimp's sprite area */
|
|
|
|
error = xwimpspriteop_set_pointer_shape(entry->sprite_name,
|
|
|
|
1, entry->xactive, entry->yactive, 0, 0);
|
|
|
|
if (error) {
|
|
|
|
LOG(("xwimpspriteop_set_pointer_shape: 0x%x: %s",
|
|
|
|
error->errnum, error->errmess));
|
|
|
|
warn_user("WimpError", error->errmess);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* pointer in our own sprite area */
|
|
|
|
error = xosspriteop_set_pointer_shape(osspriteop_USER_AREA,
|
2004-06-30 03:13:40 +04:00
|
|
|
gui_sprites,
|
2004-05-08 22:12:36 +04:00
|
|
|
(osspriteop_id) entry->sprite_name,
|
|
|
|
1, entry->xactive, entry->yactive, 0, 0);
|
|
|
|
if (error) {
|
|
|
|
LOG(("xosspriteop_set_pointer_shape: 0x%x: %s",
|
|
|
|
error->errnum, error->errmess));
|
|
|
|
warn_user("WimpError", error->errmess);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
curr_pointer = shape;
|
|
|
|
}
|
2004-07-17 17:00:38 +04:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Called when the gui_window has new content.
|
|
|
|
*
|
|
|
|
* \param g the gui_window that has new content
|
|
|
|
*/
|
|
|
|
|
|
|
|
void gui_window_new_content(struct gui_window *g)
|
|
|
|
{
|
2004-07-26 00:45:16 +04:00
|
|
|
ro_gui_prepare_navigate(g);
|
2004-07-17 17:00:38 +04:00
|
|
|
ro_gui_dialog_close_persistant(g->window);
|
|
|
|
}
|