2003-06-30 16:44:03 +04:00
|
|
|
/*
|
|
|
|
* This file is part of NetSurf, http://netsurf.sourceforge.net/
|
|
|
|
* Licensed under the GNU General Public License,
|
|
|
|
* http://www.opensource.org/licenses/gpl-license
|
|
|
|
* Copyright 2003 Phil Mellor <monkeyson@users.sourceforge.net>
|
2004-02-25 18:12:58 +03:00
|
|
|
* Copyright 2004 James Bursa <bursa@users.sourceforge.net>
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** \file
|
|
|
|
* Browser window creation and manipulation (implementation).
|
2002-09-11 18:24:02 +04:00
|
|
|
*/
|
|
|
|
|
2003-07-18 03:01:02 +04:00
|
|
|
#include <assert.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <limits.h>
|
2003-10-09 19:23:10 +04:00
|
|
|
#include <stdbool.h>
|
2003-07-18 03:01:02 +04:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <time.h>
|
2004-01-05 05:10:59 +03:00
|
|
|
#include "netsurf/utils/config.h"
|
2003-02-09 15:58:15 +03:00
|
|
|
#include "netsurf/content/fetchcache.h"
|
2003-10-11 18:33:35 +04:00
|
|
|
#include "netsurf/css/css.h"
|
2004-01-05 05:10:59 +03:00
|
|
|
#ifdef WITH_AUTH
|
2003-10-25 23:20:13 +04:00
|
|
|
#include "netsurf/desktop/401login.h"
|
2004-01-05 05:10:59 +03:00
|
|
|
#endif
|
2003-02-09 15:58:15 +03:00
|
|
|
#include "netsurf/desktop/browser.h"
|
2004-03-27 01:16:31 +03:00
|
|
|
#include "netsurf/desktop/imagemap.h"
|
2002-09-11 18:24:02 +04:00
|
|
|
#include "netsurf/render/box.h"
|
2003-07-18 03:01:02 +04:00
|
|
|
#include "netsurf/render/font.h"
|
2003-10-25 04:35:49 +04:00
|
|
|
#include "netsurf/render/form.h"
|
2003-09-23 22:35:44 +04:00
|
|
|
#include "netsurf/render/layout.h"
|
2002-12-23 23:06:21 +03:00
|
|
|
#include "netsurf/utils/log.h"
|
2003-10-02 02:48:39 +04:00
|
|
|
#include "netsurf/utils/messages.h"
|
2004-03-02 21:02:41 +03:00
|
|
|
#include "netsurf/utils/url.h"
|
2003-02-09 15:58:15 +03:00
|
|
|
#include "netsurf/utils/utils.h"
|
2002-09-11 18:24:02 +04:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
|
|
|
|
static void browser_window_callback(content_msg msg, struct content *c,
|
|
|
|
void *p1, void *p2, const char *error);
|
|
|
|
static void browser_window_convert_to_download(struct browser_window *bw,
|
|
|
|
content_msg msg);
|
|
|
|
static void browser_window_start_throbber(struct browser_window *bw);
|
|
|
|
static void browser_window_stop_throbber(struct browser_window *bw);
|
|
|
|
static void browser_window_update(struct browser_window *bw,
|
|
|
|
bool scroll_to_top);
|
|
|
|
static void browser_window_set_status(struct browser_window *bw,
|
|
|
|
const char *text);
|
2004-04-01 04:26:05 +04:00
|
|
|
static void browser_window_set_pointer(gui_pointer_shape shape);
|
2004-02-25 18:12:58 +03:00
|
|
|
static void download_window_callback(content_msg msg, struct content *c,
|
|
|
|
void *p1, void *p2, const char *error);
|
|
|
|
|
2003-03-04 14:59:36 +03:00
|
|
|
static void browser_window_text_selection(struct browser_window* bw,
|
2003-03-04 01:40:39 +03:00
|
|
|
unsigned long click_x, unsigned long click_y, int click_type);
|
2003-03-04 14:59:36 +03:00
|
|
|
static void browser_window_clear_text_selection(struct browser_window* bw);
|
|
|
|
static void browser_window_change_text_selection(struct browser_window* bw, struct box_position* new_start, struct box_position* new_end);
|
|
|
|
static int redraw_box_list(struct browser_window* bw, struct box* current,
|
2003-03-04 01:40:39 +03:00
|
|
|
unsigned long x, unsigned long y, struct box_position* start,
|
|
|
|
struct box_position* end, int* plot);
|
2003-03-04 14:59:36 +03:00
|
|
|
static void browser_window_redraw_boxes(struct browser_window* bw, struct box_position* start, struct box_position* end);
|
|
|
|
static void browser_window_follow_link(struct browser_window* bw,
|
2003-03-04 01:40:39 +03:00
|
|
|
unsigned long click_x, unsigned long click_y, int click_type);
|
2003-10-25 04:35:49 +04:00
|
|
|
static void clear_radio_gadgets(struct browser_window* bw, struct box* box, struct form_control* group);
|
|
|
|
static void gui_redraw_gadget2(struct browser_window* bw, struct box* box, struct form_control* g,
|
2003-03-04 01:40:39 +03:00
|
|
|
unsigned long x, unsigned long y);
|
2003-10-25 04:35:49 +04:00
|
|
|
static void browser_window_gadget_select(struct browser_window* bw, struct form_control* g, int item);
|
2003-03-04 14:59:36 +03:00
|
|
|
static int browser_window_gadget_click(struct browser_window* bw, unsigned long click_x, unsigned long click_y);
|
2003-10-25 04:35:49 +04:00
|
|
|
static void browser_form_submit(struct browser_window *bw, struct form *form,
|
|
|
|
struct form_control *submit_button);
|
2003-09-23 01:55:08 +04:00
|
|
|
static void browser_window_textarea_click(struct browser_window* bw,
|
|
|
|
unsigned long actual_x, unsigned long actual_y,
|
2003-09-29 20:32:17 +04:00
|
|
|
long x, long y,
|
2003-09-23 01:55:08 +04:00
|
|
|
struct box *box);
|
|
|
|
static void browser_window_textarea_callback(struct browser_window *bw, char key, void *p);
|
2003-09-29 03:41:07 +04:00
|
|
|
static void browser_window_input_click(struct browser_window* bw,
|
|
|
|
unsigned long actual_x, unsigned long actual_y,
|
|
|
|
unsigned long x, unsigned long y,
|
|
|
|
struct box *input);
|
|
|
|
static void browser_window_input_callback(struct browser_window *bw, char key, void *p);
|
2003-09-23 01:55:08 +04:00
|
|
|
static void browser_window_place_caret(struct browser_window *bw, int x, int y,
|
|
|
|
int height, void (*callback)(struct browser_window *bw, char key, void *p), void *p);
|
2002-09-11 18:24:02 +04:00
|
|
|
|
2003-02-09 15:58:15 +03:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
/**
|
|
|
|
* Create and open a new browser window with the given page.
|
|
|
|
*
|
|
|
|
* \param url URL to start fetching in the new window (copied)
|
|
|
|
*/
|
2002-10-15 14:41:12 +04:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
void browser_window_create(const char *url)
|
2002-10-15 14:41:12 +04:00
|
|
|
{
|
2004-02-25 18:12:58 +03:00
|
|
|
struct browser_window *bw;
|
2002-09-11 18:24:02 +04:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
bw = malloc(sizeof *bw);
|
|
|
|
if (!bw) {
|
|
|
|
warn_user("NoMemory");
|
|
|
|
return;
|
|
|
|
}
|
2002-09-11 18:24:02 +04:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
bw->current_content = 0;
|
|
|
|
bw->loading_content = 0;
|
|
|
|
bw->history = history_create();
|
|
|
|
bw->throbbing = false;
|
|
|
|
bw->caret_callback = 0;
|
|
|
|
bw->window = gui_create_browser_window(bw);
|
|
|
|
if (!bw->window) {
|
|
|
|
free(bw);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
browser_window_go(bw, url);
|
2002-09-11 18:24:02 +04:00
|
|
|
}
|
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Start fetching a page in a browser window.
|
|
|
|
*
|
|
|
|
* \param bw browser window
|
|
|
|
* \param url URL to start fetching (copied)
|
|
|
|
*
|
|
|
|
* Any existing fetches in the window are aborted.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void browser_window_go(struct browser_window *bw, const char *url)
|
2002-10-15 14:41:12 +04:00
|
|
|
{
|
2004-02-25 18:12:58 +03:00
|
|
|
browser_window_go_post(bw, url, 0, 0, true);
|
2002-10-15 14:41:12 +04:00
|
|
|
}
|
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Start fetching a page in a browser window, POSTing form data.
|
|
|
|
*
|
|
|
|
* \param bw browser window
|
|
|
|
* \param url URL to start fetching (copied)
|
|
|
|
* \param post_urlenc url encoded post data, or 0 if none
|
|
|
|
* \param post_multipart multipart post data, or 0 if none
|
|
|
|
* \param history_add add to window history
|
|
|
|
*
|
|
|
|
* Any existing fetches in the window are aborted.
|
|
|
|
*
|
|
|
|
* If post_urlenc and post_multipart are 0 the url is fetched using GET.
|
|
|
|
*
|
|
|
|
* The page is not added to the window history if add_history is false. This
|
|
|
|
* should be used when returning to a page in the window history.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void browser_window_go_post(struct browser_window *bw, const char *url,
|
|
|
|
char *post_urlenc,
|
|
|
|
struct form_successful_control *post_multipart,
|
|
|
|
bool history_add)
|
2002-10-15 14:41:12 +04:00
|
|
|
{
|
2004-02-25 18:12:58 +03:00
|
|
|
struct content *c;
|
2004-03-10 23:45:27 +03:00
|
|
|
char *url2;
|
|
|
|
|
|
|
|
url2 = url_normalize(url);
|
|
|
|
if (!url2) {
|
|
|
|
LOG(("failed to normalize url %s", url));
|
|
|
|
return;
|
|
|
|
}
|
2004-02-25 18:12:58 +03:00
|
|
|
|
|
|
|
browser_window_stop(bw);
|
|
|
|
|
2004-02-27 20:45:19 +03:00
|
|
|
browser_window_set_status(bw, messages_get("Loading"));
|
2004-02-25 18:12:58 +03:00
|
|
|
bw->history_add = history_add;
|
|
|
|
bw->time0 = clock();
|
2004-04-02 04:41:10 +04:00
|
|
|
if (strncmp(url2, "about:", 6) == 0) {
|
2004-03-10 23:45:27 +03:00
|
|
|
c = about_create(url2, browser_window_callback, bw, 0,
|
2004-03-02 21:02:41 +03:00
|
|
|
gui_window_get_width(bw->window), 0);
|
2004-04-02 04:41:10 +04:00
|
|
|
}
|
|
|
|
/* check that we can handle the URL - just http/https/file for now */
|
|
|
|
else if (strncmp(url2, "http:", 5) != 0 && strncmp(url2, "https:", 6) != 0 &&
|
|
|
|
strncmp(url2, "file:", 5) != 0) {
|
|
|
|
gui_launch_url(url2);
|
|
|
|
browser_window_set_status(bw, messages_get("LaunchURL"));
|
|
|
|
free(url2);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else {
|
2004-03-10 23:45:27 +03:00
|
|
|
c = fetchcache(url2, 0,
|
2004-03-02 21:02:41 +03:00
|
|
|
browser_window_callback, bw, 0,
|
|
|
|
gui_window_get_width(bw->window), 0,
|
|
|
|
false,
|
|
|
|
post_urlenc, post_multipart,
|
|
|
|
true);
|
2004-04-02 04:41:10 +04:00
|
|
|
}
|
2004-03-10 23:45:27 +03:00
|
|
|
free(url2);
|
2004-02-25 18:12:58 +03:00
|
|
|
if (!c) {
|
2004-02-27 20:45:19 +03:00
|
|
|
browser_window_set_status(bw, messages_get("FetchFailed"));
|
2004-02-25 18:12:58 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
bw->loading_content = c;
|
|
|
|
browser_window_start_throbber(bw);
|
|
|
|
|
|
|
|
if (c->status == CONTENT_STATUS_READY) {
|
|
|
|
browser_window_callback(CONTENT_MSG_READY, c, bw, 0, 0);
|
|
|
|
|
|
|
|
} else if (c->status == CONTENT_STATUS_DONE) {
|
|
|
|
browser_window_callback(CONTENT_MSG_READY, c, bw, 0, 0);
|
|
|
|
if (c->type == CONTENT_OTHER)
|
|
|
|
download_window_callback(CONTENT_MSG_DONE, c, bw, 0, 0);
|
|
|
|
else
|
|
|
|
browser_window_callback(CONTENT_MSG_DONE, c, bw, 0, 0);
|
|
|
|
}
|
2002-09-11 18:24:02 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
/**
|
|
|
|
* Callback for fetchcache() for browser window fetches.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void browser_window_callback(content_msg msg, struct content *c,
|
|
|
|
void *p1, void *p2, const char *error)
|
2002-09-11 18:24:02 +04:00
|
|
|
{
|
2004-02-25 18:12:58 +03:00
|
|
|
struct browser_window *bw = p1;
|
2004-03-21 16:55:51 +03:00
|
|
|
struct box *box;
|
2004-02-25 18:12:58 +03:00
|
|
|
char status[40];
|
2002-09-11 18:24:02 +04:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
if (c->type == CONTENT_OTHER) {
|
|
|
|
browser_window_convert_to_download(bw, msg);
|
|
|
|
return;
|
|
|
|
}
|
2002-09-11 18:24:02 +04:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
switch (msg) {
|
|
|
|
case CONTENT_MSG_LOADING:
|
|
|
|
break;
|
2002-09-11 18:24:02 +04:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
case CONTENT_MSG_READY:
|
|
|
|
assert(bw->loading_content == c);
|
|
|
|
|
|
|
|
if (bw->current_content) {
|
|
|
|
if (bw->current_content->status ==
|
|
|
|
CONTENT_STATUS_DONE)
|
|
|
|
content_remove_instance(
|
|
|
|
bw->current_content,
|
|
|
|
bw, 0, 0,
|
|
|
|
0,
|
|
|
|
&bw->current_content_state);
|
|
|
|
content_remove_user(bw->current_content,
|
|
|
|
browser_window_callback,
|
|
|
|
bw, 0);
|
|
|
|
}
|
|
|
|
bw->current_content = c;
|
|
|
|
bw->loading_content = 0;
|
|
|
|
bw->caret_callback = 0;
|
|
|
|
gui_window_set_url(bw->window, c->url);
|
|
|
|
browser_window_update(bw, true);
|
|
|
|
browser_window_set_status(bw, c->status_message);
|
|
|
|
if (bw->history_add)
|
|
|
|
history_add(bw->history, c);
|
|
|
|
break;
|
2002-09-11 18:24:02 +04:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
case CONTENT_MSG_DONE:
|
|
|
|
assert(bw->current_content == c);
|
|
|
|
|
|
|
|
content_add_instance(c, bw, 0, 0, 0,
|
|
|
|
&bw->current_content_state);
|
|
|
|
browser_window_update(bw, false);
|
|
|
|
content_reshape_instance(c, bw, 0, 0, 0,
|
|
|
|
&bw->current_content_state);
|
2004-02-27 20:45:19 +03:00
|
|
|
sprintf(status, messages_get("Complete"),
|
2004-02-25 18:12:58 +03:00
|
|
|
((float) (clock() - bw->time0)) /
|
|
|
|
CLOCKS_PER_SEC);
|
|
|
|
browser_window_set_status(bw, status);
|
|
|
|
browser_window_stop_throbber(bw);
|
|
|
|
history_update(bw->history, c);
|
|
|
|
break;
|
2002-09-11 18:24:02 +04:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
case CONTENT_MSG_ERROR:
|
|
|
|
browser_window_set_status(bw, error);
|
|
|
|
if (c == bw->loading_content)
|
|
|
|
bw->loading_content = 0;
|
|
|
|
else if (c == bw->current_content)
|
|
|
|
bw->current_content = 0;
|
|
|
|
browser_window_stop_throbber(bw);
|
|
|
|
break;
|
2003-12-22 01:10:15 +03:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
case CONTENT_MSG_STATUS:
|
|
|
|
browser_window_set_status(bw, c->status_message);
|
|
|
|
break;
|
2003-12-22 01:10:15 +03:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
case CONTENT_MSG_REDIRECT:
|
|
|
|
bw->loading_content = 0;
|
2004-02-27 20:45:19 +03:00
|
|
|
browser_window_set_status(bw,
|
|
|
|
messages_get("Redirecting"));
|
2004-02-25 18:12:58 +03:00
|
|
|
/* error actually holds the new URL */
|
|
|
|
browser_window_go(bw, error);
|
|
|
|
break;
|
2003-12-30 02:09:39 +03:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
case CONTENT_MSG_REFORMAT:
|
|
|
|
browser_window_update(bw, false);
|
|
|
|
break;
|
2003-12-30 02:09:39 +03:00
|
|
|
|
2004-03-21 15:50:10 +03:00
|
|
|
case CONTENT_MSG_REDRAW:
|
2004-03-21 16:55:51 +03:00
|
|
|
/* error actually holds the box */
|
|
|
|
box = (struct box *) error;
|
|
|
|
if (box) {
|
|
|
|
int x, y;
|
|
|
|
box_coords(box, &x, &y);
|
|
|
|
gui_window_update_box(bw->window, x, y,
|
|
|
|
x + box->width,
|
|
|
|
y + box->height);
|
|
|
|
} else
|
|
|
|
gui_window_redraw_window(bw->window);
|
2004-03-21 15:50:10 +03:00
|
|
|
break;
|
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
#ifdef WITH_AUTH
|
|
|
|
case CONTENT_MSG_AUTH:
|
|
|
|
gui_401login_open(bw, c, error);
|
|
|
|
if (c == bw->loading_content)
|
|
|
|
bw->loading_content = 0;
|
|
|
|
else if (c == bw->current_content)
|
|
|
|
bw->current_content = 0;
|
|
|
|
browser_window_stop_throbber(bw);
|
|
|
|
break;
|
2003-12-30 02:09:39 +03:00
|
|
|
#endif
|
2002-09-11 18:24:02 +04:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
default:
|
|
|
|
assert(0);
|
|
|
|
}
|
2002-09-11 18:24:02 +04:00
|
|
|
}
|
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Transfer the loading_content to a new download window.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void browser_window_convert_to_download(struct browser_window *bw,
|
|
|
|
content_msg msg)
|
2002-09-11 18:24:02 +04:00
|
|
|
{
|
2004-02-25 18:12:58 +03:00
|
|
|
gui_window *download_window;
|
|
|
|
struct content *c = bw->loading_content;
|
|
|
|
assert(c);
|
|
|
|
|
|
|
|
/* create download window and add content to it */
|
|
|
|
download_window = gui_create_download_window(c);
|
|
|
|
content_add_user(c, download_window_callback, download_window, 0);
|
|
|
|
|
|
|
|
if (msg == CONTENT_MSG_DONE)
|
|
|
|
download_window_callback(CONTENT_MSG_DONE, c, download_window,
|
|
|
|
0, 0);
|
|
|
|
|
|
|
|
/* remove content from browser window */
|
|
|
|
bw->loading_content = 0;
|
|
|
|
content_remove_user(c, browser_window_callback, bw, 0);
|
|
|
|
browser_window_stop_throbber(bw);
|
2002-09-11 18:24:02 +04:00
|
|
|
}
|
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Start the busy indicator.
|
|
|
|
*
|
|
|
|
* \param bw browser window
|
|
|
|
*/
|
|
|
|
|
|
|
|
void browser_window_start_throbber(struct browser_window *bw)
|
2002-09-11 18:24:02 +04:00
|
|
|
{
|
2004-02-25 18:12:58 +03:00
|
|
|
bw->throbbing = true;
|
|
|
|
gui_window_start_throbber(bw->window);
|
|
|
|
}
|
2003-12-22 01:10:15 +03:00
|
|
|
|
2002-09-11 18:24:02 +04:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
/**
|
|
|
|
* Stop the busy indicator.
|
|
|
|
*
|
|
|
|
* \param bw browser window
|
|
|
|
*/
|
2002-09-11 18:24:02 +04:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
void browser_window_stop_throbber(struct browser_window *bw)
|
|
|
|
{
|
|
|
|
bw->throbbing = false;
|
|
|
|
gui_window_stop_throbber(bw->window);
|
|
|
|
}
|
2004-01-05 05:10:59 +03:00
|
|
|
|
2002-09-11 18:24:02 +04:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
/**
|
|
|
|
* Redraw browser window, set extent to content, and update title.
|
|
|
|
*
|
|
|
|
* \param bw browser_window
|
|
|
|
* \param scroll_to_top move view to top of page
|
|
|
|
*/
|
2004-01-05 05:10:59 +03:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
void browser_window_update(struct browser_window *bw,
|
|
|
|
bool scroll_to_top)
|
|
|
|
{
|
|
|
|
if (!bw->current_content)
|
|
|
|
return;
|
2004-01-05 05:10:59 +03:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
if (bw->current_content->title)
|
|
|
|
gui_window_set_title(bw->window, bw->current_content->title);
|
|
|
|
else
|
|
|
|
gui_window_set_title(bw->window, bw->current_content->url);
|
2004-01-05 05:10:59 +03:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
gui_window_set_extent(bw->window, bw->current_content->width,
|
|
|
|
bw->current_content->height);
|
2004-01-05 05:10:59 +03:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
if (scroll_to_top)
|
|
|
|
gui_window_set_scroll(bw->window, 0, 0);
|
|
|
|
|
|
|
|
gui_window_redraw_window(bw->window);
|
2002-09-11 18:24:02 +04:00
|
|
|
}
|
|
|
|
|
2002-12-23 23:06:21 +03:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
/**
|
|
|
|
* Stop all fetching activity in a browser window.
|
|
|
|
*
|
|
|
|
* \param bw browser window
|
|
|
|
*/
|
2002-09-11 18:24:02 +04:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
void browser_window_stop(struct browser_window *bw)
|
|
|
|
{
|
|
|
|
if (bw->loading_content) {
|
|
|
|
content_remove_user(bw->loading_content,
|
|
|
|
browser_window_callback, bw, 0);
|
|
|
|
bw->loading_content = 0;
|
|
|
|
}
|
2003-12-28 19:17:31 +03:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
if (bw->current_content &&
|
|
|
|
bw->current_content->status != CONTENT_STATUS_DONE) {
|
|
|
|
assert(bw->current_content->status == CONTENT_STATUS_READY);
|
|
|
|
/** \todo implement content_stop */
|
|
|
|
}
|
2003-12-22 01:10:15 +03:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
browser_window_stop_throbber(bw);
|
|
|
|
}
|
2003-10-25 23:20:13 +04:00
|
|
|
|
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
/**
|
|
|
|
* Change the status bar of a browser window.
|
|
|
|
*
|
|
|
|
* \param bw browser window
|
|
|
|
* \param text new status text (copied)
|
|
|
|
*/
|
|
|
|
|
|
|
|
void browser_window_set_status(struct browser_window *bw, const char *text)
|
|
|
|
{
|
|
|
|
gui_window_set_status(bw->window, text);
|
2002-09-11 18:24:02 +04:00
|
|
|
}
|
|
|
|
|
2004-04-01 04:26:05 +04:00
|
|
|
/**
|
|
|
|
* Change the shape of the mouse pointer
|
|
|
|
*
|
|
|
|
* \param shape shape to use
|
|
|
|
*/
|
|
|
|
|
|
|
|
void browser_window_set_pointer(gui_pointer_shape shape)
|
|
|
|
{
|
|
|
|
gui_window_set_pointer(shape);
|
|
|
|
}
|
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Close and destroy a browser window.
|
|
|
|
*
|
|
|
|
* \param bw browser window
|
|
|
|
*/
|
|
|
|
|
|
|
|
void browser_window_destroy(struct browser_window *bw)
|
2003-10-25 18:13:49 +04:00
|
|
|
{
|
2004-02-25 18:12:58 +03:00
|
|
|
if (bw->loading_content) {
|
|
|
|
content_remove_user(bw->loading_content,
|
|
|
|
browser_window_callback, bw, 0);
|
|
|
|
bw->loading_content = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bw->current_content) {
|
|
|
|
if (bw->current_content->status == CONTENT_STATUS_DONE)
|
|
|
|
content_remove_instance(bw->current_content, bw, 0,
|
|
|
|
0, 0, &bw->current_content_state);
|
|
|
|
content_remove_user(bw->current_content,
|
|
|
|
browser_window_callback, bw, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
history_destroy(bw->history);
|
|
|
|
gui_window_destroy(bw->window);
|
|
|
|
|
|
|
|
free(bw);
|
2003-10-25 18:13:49 +04:00
|
|
|
}
|
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Callback for fetchcache() for download window fetches.
|
|
|
|
*/
|
2002-09-11 18:24:02 +04:00
|
|
|
|
2003-08-28 23:21:27 +04:00
|
|
|
void download_window_callback(content_msg msg, struct content *c,
|
|
|
|
void *p1, void *p2, const char *error)
|
|
|
|
{
|
|
|
|
gui_window *download_window = p1;
|
|
|
|
|
|
|
|
switch (msg) {
|
|
|
|
case CONTENT_MSG_STATUS:
|
|
|
|
gui_download_window_update_status(download_window);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CONTENT_MSG_DONE:
|
|
|
|
gui_download_window_done(download_window);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CONTENT_MSG_ERROR:
|
|
|
|
gui_download_window_error(download_window, error);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CONTENT_MSG_READY:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CONTENT_MSG_LOADING:
|
|
|
|
case CONTENT_MSG_REDIRECT:
|
2004-02-25 18:12:58 +03:00
|
|
|
/* not possible at this point, handled in
|
|
|
|
browser_window_callback() */
|
2003-08-28 23:21:27 +04:00
|
|
|
assert(0);
|
|
|
|
break;
|
2003-09-11 01:44:11 +04:00
|
|
|
|
|
|
|
case CONTENT_MSG_REFORMAT:
|
|
|
|
break;
|
2003-12-27 04:06:46 +03:00
|
|
|
|
2004-03-21 15:50:10 +03:00
|
|
|
case CONTENT_MSG_REDRAW:
|
|
|
|
break;
|
|
|
|
|
2004-01-05 05:10:59 +03:00
|
|
|
#ifdef WITH_AUTH
|
2003-12-27 04:06:46 +03:00
|
|
|
case CONTENT_MSG_AUTH:
|
|
|
|
break;
|
2004-01-05 05:10:59 +03:00
|
|
|
#endif
|
2003-08-28 23:21:27 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
void clear_radio_gadgets(struct browser_window *bw, struct box *box,
|
|
|
|
struct form_control *group)
|
2002-12-31 01:56:30 +03:00
|
|
|
{
|
2004-02-25 18:12:58 +03:00
|
|
|
struct box *c;
|
2002-12-31 01:56:30 +03:00
|
|
|
if (box == NULL)
|
|
|
|
return;
|
2004-02-25 18:12:58 +03:00
|
|
|
if (box->gadget != 0) {
|
|
|
|
if (box->gadget->type == GADGET_RADIO
|
|
|
|
&& box->gadget->name != 0 && box->gadget != group) {
|
|
|
|
if (strcmp(box->gadget->name, group->name) == 0) {
|
|
|
|
if (box->gadget->data.radio.selected) {
|
|
|
|
box->gadget->data.radio.selected =
|
|
|
|
0;
|
2002-12-31 01:56:30 +03:00
|
|
|
gui_redraw_gadget(bw, box->gadget);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2004-02-25 18:12:58 +03:00
|
|
|
for (c = box->children; c != 0; c = c->next)
|
|
|
|
if (c->type != BOX_FLOAT_LEFT
|
|
|
|
&& c->type != BOX_FLOAT_RIGHT)
|
|
|
|
clear_radio_gadgets(bw, c, group);
|
2002-12-31 01:56:30 +03:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
for (c = box->float_children; c != 0; c = c->next_float)
|
|
|
|
clear_radio_gadgets(bw, c, group);
|
2002-12-31 01:56:30 +03:00
|
|
|
}
|
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
void gui_redraw_gadget2(struct browser_window *bw, struct box *box,
|
|
|
|
struct form_control *g, unsigned long x,
|
|
|
|
unsigned long y)
|
2002-12-31 01:56:30 +03:00
|
|
|
{
|
2004-02-25 18:12:58 +03:00
|
|
|
struct box *c;
|
2002-12-31 01:56:30 +03:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
if (box->gadget == g) {
|
|
|
|
gui_window_redraw(bw->window, x + box->x, y + box->y,
|
|
|
|
x + box->x + box->width,
|
|
|
|
y + box->y + box->height);
|
2002-12-31 01:56:30 +03:00
|
|
|
}
|
2003-04-12 16:38:32 +04:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
for (c = box->children; c != 0; c = c->next)
|
|
|
|
if (c->type != BOX_FLOAT_LEFT
|
|
|
|
&& c->type != BOX_FLOAT_RIGHT)
|
|
|
|
gui_redraw_gadget2(bw, c, g, box->x + x,
|
|
|
|
box->y + y);
|
2002-12-31 01:56:30 +03:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
for (c = box->float_children; c != 0; c = c->next_float)
|
|
|
|
gui_redraw_gadget2(bw, c, g, box->x + x, box->y + y);
|
2002-12-31 01:56:30 +03:00
|
|
|
}
|
|
|
|
|
2003-10-25 04:35:49 +04:00
|
|
|
void gui_redraw_gadget(struct browser_window* bw, struct form_control* g)
|
2002-12-31 01:56:30 +03:00
|
|
|
{
|
2003-02-26 00:00:27 +03:00
|
|
|
assert(bw->current_content->type == CONTENT_HTML);
|
2002-12-31 01:56:30 +03:00
|
|
|
gui_redraw_gadget2(bw, bw->current_content->data.html.layout->children, g, 0, 0);
|
|
|
|
}
|
|
|
|
|
2003-10-25 04:35:49 +04:00
|
|
|
void browser_window_gadget_select(struct browser_window* bw, struct form_control* g, int item)
|
2002-12-31 01:56:30 +03:00
|
|
|
{
|
2003-10-25 04:35:49 +04:00
|
|
|
struct form_option* o;
|
2002-12-31 01:56:30 +03:00
|
|
|
int count;
|
2003-10-02 02:48:39 +04:00
|
|
|
struct box *inline_box = g->box->children->children;
|
|
|
|
int x, y;
|
|
|
|
|
|
|
|
for (count = 0, o = g->data.select.items;
|
|
|
|
o != NULL;
|
|
|
|
count++, o = o->next) {
|
|
|
|
if (!g->data.select.multiple)
|
|
|
|
o->selected = false;
|
|
|
|
if (count == item) {
|
|
|
|
if (g->data.select.multiple) {
|
|
|
|
if (o->selected) {
|
|
|
|
o->selected = false;
|
|
|
|
g->data.select.num_selected--;
|
|
|
|
} else {
|
|
|
|
o->selected = true;
|
|
|
|
g->data.select.num_selected++;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
o->selected = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (o->selected)
|
|
|
|
g->data.select.current = o;
|
2002-12-31 01:56:30 +03:00
|
|
|
}
|
|
|
|
|
2003-10-02 02:48:39 +04:00
|
|
|
xfree(inline_box->text);
|
|
|
|
if (g->data.select.num_selected == 0)
|
|
|
|
inline_box->text = xstrdup(messages_get("Form_None"));
|
|
|
|
else if (g->data.select.num_selected == 1)
|
|
|
|
inline_box->text = xstrdup(g->data.select.current->text);
|
|
|
|
else
|
|
|
|
inline_box->text = xstrdup(messages_get("Form_Many"));
|
|
|
|
inline_box->width = g->box->width;
|
|
|
|
inline_box->length = strlen(inline_box->text);
|
|
|
|
|
2003-12-27 04:06:46 +03:00
|
|
|
box_coords(g->box, (unsigned long*)&x, (unsigned long*)&y);
|
|
|
|
gui_window_redraw(bw->window, (unsigned int)x, (unsigned int)y,
|
|
|
|
(unsigned int)(x + g->box->width),
|
|
|
|
(unsigned int)(y + g->box->height));
|
2002-12-31 01:56:30 +03:00
|
|
|
}
|
|
|
|
|
2003-03-04 01:40:39 +03:00
|
|
|
int browser_window_gadget_click(struct browser_window* bw, unsigned long click_x, unsigned long click_y)
|
2002-12-31 01:56:30 +03:00
|
|
|
{
|
|
|
|
struct box_selection* click_boxes;
|
|
|
|
int found, plot_index;
|
|
|
|
int i;
|
2003-09-09 23:25:28 +04:00
|
|
|
unsigned long x, y;
|
2002-12-31 01:56:30 +03:00
|
|
|
|
|
|
|
found = 0;
|
|
|
|
click_boxes = NULL;
|
|
|
|
plot_index = 0;
|
|
|
|
|
2003-02-26 00:00:27 +03:00
|
|
|
assert(bw->current_content->type == CONTENT_HTML);
|
2002-12-31 01:56:30 +03:00
|
|
|
box_under_area(bw->current_content->data.html.layout->children,
|
|
|
|
click_x, click_y, 0, 0, &click_boxes, &found, &plot_index);
|
|
|
|
|
|
|
|
if (found == 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
for (i = found - 1; i >= 0; i--)
|
|
|
|
{
|
2003-10-11 18:33:35 +04:00
|
|
|
if (click_boxes[i].box->style->visibility == CSS_VISIBILITY_HIDDEN)
|
|
|
|
continue;
|
|
|
|
|
2003-09-23 01:55:08 +04:00
|
|
|
if (click_boxes[i].box->gadget)
|
2002-12-31 01:56:30 +03:00
|
|
|
{
|
2003-10-25 04:35:49 +04:00
|
|
|
struct form_control* g = click_boxes[i].box->gadget;
|
2002-12-31 01:56:30 +03:00
|
|
|
|
|
|
|
/* gadget clicked */
|
|
|
|
switch (g->type)
|
|
|
|
{
|
|
|
|
case GADGET_SELECT:
|
|
|
|
gui_gadget_combo(bw, g, click_x, click_y);
|
|
|
|
break;
|
|
|
|
case GADGET_CHECKBOX:
|
|
|
|
g->data.checkbox.selected = !g->data.checkbox.selected;
|
|
|
|
gui_redraw_gadget(bw, g);
|
|
|
|
break;
|
|
|
|
case GADGET_RADIO:
|
|
|
|
clear_radio_gadgets(bw, bw->current_content->data.html.layout->children, g);
|
|
|
|
g->data.radio.selected = -1;
|
|
|
|
gui_redraw_gadget(bw, g);
|
|
|
|
break;
|
2003-09-27 03:22:00 +04:00
|
|
|
case GADGET_SUBMIT:
|
2003-12-11 22:06:39 +03:00
|
|
|
if (g->form)
|
|
|
|
browser_form_submit(bw, g->form, g);
|
2002-12-31 01:56:30 +03:00
|
|
|
break;
|
|
|
|
case GADGET_TEXTAREA:
|
2003-09-23 01:55:08 +04:00
|
|
|
browser_window_textarea_click(bw,
|
2003-12-27 04:06:46 +03:00
|
|
|
(unsigned int)click_boxes[i].actual_x,
|
|
|
|
(unsigned int)click_boxes[i].actual_y,
|
|
|
|
(int)(click_x - click_boxes[i].actual_x),
|
|
|
|
(int)(click_y - click_boxes[i].actual_y),
|
2003-09-23 01:55:08 +04:00
|
|
|
click_boxes[i].box);
|
2002-12-31 01:56:30 +03:00
|
|
|
break;
|
|
|
|
case GADGET_TEXTBOX:
|
2003-09-09 23:25:28 +04:00
|
|
|
case GADGET_PASSWORD:
|
2004-03-21 23:07:14 +03:00
|
|
|
case GADGET_FILE:
|
2003-09-29 03:41:07 +04:00
|
|
|
browser_window_input_click(bw,
|
2003-12-27 04:06:46 +03:00
|
|
|
(unsigned int)click_boxes[i].actual_x,
|
|
|
|
(unsigned int)click_boxes[i].actual_y,
|
2003-09-29 03:41:07 +04:00
|
|
|
click_x - click_boxes[i].actual_x,
|
|
|
|
click_y - click_boxes[i].actual_y,
|
|
|
|
click_boxes[i].box);
|
|
|
|
break;
|
2003-03-04 01:40:39 +03:00
|
|
|
case GADGET_HIDDEN:
|
|
|
|
break;
|
2003-09-09 23:25:28 +04:00
|
|
|
case GADGET_IMAGE:
|
|
|
|
box_coords(click_boxes[i].box, &x, &y);
|
|
|
|
g->data.image.mx = click_x - x;
|
|
|
|
g->data.image.my = click_y - y;
|
2003-12-11 22:06:39 +03:00
|
|
|
if (g->form)
|
|
|
|
browser_form_submit(bw, g->form, g);
|
2003-09-09 23:25:28 +04:00
|
|
|
break;
|
2003-12-27 04:06:46 +03:00
|
|
|
case GADGET_RESET:
|
|
|
|
break;
|
2002-12-31 01:56:30 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
xfree(click_boxes);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
xfree(click_boxes);
|
2003-02-09 22:33:32 +03:00
|
|
|
|
|
|
|
return 0;
|
2002-12-31 01:56:30 +03:00
|
|
|
}
|
|
|
|
|
2003-09-23 01:55:08 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle clicks in a text area by placing the caret.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void browser_window_textarea_click(struct browser_window* bw,
|
|
|
|
unsigned long actual_x, unsigned long actual_y,
|
2003-09-29 20:32:17 +04:00
|
|
|
long x, long y,
|
2003-09-23 01:55:08 +04:00
|
|
|
struct box *textarea)
|
|
|
|
{
|
|
|
|
/* a textarea contains one or more inline containers, which contain
|
|
|
|
* the formatted paragraphs of text as inline boxes */
|
|
|
|
|
2003-09-29 20:32:17 +04:00
|
|
|
int char_offset, pixel_offset, dy;
|
|
|
|
struct box *inline_container, *text_box, *ic;
|
2003-09-23 01:55:08 +04:00
|
|
|
|
|
|
|
for (inline_container = textarea->children;
|
|
|
|
inline_container && inline_container->y + inline_container->height < y;
|
|
|
|
inline_container = inline_container->next)
|
|
|
|
;
|
|
|
|
if (!inline_container) {
|
|
|
|
/* below the bottom of the textarea: place caret at end */
|
|
|
|
inline_container = textarea->last;
|
|
|
|
text_box = inline_container->last;
|
|
|
|
assert(text_box->type == BOX_INLINE);
|
|
|
|
assert(text_box->text && text_box->font);
|
|
|
|
font_position_in_string(text_box->text, text_box->font,
|
2003-12-27 04:06:46 +03:00
|
|
|
text_box->length,
|
|
|
|
(unsigned int)textarea->width,
|
2003-09-23 01:55:08 +04:00
|
|
|
&char_offset, &pixel_offset);
|
|
|
|
} else {
|
|
|
|
/* find the relevant text box */
|
|
|
|
y -= inline_container->y;
|
|
|
|
for (text_box = inline_container->children;
|
|
|
|
text_box && (text_box->y + text_box->height < y ||
|
|
|
|
text_box->x + text_box->width < x);
|
|
|
|
text_box = text_box->next)
|
|
|
|
;
|
|
|
|
if (!text_box) {
|
|
|
|
/* past last text box */
|
|
|
|
text_box = inline_container->last;
|
|
|
|
assert(text_box->type == BOX_INLINE);
|
|
|
|
assert(text_box->text && text_box->font);
|
|
|
|
font_position_in_string(text_box->text, text_box->font,
|
2003-12-27 04:06:46 +03:00
|
|
|
text_box->length,
|
|
|
|
(unsigned int)textarea->width,
|
2003-09-23 01:55:08 +04:00
|
|
|
&char_offset, &pixel_offset);
|
|
|
|
} else {
|
|
|
|
/* in a text box */
|
|
|
|
assert(text_box->type == BOX_INLINE);
|
|
|
|
assert(text_box->text && text_box->font);
|
|
|
|
font_position_in_string(text_box->text, text_box->font,
|
2003-12-27 04:06:46 +03:00
|
|
|
text_box->length,
|
|
|
|
(unsigned int)(x - text_box->x),
|
2003-09-23 01:55:08 +04:00
|
|
|
&char_offset, &pixel_offset);
|
|
|
|
}
|
|
|
|
}
|
2003-09-29 20:32:17 +04:00
|
|
|
|
|
|
|
dy = textarea->height / 2 -
|
|
|
|
(inline_container->y + text_box->y + text_box->height / 2);
|
|
|
|
if (textarea->last->y + textarea->last->height + dy < textarea->height)
|
|
|
|
dy = textarea->height - textarea->last->y - textarea->last->height;
|
|
|
|
if (0 < textarea->children->y + dy)
|
|
|
|
dy = -textarea->children->y;
|
|
|
|
for (ic = textarea->children; ic; ic = ic->next)
|
|
|
|
ic->y += dy;
|
|
|
|
|
2003-09-29 03:41:07 +04:00
|
|
|
textarea->gadget->caret_inline_container = inline_container;
|
|
|
|
textarea->gadget->caret_text_box = text_box;
|
|
|
|
textarea->gadget->caret_char_offset = char_offset;
|
2003-12-27 04:06:46 +03:00
|
|
|
browser_window_place_caret(bw,
|
|
|
|
(int)(actual_x + text_box->x + pixel_offset),
|
|
|
|
(int)(actual_y + inline_container->y + text_box->y),
|
2003-09-23 01:55:08 +04:00
|
|
|
text_box->height,
|
|
|
|
browser_window_textarea_callback, textarea);
|
2003-09-29 20:32:17 +04:00
|
|
|
|
|
|
|
gui_window_redraw(bw->window,
|
|
|
|
actual_x,
|
|
|
|
actual_y,
|
|
|
|
actual_x + textarea->width,
|
|
|
|
actual_y + textarea->height);
|
2003-09-23 01:55:08 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Key press callback for text areas.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void browser_window_textarea_callback(struct browser_window *bw, char key, void *p)
|
|
|
|
{
|
|
|
|
struct box *textarea = p;
|
2003-09-29 03:41:07 +04:00
|
|
|
struct box *inline_container = textarea->gadget->caret_inline_container;
|
|
|
|
struct box *text_box = textarea->gadget->caret_text_box;
|
2003-09-29 20:32:17 +04:00
|
|
|
struct box *ic;
|
2003-09-29 03:41:07 +04:00
|
|
|
int char_offset = textarea->gadget->caret_char_offset;
|
2003-09-29 20:32:17 +04:00
|
|
|
int pixel_offset, dy;
|
2003-09-23 01:55:08 +04:00
|
|
|
unsigned long actual_x, actual_y;
|
2003-12-27 04:06:46 +03:00
|
|
|
unsigned long width=0, height=0;
|
2003-10-09 19:23:10 +04:00
|
|
|
bool reflow = false;
|
2003-09-23 01:55:08 +04:00
|
|
|
|
|
|
|
box_coords(textarea, &actual_x, &actual_y);
|
|
|
|
|
2003-09-24 01:48:22 +04:00
|
|
|
/* box_dump(textarea, 0); */
|
|
|
|
LOG(("key %i at %i in '%.*s'", key, char_offset, (int) text_box->length, text_box->text));
|
|
|
|
|
2003-09-23 01:55:08 +04:00
|
|
|
if (32 <= key && key != 127) {
|
|
|
|
/* normal character insertion */
|
|
|
|
text_box->text = xrealloc(text_box->text, text_box->length + 2);
|
|
|
|
memmove(text_box->text + char_offset + 1,
|
|
|
|
text_box->text + char_offset,
|
|
|
|
text_box->length - char_offset);
|
|
|
|
text_box->text[char_offset] = key;
|
|
|
|
text_box->length++;
|
|
|
|
text_box->text[text_box->length] = 0;
|
|
|
|
text_box->width = UNKNOWN_WIDTH;
|
|
|
|
char_offset++;
|
2003-10-09 19:23:10 +04:00
|
|
|
reflow = true;
|
2003-09-23 22:35:44 +04:00
|
|
|
} else if (key == 10 || key == 13) {
|
|
|
|
/* paragraph break */
|
2004-01-02 15:04:04 +03:00
|
|
|
struct box *new_container = box_create(0, 0, 0,
|
|
|
|
bw->current_content->data.html.box_pool);
|
2003-09-30 16:58:33 +04:00
|
|
|
struct box *new_text = xcalloc(1, sizeof(*new_text));
|
|
|
|
struct box *t;
|
|
|
|
new_container->type = BOX_INLINE_CONTAINER;
|
2003-10-09 19:23:10 +04:00
|
|
|
box_insert_sibling(inline_container, new_container);
|
2003-09-30 16:58:33 +04:00
|
|
|
memcpy(new_text, text_box, sizeof(*new_text));
|
|
|
|
new_text->clone = 1;
|
|
|
|
new_text->text = xcalloc(text_box->length + 1, 1);
|
|
|
|
memcpy(new_text->text, text_box->text + char_offset,
|
|
|
|
text_box->length - char_offset);
|
|
|
|
new_text->length = text_box->length - char_offset;
|
|
|
|
text_box->length = char_offset;
|
|
|
|
new_text->prev = 0;
|
|
|
|
new_text->next = text_box->next;
|
|
|
|
text_box->next = 0;
|
|
|
|
if (new_text->next)
|
|
|
|
new_text->next->prev = new_text;
|
|
|
|
else
|
|
|
|
new_container->last = new_text;
|
|
|
|
text_box->width = new_text->width = UNKNOWN_WIDTH;
|
2003-10-09 19:23:10 +04:00
|
|
|
new_container->last = inline_container->last;
|
2003-09-30 16:58:33 +04:00
|
|
|
inline_container->last = text_box;
|
|
|
|
new_container->children = new_text;
|
|
|
|
for (t = new_container->children; t; t = t->next)
|
|
|
|
t->parent = new_container;
|
|
|
|
inline_container = new_container;
|
|
|
|
text_box = inline_container->children;
|
|
|
|
char_offset = 0;
|
2003-10-09 19:23:10 +04:00
|
|
|
reflow = true;
|
2003-09-23 22:35:44 +04:00
|
|
|
} else if (key == 8 || key == 127) {
|
|
|
|
/* delete to left */
|
|
|
|
if (char_offset == 0) {
|
|
|
|
/* at the start of a text box */
|
|
|
|
struct box *prev;
|
|
|
|
if (text_box->prev) {
|
|
|
|
/* can be merged with previous text box */
|
|
|
|
} else if (inline_container->prev) {
|
|
|
|
/* merge with previous paragraph */
|
|
|
|
struct box *prev_container = inline_container->prev;
|
2003-09-24 01:48:22 +04:00
|
|
|
struct box *t;
|
|
|
|
for (t = inline_container->children; t; t = t->next)
|
|
|
|
t->parent = prev_container;
|
2003-09-23 22:35:44 +04:00
|
|
|
prev_container->last->next = inline_container->children;
|
|
|
|
inline_container->children->prev = prev_container->last;
|
|
|
|
prev_container->last = inline_container->last;
|
|
|
|
prev_container->next = inline_container->next;
|
|
|
|
if (inline_container->next)
|
|
|
|
inline_container->next->prev = prev_container;
|
|
|
|
else
|
|
|
|
inline_container->parent->last = prev_container;
|
|
|
|
inline_container->children = 0;
|
|
|
|
box_free(inline_container);
|
|
|
|
inline_container = prev_container;
|
|
|
|
} else {
|
|
|
|
/* at very beginning of text area: ignore */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* delete space by merging with previous text box */
|
|
|
|
prev = text_box->prev;
|
|
|
|
assert(prev->text);
|
|
|
|
prev->text = xrealloc(prev->text, prev->length + text_box->length + 1);
|
|
|
|
memcpy(prev->text + prev->length, text_box->text, text_box->length);
|
|
|
|
char_offset = prev->length;
|
|
|
|
prev->length += text_box->length;
|
|
|
|
prev->text[prev->length] = 0;
|
|
|
|
prev->width = UNKNOWN_WIDTH;
|
|
|
|
prev->next = text_box->next;
|
|
|
|
if (prev->next)
|
|
|
|
prev->next->prev = prev;
|
|
|
|
else
|
|
|
|
prev->parent->last = prev;
|
|
|
|
box_free(text_box);
|
|
|
|
text_box = prev;
|
|
|
|
} else if (char_offset == 1 && text_box->length == 1) {
|
|
|
|
/* delete this text box and add a space */
|
|
|
|
if (text_box->prev) {
|
|
|
|
struct box *prev = text_box->prev;
|
|
|
|
prev->text = xrealloc(prev->text, prev->length + 2);
|
|
|
|
prev->text[prev->length] = ' ';
|
|
|
|
prev->length++;
|
|
|
|
prev->text[prev->length] = 0;
|
|
|
|
prev->width = UNKNOWN_WIDTH;
|
|
|
|
prev->next = text_box->next;
|
|
|
|
if (prev->next)
|
|
|
|
prev->next->prev = prev;
|
|
|
|
else
|
|
|
|
prev->parent->last = prev;
|
|
|
|
box_free(text_box);
|
|
|
|
text_box = prev;
|
|
|
|
char_offset = prev->length;
|
|
|
|
} else if (text_box->next) {
|
|
|
|
struct box *next = text_box->next;
|
|
|
|
next->text = xrealloc(next->text, next->length + 2);
|
|
|
|
memmove(next->text + 1, next->text, next->length);
|
|
|
|
next->text[0] = ' ';
|
|
|
|
next->length++;
|
|
|
|
next->text[next->length] = 0;
|
|
|
|
next->width = UNKNOWN_WIDTH;
|
|
|
|
next->prev = 0;
|
|
|
|
next->parent->children = next;
|
|
|
|
box_free(text_box);
|
|
|
|
text_box = next;
|
|
|
|
char_offset = 0;
|
|
|
|
} else {
|
|
|
|
text_box->length = 0;
|
|
|
|
text_box->width = UNKNOWN_WIDTH;
|
|
|
|
char_offset--;
|
2003-09-29 06:47:11 +04:00
|
|
|
}
|
2003-09-23 22:35:44 +04:00
|
|
|
} else {
|
|
|
|
/* delete a character */
|
|
|
|
memmove(text_box->text + char_offset - 1,
|
|
|
|
text_box->text + char_offset,
|
|
|
|
text_box->length - char_offset);
|
|
|
|
text_box->length--;
|
|
|
|
text_box->width = UNKNOWN_WIDTH;
|
|
|
|
char_offset--;
|
|
|
|
}
|
2003-10-09 19:23:10 +04:00
|
|
|
reflow = true;
|
2003-10-09 00:48:46 +04:00
|
|
|
} else if (key == 28) {
|
2003-09-29 06:47:11 +04:00
|
|
|
/* Right cursor -> */
|
2003-12-27 04:06:46 +03:00
|
|
|
if ((unsigned int)char_offset == text_box->length &&
|
2003-10-09 02:01:20 +04:00
|
|
|
text_box == inline_container->last &&
|
|
|
|
inline_container->next) {
|
2003-10-09 02:25:20 +04:00
|
|
|
/* move to start of next box (if it exists) */
|
|
|
|
text_box = inline_container->next->children;
|
2003-10-09 00:48:46 +04:00
|
|
|
char_offset = 0;
|
|
|
|
inline_container=inline_container->next;
|
|
|
|
}
|
2003-12-27 04:06:46 +03:00
|
|
|
else if ((unsigned int)char_offset == text_box->length && text_box->next) {
|
2003-10-09 02:01:20 +04:00
|
|
|
text_box = text_box->next;
|
2003-10-09 02:25:20 +04:00
|
|
|
char_offset = 0;
|
2003-10-09 02:01:20 +04:00
|
|
|
}
|
2003-12-27 04:06:46 +03:00
|
|
|
else if ((unsigned int)char_offset != text_box->length) {
|
2003-10-09 00:48:46 +04:00
|
|
|
char_offset++;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else if (key == 29) {
|
2003-09-29 06:47:11 +04:00
|
|
|
/* Left cursor <- */
|
2003-10-09 02:01:20 +04:00
|
|
|
if (char_offset == 0 &&
|
|
|
|
text_box == inline_container->children &&
|
|
|
|
inline_container->prev) {
|
2003-10-09 02:25:20 +04:00
|
|
|
/* move to end of previous box */
|
|
|
|
text_box = inline_container->prev->children;
|
2003-10-09 00:48:46 +04:00
|
|
|
inline_container=inline_container->prev;
|
|
|
|
char_offset = text_box->length;
|
|
|
|
}
|
2003-10-09 02:01:20 +04:00
|
|
|
else if (char_offset == 0 && text_box->next) {
|
|
|
|
text_box = text_box->next;
|
|
|
|
char_offset = text_box->length;
|
|
|
|
}
|
2003-10-09 00:48:46 +04:00
|
|
|
else if (char_offset != 0) {
|
|
|
|
char_offset--;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return;
|
|
|
|
}
|
2003-09-29 06:47:11 +04:00
|
|
|
} else if (key == 30) {
|
|
|
|
/* Up Cursor */
|
2003-10-09 02:01:20 +04:00
|
|
|
if (text_box == inline_container->children &&
|
|
|
|
inline_container->prev) {
|
2003-10-09 02:25:20 +04:00
|
|
|
text_box = inline_container->prev->children;
|
2003-10-09 00:48:46 +04:00
|
|
|
inline_container = inline_container->prev;
|
2003-12-27 04:06:46 +03:00
|
|
|
if ((unsigned int)char_offset > text_box->length) {
|
2003-10-09 00:48:46 +04:00
|
|
|
char_offset = text_box->length;
|
|
|
|
}
|
|
|
|
}
|
2003-10-09 02:01:20 +04:00
|
|
|
else if (text_box->prev) {
|
|
|
|
text_box = text_box->prev;
|
2003-12-27 04:06:46 +03:00
|
|
|
if ((unsigned int)char_offset > text_box->length) {
|
2003-10-09 02:01:20 +04:00
|
|
|
char_offset = text_box->length;
|
|
|
|
}
|
|
|
|
}
|
2003-10-09 00:48:46 +04:00
|
|
|
else {
|
|
|
|
return;
|
|
|
|
}
|
2003-09-29 06:47:11 +04:00
|
|
|
} else if (key == 31) {
|
|
|
|
/* Down cursor */
|
2003-10-09 02:01:20 +04:00
|
|
|
if (text_box == inline_container->last &&
|
|
|
|
inline_container->next) {
|
2003-10-09 02:25:20 +04:00
|
|
|
text_box = inline_container->next->children;
|
2003-10-09 00:48:46 +04:00
|
|
|
inline_container = inline_container->next;
|
2003-12-27 04:06:46 +03:00
|
|
|
if ((unsigned int)char_offset > text_box->length) {
|
2003-10-09 00:48:46 +04:00
|
|
|
char_offset = text_box->length;
|
|
|
|
}
|
|
|
|
}
|
2003-10-09 02:01:20 +04:00
|
|
|
else if (text_box->next) {
|
|
|
|
text_box = text_box->next;
|
2003-12-27 04:06:46 +03:00
|
|
|
if ((unsigned int)char_offset > text_box->length) {
|
2003-10-09 02:01:20 +04:00
|
|
|
char_offset = text_box->length;
|
|
|
|
}
|
|
|
|
}
|
2003-10-09 00:48:46 +04:00
|
|
|
else {
|
|
|
|
return;
|
|
|
|
}
|
2003-09-23 01:55:08 +04:00
|
|
|
} else {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2003-10-09 19:23:10 +04:00
|
|
|
box_dump(textarea, 0);
|
2003-09-24 01:48:22 +04:00
|
|
|
/* for (struct box *ic = textarea->children; ic; ic = ic->next) {
|
|
|
|
assert(ic->type == BOX_INLINE_CONTAINER);
|
|
|
|
assert(ic->parent == textarea);
|
|
|
|
if (ic->next) assert(ic->next->prev == ic);
|
|
|
|
if (ic->prev) assert(ic->prev->next == ic);
|
|
|
|
if (!ic->next) assert(textarea->last == ic);
|
|
|
|
for (struct box *t = ic->children; t; t = t->next) {
|
|
|
|
assert(t->type == BOX_INLINE);
|
|
|
|
assert(t->text);
|
|
|
|
assert(t->font);
|
|
|
|
assert(t->parent == ic);
|
|
|
|
if (t->next) assert(t->next->prev == t);
|
|
|
|
if (t->prev) assert(t->prev->next == t);
|
|
|
|
if (!t->next) assert(ic->last == t);
|
|
|
|
}
|
|
|
|
} */
|
2003-09-23 22:35:44 +04:00
|
|
|
|
2003-10-09 19:23:10 +04:00
|
|
|
if (reflow) {
|
|
|
|
/* reflow textarea preserving width and height */
|
|
|
|
width = textarea->width;
|
|
|
|
height = textarea->height;
|
2004-02-11 20:15:36 +03:00
|
|
|
layout_block(textarea, textarea, 0, 0);
|
2003-10-09 19:23:10 +04:00
|
|
|
textarea->width = width;
|
|
|
|
textarea->height = height;
|
|
|
|
}
|
2003-09-23 01:55:08 +04:00
|
|
|
|
2003-09-24 01:48:22 +04:00
|
|
|
/* box_dump(textarea, 0); */
|
|
|
|
|
|
|
|
/* for (struct box *ic = textarea->children; ic; ic = ic->next) {
|
|
|
|
assert(ic->type == BOX_INLINE_CONTAINER);
|
|
|
|
assert(ic->parent == textarea);
|
|
|
|
if (ic->next) assert(ic->next->prev == ic);
|
|
|
|
if (ic->prev) assert(ic->prev->next == ic);
|
|
|
|
if (!ic->next) assert(textarea->last == ic);
|
|
|
|
for (struct box *t = ic->children; t; t = t->next) {
|
|
|
|
assert(t->type == BOX_INLINE);
|
|
|
|
assert(t->text);
|
|
|
|
assert(t->font);
|
|
|
|
assert(t->parent == ic);
|
|
|
|
if (t->next) assert(t->next->prev == t);
|
|
|
|
if (t->prev) assert(t->prev->next == t);
|
|
|
|
if (!t->next) assert(ic->last == t);
|
|
|
|
}
|
|
|
|
} */
|
2003-09-29 06:47:11 +04:00
|
|
|
|
2003-12-27 04:06:46 +03:00
|
|
|
if (text_box->length < (unsigned int)char_offset) {
|
2003-09-23 01:55:08 +04:00
|
|
|
/* the text box has been split and the caret is in the second part */
|
2003-09-23 22:35:44 +04:00
|
|
|
char_offset -= (text_box->length + 1); /* +1 for the space */
|
2003-09-23 01:55:08 +04:00
|
|
|
text_box = text_box->next;
|
2003-09-23 22:35:44 +04:00
|
|
|
assert(text_box);
|
2003-12-27 04:06:46 +03:00
|
|
|
assert((unsigned int)char_offset <= text_box->length);
|
2003-09-23 01:55:08 +04:00
|
|
|
}
|
|
|
|
|
2003-09-29 20:32:17 +04:00
|
|
|
dy = textarea->height / 2 -
|
|
|
|
(inline_container->y + text_box->y + text_box->height / 2);
|
|
|
|
if (textarea->last->y + textarea->last->height + dy < textarea->height)
|
|
|
|
dy = textarea->height - textarea->last->y - textarea->last->height;
|
|
|
|
if (0 < textarea->children->y + dy)
|
|
|
|
dy = -textarea->children->y;
|
|
|
|
for (ic = textarea->children; ic; ic = ic->next)
|
|
|
|
ic->y += dy;
|
2003-10-06 03:30:21 +04:00
|
|
|
|
2003-12-27 04:06:46 +03:00
|
|
|
pixel_offset = font_width(text_box->font, text_box->text,
|
|
|
|
(unsigned int)char_offset);
|
2003-09-23 01:55:08 +04:00
|
|
|
|
2003-09-29 03:41:07 +04:00
|
|
|
textarea->gadget->caret_inline_container = inline_container;
|
|
|
|
textarea->gadget->caret_text_box = text_box;
|
|
|
|
textarea->gadget->caret_char_offset = char_offset;
|
2003-12-27 04:06:46 +03:00
|
|
|
browser_window_place_caret(bw,
|
|
|
|
(int)(actual_x + text_box->x + pixel_offset),
|
|
|
|
(int)(actual_y + inline_container->y + text_box->y),
|
2003-09-23 01:55:08 +04:00
|
|
|
text_box->height,
|
|
|
|
browser_window_textarea_callback, textarea);
|
|
|
|
|
|
|
|
gui_window_redraw(bw->window,
|
|
|
|
actual_x,
|
2003-09-29 20:32:17 +04:00
|
|
|
actual_y,
|
2003-09-23 01:55:08 +04:00
|
|
|
actual_x + width,
|
|
|
|
actual_y + height);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-09-29 03:41:07 +04:00
|
|
|
/**
|
|
|
|
* Handle clicks in a text or password input box by placing the caret.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void browser_window_input_click(struct browser_window* bw,
|
|
|
|
unsigned long actual_x, unsigned long actual_y,
|
|
|
|
unsigned long x, unsigned long y,
|
|
|
|
struct box *input)
|
|
|
|
{
|
|
|
|
int char_offset, pixel_offset;
|
|
|
|
struct box *text_box = input->children->children;
|
|
|
|
|
|
|
|
font_position_in_string(text_box->text, text_box->font,
|
|
|
|
text_box->length, x - text_box->x,
|
|
|
|
&char_offset, &pixel_offset);
|
|
|
|
|
|
|
|
text_box->x = 0;
|
|
|
|
if ((input->width < text_box->width) && (input->width / 2 < pixel_offset)) {
|
|
|
|
text_box->x = input->width / 2 - pixel_offset;
|
|
|
|
if (text_box->x < input->width - text_box->width)
|
|
|
|
text_box->x = input->width - text_box->width;
|
|
|
|
}
|
|
|
|
input->gadget->caret_char_offset = char_offset;
|
2003-12-27 04:06:46 +03:00
|
|
|
browser_window_place_caret(bw,
|
|
|
|
(int)(actual_x + text_box->x + pixel_offset),
|
|
|
|
(int)(actual_y + text_box->y),
|
2003-09-29 03:41:07 +04:00
|
|
|
text_box->height,
|
|
|
|
browser_window_input_callback, input);
|
|
|
|
|
|
|
|
gui_window_redraw(bw->window,
|
|
|
|
actual_x,
|
|
|
|
actual_y,
|
|
|
|
actual_x + input->width,
|
|
|
|
actual_y + input->height);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Key press callback for text or password input boxes.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void browser_window_input_callback(struct browser_window *bw, char key, void *p)
|
|
|
|
{
|
|
|
|
struct box *input = p;
|
|
|
|
struct box *text_box = input->children->children;
|
|
|
|
int char_offset = input->gadget->caret_char_offset;
|
|
|
|
int pixel_offset;
|
|
|
|
unsigned long actual_x, actual_y;
|
2003-09-29 06:47:11 +04:00
|
|
|
struct form* form = input->gadget->form;
|
2003-09-29 03:41:07 +04:00
|
|
|
|
|
|
|
box_coords(input, &actual_x, &actual_y);
|
|
|
|
|
|
|
|
if ((32 <= key && key != 127) && text_box->length < input->gadget->maxlength) {
|
|
|
|
/* normal character insertion */
|
|
|
|
text_box->text = xrealloc(text_box->text, text_box->length + 2);
|
|
|
|
input->gadget->value = xrealloc(input->gadget->value, text_box->length + 2);
|
|
|
|
memmove(text_box->text + char_offset + 1,
|
|
|
|
text_box->text + char_offset,
|
|
|
|
text_box->length - char_offset);
|
|
|
|
memmove(input->gadget->value + char_offset + 1,
|
|
|
|
input->gadget->value + char_offset,
|
|
|
|
text_box->length - char_offset);
|
|
|
|
if (input->gadget->type == GADGET_PASSWORD)
|
|
|
|
text_box->text[char_offset] = '*';
|
|
|
|
else
|
|
|
|
text_box->text[char_offset] = key == ' ' ? 160 : key;
|
|
|
|
input->gadget->value[char_offset] = key;
|
|
|
|
text_box->length++;
|
|
|
|
text_box->text[text_box->length] = 0;
|
|
|
|
input->gadget->value[text_box->length] = 0;
|
|
|
|
char_offset++;
|
|
|
|
} else if ((key == 8 || key == 127) && char_offset != 0) {
|
|
|
|
/* delete to left */
|
|
|
|
memmove(text_box->text + char_offset - 1,
|
|
|
|
text_box->text + char_offset,
|
|
|
|
text_box->length - char_offset);
|
|
|
|
memmove(input->gadget->value + char_offset - 1,
|
|
|
|
input->gadget->value + char_offset,
|
|
|
|
text_box->length - char_offset);
|
|
|
|
text_box->length--;
|
|
|
|
input->gadget->value[text_box->length] = 0;
|
|
|
|
char_offset--;
|
2003-09-29 06:47:11 +04:00
|
|
|
} else if (key == 10 || key == 13) {
|
|
|
|
/* Return/Enter hit */
|
2003-12-11 22:06:39 +03:00
|
|
|
if (form)
|
|
|
|
browser_form_submit(bw, form, 0);
|
2003-09-29 06:47:11 +04:00
|
|
|
} else if (key == 9) {
|
|
|
|
/* Tab */
|
|
|
|
/* TODO: tabbing between inputs */
|
|
|
|
return;
|
2003-12-27 04:06:46 +03:00
|
|
|
} else if (key == 28 && (unsigned int)char_offset != text_box->length) {
|
2003-09-29 06:47:11 +04:00
|
|
|
/* Right cursor -> */
|
|
|
|
char_offset++;
|
|
|
|
} else if (key == 29 && char_offset != 0) {
|
|
|
|
/* Left cursor <- */
|
|
|
|
char_offset--;
|
2003-09-29 03:41:07 +04:00
|
|
|
} else {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
text_box->width = font_width(text_box->font, text_box->text,
|
2003-12-27 04:06:46 +03:00
|
|
|
(unsigned int)text_box->length);
|
|
|
|
pixel_offset = font_width(text_box->font, text_box->text,
|
|
|
|
(unsigned int)char_offset);
|
2003-09-29 03:41:07 +04:00
|
|
|
text_box->x = 0;
|
|
|
|
if ((input->width < text_box->width) && (input->width / 2 < pixel_offset)) {
|
|
|
|
text_box->x = input->width / 2 - pixel_offset;
|
|
|
|
if (text_box->x < input->width - text_box->width)
|
|
|
|
text_box->x = input->width - text_box->width;
|
|
|
|
}
|
|
|
|
input->gadget->caret_char_offset = char_offset;
|
2003-12-27 04:06:46 +03:00
|
|
|
browser_window_place_caret(bw,
|
|
|
|
(int)(actual_x + text_box->x + pixel_offset),
|
|
|
|
(int)(actual_y + text_box->y),
|
2003-09-29 03:41:07 +04:00
|
|
|
text_box->height,
|
|
|
|
browser_window_input_callback, input);
|
|
|
|
|
|
|
|
gui_window_redraw(bw->window,
|
|
|
|
actual_x,
|
|
|
|
actual_y,
|
|
|
|
actual_x + input->width,
|
|
|
|
actual_y + input->height);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-09-23 01:55:08 +04:00
|
|
|
/**
|
|
|
|
* Position the caret and assign a callback for key presses.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void browser_window_place_caret(struct browser_window *bw, int x, int y,
|
|
|
|
int height, void (*callback)(struct browser_window *bw, char key, void *p), void *p)
|
|
|
|
{
|
|
|
|
gui_window_place_caret(bw->window, x, y, height);
|
|
|
|
bw->caret_callback = callback;
|
|
|
|
bw->caret_p = p;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle key presses in a browser window.
|
|
|
|
*/
|
|
|
|
|
2003-12-11 04:23:57 +03:00
|
|
|
bool browser_window_key_press(struct browser_window *bw, char key)
|
2003-09-23 01:55:08 +04:00
|
|
|
{
|
|
|
|
if (!bw->caret_callback)
|
2003-12-11 04:23:57 +03:00
|
|
|
return false;
|
2003-09-23 01:55:08 +04:00
|
|
|
bw->caret_callback(bw, key, bw->caret_p);
|
2003-12-11 04:23:57 +03:00
|
|
|
return true;
|
2003-09-23 01:55:08 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
int browser_window_action(struct browser_window *bw,
|
|
|
|
struct browser_action *act)
|
2002-09-11 18:24:02 +04:00
|
|
|
{
|
2004-02-25 18:12:58 +03:00
|
|
|
switch (act->type) {
|
|
|
|
case act_MOUSE_AT:
|
|
|
|
browser_window_follow_link(bw, act->data.mouse.x,
|
|
|
|
act->data.mouse.y, 0);
|
|
|
|
break;
|
|
|
|
case act_MOUSE_CLICK:
|
|
|
|
return browser_window_gadget_click(bw, act->data.mouse.x,
|
|
|
|
act->data.mouse.y);
|
|
|
|
break;
|
|
|
|
case act_CLEAR_SELECTION:
|
|
|
|
browser_window_text_selection(bw, act->data.mouse.x,
|
|
|
|
act->data.mouse.y, 0);
|
|
|
|
break;
|
|
|
|
case act_START_NEW_SELECTION:
|
|
|
|
browser_window_text_selection(bw, act->data.mouse.x,
|
|
|
|
act->data.mouse.y, 1);
|
|
|
|
break;
|
|
|
|
case act_ALTER_SELECTION:
|
|
|
|
browser_window_text_selection(bw, act->data.mouse.x,
|
|
|
|
act->data.mouse.y, 2);
|
|
|
|
break;
|
|
|
|
case act_FOLLOW_LINK:
|
|
|
|
browser_window_follow_link(bw, act->data.mouse.x,
|
|
|
|
act->data.mouse.y, 1);
|
|
|
|
break;
|
|
|
|
case act_FOLLOW_LINK_NEW_WINDOW:
|
|
|
|
browser_window_follow_link(bw, act->data.mouse.x,
|
|
|
|
act->data.mouse.y, 2);
|
|
|
|
break;
|
|
|
|
case act_GADGET_SELECT:
|
|
|
|
browser_window_gadget_select(bw, act->data.gadget_select.g,
|
|
|
|
act->data.gadget_select.item);
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 0;
|
2002-09-11 18:24:02 +04:00
|
|
|
}
|
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
void box_under_area(struct box *box, unsigned long x, unsigned long y,
|
|
|
|
unsigned long ox, unsigned long oy,
|
|
|
|
struct box_selection **found, int *count,
|
|
|
|
int *plot_index)
|
2002-09-11 18:24:02 +04:00
|
|
|
{
|
2004-02-25 18:12:58 +03:00
|
|
|
struct box *c;
|
2002-09-11 18:24:02 +04:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
if (box == NULL)
|
|
|
|
return;
|
2002-09-11 18:24:02 +04:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
*plot_index = *plot_index + 1;
|
|
|
|
|
|
|
|
if (x >= box->x + ox && x <= box->x + ox + box->width &&
|
|
|
|
y >= box->y + oy && y <= box->y + oy + box->height) {
|
|
|
|
*found =
|
|
|
|
xrealloc(*found,
|
|
|
|
sizeof(struct box_selection) * (*count + 1));
|
|
|
|
(*found)[*count].box = box;
|
|
|
|
(*found)[*count].actual_x = box->x + ox;
|
|
|
|
(*found)[*count].actual_y = box->y + oy;
|
|
|
|
(*found)[*count].plot_index = *plot_index;
|
|
|
|
*count = *count + 1;
|
|
|
|
}
|
2002-09-11 18:24:02 +04:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
for (c = box->children; c != 0; c = c->next)
|
|
|
|
if (c->type != BOX_FLOAT_LEFT
|
|
|
|
&& c->type != BOX_FLOAT_RIGHT)
|
|
|
|
box_under_area(c, x, y, box->x + ox, box->y + oy,
|
|
|
|
found, count, plot_index);
|
2002-09-11 18:24:02 +04:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
for (c = box->float_children; c != 0; c = c->next_float)
|
|
|
|
box_under_area(c, x, y, box->x + ox, box->y + oy, found,
|
|
|
|
count, plot_index);
|
2002-09-11 18:24:02 +04:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
return;
|
2002-09-11 18:24:02 +04:00
|
|
|
}
|
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
void browser_window_follow_link(struct browser_window *bw,
|
|
|
|
unsigned long click_x,
|
|
|
|
unsigned long click_y, int click_type)
|
2002-09-11 18:24:02 +04:00
|
|
|
{
|
2004-02-25 18:12:58 +03:00
|
|
|
struct box_selection *click_boxes;
|
|
|
|
int found, plot_index;
|
|
|
|
int i;
|
|
|
|
int done = 0;
|
|
|
|
|
|
|
|
found = 0;
|
|
|
|
click_boxes = NULL;
|
|
|
|
plot_index = 0;
|
|
|
|
|
|
|
|
if (bw->current_content->type != CONTENT_HTML)
|
|
|
|
return;
|
|
|
|
|
|
|
|
box_under_area(bw->current_content->data.html.layout->children,
|
|
|
|
click_x, click_y, 0, 0, &click_boxes, &found,
|
|
|
|
&plot_index);
|
|
|
|
|
|
|
|
if (found == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (i = found - 1; i >= 0; i--) {
|
|
|
|
if (click_boxes[i].box->style->visibility ==
|
|
|
|
CSS_VISIBILITY_HIDDEN)
|
|
|
|
continue;
|
|
|
|
if (click_boxes[i].box->href != NULL) {
|
|
|
|
char *url =
|
|
|
|
url_join((char *) click_boxes[i].box->href,
|
|
|
|
bw->current_content->data.html.
|
|
|
|
base_url);
|
|
|
|
if (!url)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (click_type == 1) {
|
|
|
|
browser_window_go(bw, url);
|
|
|
|
} else if (click_type == 2) {
|
|
|
|
browser_window_create(url);
|
2004-03-27 01:16:31 +03:00
|
|
|
} else if (click_type == 0) {
|
|
|
|
browser_window_set_status(bw, url);
|
2004-04-01 04:26:05 +04:00
|
|
|
browser_window_set_pointer(GUI_POINTER_POINT);
|
2004-03-27 01:16:31 +03:00
|
|
|
done = 1;
|
|
|
|
}
|
|
|
|
free(url);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (click_boxes[i].box->usemap != NULL) {
|
|
|
|
char *href, *url;
|
|
|
|
|
|
|
|
href = imagemap_get(bw->current_content,
|
|
|
|
click_boxes[i].box->usemap,
|
|
|
|
click_boxes[i].actual_x,
|
|
|
|
click_boxes[i].actual_y,
|
|
|
|
click_x, click_y);
|
|
|
|
if (!href)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
url = url_join(href,
|
|
|
|
bw->current_content->data.html.
|
|
|
|
base_url);
|
|
|
|
if (!url)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (click_type == 1) {
|
|
|
|
browser_window_go(bw, url);
|
|
|
|
} else if (click_type == 2) {
|
|
|
|
browser_window_create(url);
|
2004-02-25 18:12:58 +03:00
|
|
|
} else if (click_type == 0) {
|
|
|
|
browser_window_set_status(bw, url);
|
2004-04-01 04:26:05 +04:00
|
|
|
browser_window_set_pointer(GUI_POINTER_POINT);
|
2004-02-25 18:12:58 +03:00
|
|
|
done = 1;
|
|
|
|
}
|
|
|
|
free(url);
|
|
|
|
break;
|
|
|
|
}
|
2004-04-01 04:26:05 +04:00
|
|
|
if (click_type == 0 && click_boxes[i].box->gadget != NULL) {
|
|
|
|
if (click_boxes[i].box->gadget->type == GADGET_TEXTBOX ||
|
|
|
|
click_boxes[i].box->gadget->type == GADGET_TEXTAREA ||
|
|
|
|
click_boxes[i].box->gadget->type == GADGET_PASSWORD ||
|
|
|
|
click_boxes[i].box->gadget->type == GADGET_FILE) {
|
|
|
|
browser_window_set_pointer(GUI_POINTER_CARET);
|
|
|
|
done = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if (click_boxes[i].box->gadget->type == GADGET_SELECT) {
|
|
|
|
browser_window_set_pointer(GUI_POINTER_MENU);
|
|
|
|
done = 1;
|
|
|
|
break;
|
|
|
|
}
|
2004-04-01 22:24:22 +04:00
|
|
|
else if (click_boxes[i].box->gadget->type == GADGET_SUBMIT) {
|
2004-04-01 22:41:53 +04:00
|
|
|
struct form *form;
|
2004-04-01 22:24:22 +04:00
|
|
|
char *url, *href;
|
2004-04-01 22:41:53 +04:00
|
|
|
form = click_boxes[i].box->gadget->form;
|
|
|
|
if (!form) continue;
|
|
|
|
href = form->action;
|
2004-04-01 22:24:22 +04:00
|
|
|
if (!href) continue;
|
|
|
|
url = url_join(href, bw->current_content->data.html.base_url);
|
|
|
|
if (!url) continue;
|
|
|
|
browser_window_set_status(bw, url);
|
|
|
|
free(url);
|
|
|
|
done = 1;
|
|
|
|
break;
|
|
|
|
}
|
2004-04-01 04:26:05 +04:00
|
|
|
}
|
2004-02-25 18:12:58 +03:00
|
|
|
if (click_type == 0 && click_boxes[i].box->title != NULL) {
|
|
|
|
browser_window_set_status(bw,
|
|
|
|
click_boxes[i].box->
|
|
|
|
title);
|
2004-04-01 04:26:05 +04:00
|
|
|
browser_window_set_pointer(GUI_POINTER_DEFAULT);
|
2004-02-25 18:12:58 +03:00
|
|
|
done = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (click_type == 0 && done == 0) {
|
2004-04-01 04:26:05 +04:00
|
|
|
if (bw->loading_content != 0) {
|
2004-02-25 18:12:58 +03:00
|
|
|
browser_window_set_status(bw,
|
|
|
|
bw->loading_content->
|
|
|
|
status_message);
|
2004-04-01 04:26:05 +04:00
|
|
|
browser_window_set_pointer(GUI_POINTER_DEFAULT);
|
|
|
|
}
|
|
|
|
else {
|
2004-02-25 18:12:58 +03:00
|
|
|
browser_window_set_status(bw,
|
|
|
|
bw->current_content->
|
|
|
|
status_message);
|
2004-04-01 04:26:05 +04:00
|
|
|
browser_window_set_pointer(GUI_POINTER_DEFAULT);
|
|
|
|
}
|
2004-02-25 18:12:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
free(click_boxes);
|
|
|
|
|
|
|
|
return;
|
2002-09-11 18:24:02 +04:00
|
|
|
}
|
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
void browser_window_text_selection(struct browser_window *bw,
|
|
|
|
unsigned long click_x,
|
|
|
|
unsigned long click_y, int click_type)
|
2002-09-11 18:24:02 +04:00
|
|
|
{
|
2004-02-25 18:12:58 +03:00
|
|
|
struct box_selection *click_boxes;
|
|
|
|
int found, plot_index;
|
|
|
|
int i;
|
2002-09-11 18:24:02 +04:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
if (click_type == 0 /* click_CLEAR_SELECTION */ ) {
|
|
|
|
browser_window_clear_text_selection(bw);
|
|
|
|
return;
|
|
|
|
}
|
2002-09-11 18:24:02 +04:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
found = 0;
|
|
|
|
click_boxes = NULL;
|
|
|
|
plot_index = 0;
|
|
|
|
|
|
|
|
assert(bw->current_content->type == CONTENT_HTML);
|
|
|
|
box_under_area(bw->current_content->data.html.layout->children,
|
|
|
|
click_x, click_y, 0, 0, &click_boxes, &found,
|
|
|
|
&plot_index);
|
|
|
|
|
|
|
|
if (found == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (i = found - 1; i >= 0; i--) {
|
|
|
|
if (click_boxes[i].box->type == BOX_INLINE) {
|
|
|
|
struct box_position new_pos;
|
|
|
|
struct box_position *start;
|
|
|
|
struct box_position *end;
|
|
|
|
int click_char_offset, click_pixel_offset;
|
|
|
|
|
|
|
|
/* shortcuts */
|
|
|
|
start =
|
|
|
|
&(bw->current_content->data.html.
|
|
|
|
text_selection.start);
|
|
|
|
end =
|
|
|
|
&(bw->current_content->data.html.
|
|
|
|
text_selection.end);
|
|
|
|
|
|
|
|
if (click_boxes[i].box->text
|
|
|
|
&& click_boxes[i].box->font) {
|
|
|
|
font_position_in_string(click_boxes[i].
|
|
|
|
box->text,
|
|
|
|
click_boxes[i].
|
|
|
|
box->font,
|
|
|
|
click_boxes[i].
|
|
|
|
box->length,
|
|
|
|
click_x -
|
|
|
|
click_boxes[i].
|
|
|
|
actual_x,
|
|
|
|
&click_char_offset,
|
|
|
|
&click_pixel_offset);
|
|
|
|
} else {
|
|
|
|
click_char_offset = 0;
|
|
|
|
click_pixel_offset = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
new_pos.box = click_boxes[i].box;
|
|
|
|
new_pos.actual_box_x = click_boxes[i].actual_x;
|
|
|
|
new_pos.actual_box_y = click_boxes[i].actual_y;
|
|
|
|
new_pos.plot_index = click_boxes[i].plot_index;
|
|
|
|
new_pos.char_offset = click_char_offset;
|
|
|
|
new_pos.pixel_offset = click_pixel_offset;
|
|
|
|
|
|
|
|
if (click_type == 1 /* click_START_SELECTION */ ) {
|
|
|
|
/* update both start and end */
|
|
|
|
browser_window_clear_text_selection(bw);
|
|
|
|
bw->current_content->data.html.
|
|
|
|
text_selection.altering =
|
|
|
|
alter_UNKNOWN;
|
|
|
|
bw->current_content->data.html.
|
|
|
|
text_selection.selected = 1;
|
|
|
|
memcpy(start, &new_pos,
|
|
|
|
sizeof(struct box_position));
|
|
|
|
memcpy(end, &new_pos,
|
|
|
|
sizeof(struct box_position));
|
|
|
|
i = -1;
|
|
|
|
} else if (bw->current_content->data.html.
|
|
|
|
text_selection.selected == 1
|
|
|
|
&& click_type ==
|
|
|
|
2 /* click_ALTER_SELECTION */ ) {
|
|
|
|
/* alter selection */
|
|
|
|
|
|
|
|
if (bw->current_content->data.html.
|
|
|
|
text_selection.altering !=
|
|
|
|
alter_UNKNOWN) {
|
|
|
|
if (bw->current_content->data.html.
|
|
|
|
text_selection.altering ==
|
|
|
|
alter_START) {
|
|
|
|
if (box_position_gt
|
|
|
|
(&new_pos, end)) {
|
|
|
|
bw->current_content->data.html.text_selection.altering = alter_END;
|
|
|
|
browser_window_change_text_selection
|
|
|
|
(bw, end,
|
|
|
|
&new_pos);
|
|
|
|
} else
|
|
|
|
browser_window_change_text_selection
|
|
|
|
(bw, &new_pos,
|
|
|
|
end);
|
|
|
|
} else {
|
|
|
|
if (box_position_lt
|
|
|
|
(&new_pos, start)) {
|
|
|
|
bw->current_content->data.html.text_selection.altering = alter_START;
|
|
|
|
browser_window_change_text_selection
|
|
|
|
(bw, &new_pos,
|
|
|
|
start);
|
|
|
|
} else
|
|
|
|
browser_window_change_text_selection
|
|
|
|
(bw, start,
|
|
|
|
&new_pos);
|
|
|
|
}
|
|
|
|
i = -1;
|
|
|
|
} else {
|
|
|
|
/* work out whether the start or end is being dragged */
|
|
|
|
|
|
|
|
int click_start_distance = 0;
|
|
|
|
int click_end_distance = 0;
|
|
|
|
|
|
|
|
int inside_block = 0;
|
|
|
|
int before_start = 0;
|
|
|
|
int after_end = 0;
|
|
|
|
|
|
|
|
if (box_position_lt
|
|
|
|
(&new_pos, start))
|
|
|
|
before_start = 1;
|
|
|
|
|
|
|
|
if (box_position_gt(&new_pos, end))
|
|
|
|
after_end = 1;
|
|
|
|
|
|
|
|
if (!box_position_lt
|
|
|
|
(&new_pos, start)
|
|
|
|
&& !box_position_gt(&new_pos,
|
|
|
|
end))
|
|
|
|
inside_block = 1;
|
|
|
|
|
|
|
|
if (inside_block == 1) {
|
|
|
|
click_start_distance =
|
|
|
|
box_position_distance
|
|
|
|
(start, &new_pos);
|
|
|
|
click_end_distance =
|
|
|
|
box_position_distance
|
|
|
|
(end, &new_pos);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (before_start == 1
|
|
|
|
|| (after_end == 0
|
|
|
|
&& inside_block == 1
|
|
|
|
&& click_start_distance <
|
|
|
|
click_end_distance)) {
|
|
|
|
/* alter the start position */
|
|
|
|
bw->current_content->data.
|
|
|
|
html.text_selection.
|
|
|
|
altering = alter_START;
|
|
|
|
browser_window_change_text_selection
|
|
|
|
(bw, &new_pos, end);
|
|
|
|
i = -1;
|
|
|
|
} else if (after_end == 1
|
|
|
|
|| (before_start == 0
|
|
|
|
&& inside_block == 1
|
|
|
|
&&
|
|
|
|
click_start_distance
|
|
|
|
>=
|
|
|
|
click_end_distance))
|
|
|
|
{
|
|
|
|
/* alter the end position */
|
|
|
|
bw->current_content->data.
|
|
|
|
html.text_selection.
|
|
|
|
altering = alter_END;
|
|
|
|
browser_window_change_text_selection
|
|
|
|
(bw, start, &new_pos);
|
|
|
|
i = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
free(click_boxes);
|
|
|
|
|
|
|
|
return;
|
2002-09-11 18:24:02 +04:00
|
|
|
}
|
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
void browser_window_clear_text_selection(struct browser_window *bw)
|
2002-09-11 18:24:02 +04:00
|
|
|
{
|
2004-02-25 18:12:58 +03:00
|
|
|
struct box_position *old_start;
|
|
|
|
struct box_position *old_end;
|
2002-09-11 18:24:02 +04:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
assert(bw->current_content->type == CONTENT_HTML);
|
|
|
|
old_start = &(bw->current_content->data.html.text_selection.start);
|
|
|
|
old_end = &(bw->current_content->data.html.text_selection.end);
|
2002-09-11 18:24:02 +04:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
if (bw->current_content->data.html.text_selection.selected == 1) {
|
|
|
|
bw->current_content->data.html.text_selection.selected = 0;
|
|
|
|
browser_window_redraw_boxes(bw, old_start, old_end);
|
|
|
|
}
|
2002-09-11 18:24:02 +04:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
bw->current_content->data.html.text_selection.altering =
|
|
|
|
alter_UNKNOWN;
|
2002-09-11 18:24:02 +04:00
|
|
|
}
|
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
void browser_window_change_text_selection(struct browser_window *bw,
|
|
|
|
struct box_position *new_start,
|
|
|
|
struct box_position *new_end)
|
2002-09-11 18:24:02 +04:00
|
|
|
{
|
2004-02-25 18:12:58 +03:00
|
|
|
struct box_position start;
|
|
|
|
struct box_position end;
|
|
|
|
|
|
|
|
assert(bw->current_content->type == CONTENT_HTML);
|
|
|
|
memcpy(&start,
|
|
|
|
&(bw->current_content->data.html.text_selection.start),
|
|
|
|
sizeof(struct box_position));
|
|
|
|
memcpy(&end, &(bw->current_content->data.html.text_selection.end),
|
|
|
|
sizeof(struct box_position));
|
|
|
|
|
|
|
|
if (!box_position_eq(new_start, &start)) {
|
|
|
|
if (box_position_lt(new_start, &start))
|
|
|
|
browser_window_redraw_boxes(bw, new_start, &start);
|
|
|
|
else
|
|
|
|
browser_window_redraw_boxes(bw, &start, new_start);
|
|
|
|
memcpy(&start, new_start, sizeof(struct box_position));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!box_position_eq(new_end, &end)) {
|
|
|
|
if (box_position_lt(new_end, &end))
|
|
|
|
browser_window_redraw_boxes(bw, new_end, &end);
|
|
|
|
else
|
|
|
|
browser_window_redraw_boxes(bw, &end, new_end);
|
|
|
|
memcpy(&end, new_end, sizeof(struct box_position));
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(&(bw->current_content->data.html.text_selection.start),
|
|
|
|
&start, sizeof(struct box_position));
|
|
|
|
memcpy(&(bw->current_content->data.html.text_selection.end), &end,
|
|
|
|
sizeof(struct box_position));
|
|
|
|
|
|
|
|
bw->current_content->data.html.text_selection.selected = 1;
|
2002-09-11 18:24:02 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
int box_position_lt(struct box_position *x, struct box_position *y)
|
2002-09-11 18:24:02 +04:00
|
|
|
{
|
2004-02-25 18:12:58 +03:00
|
|
|
return (x->plot_index < y->plot_index ||
|
|
|
|
(x->plot_index == y->plot_index
|
|
|
|
&& x->char_offset < y->char_offset));
|
2002-09-11 18:24:02 +04:00
|
|
|
}
|
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
int box_position_gt(struct box_position *x, struct box_position *y)
|
2002-09-11 18:24:02 +04:00
|
|
|
{
|
2004-02-25 18:12:58 +03:00
|
|
|
return (x->plot_index > y->plot_index ||
|
|
|
|
(x->plot_index == y->plot_index
|
|
|
|
&& x->char_offset > y->char_offset));
|
2002-09-11 18:24:02 +04:00
|
|
|
}
|
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
int box_position_eq(struct box_position *x, struct box_position *y)
|
2002-09-11 18:24:02 +04:00
|
|
|
{
|
2004-02-25 18:12:58 +03:00
|
|
|
return (x->plot_index == y->plot_index
|
|
|
|
&& x->char_offset == y->char_offset);
|
2002-09-11 18:24:02 +04:00
|
|
|
}
|
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
int box_position_distance(struct box_position *x, struct box_position *y)
|
2002-09-11 18:24:02 +04:00
|
|
|
{
|
2004-02-25 18:12:58 +03:00
|
|
|
int dx = (y->actual_box_x + y->pixel_offset)
|
|
|
|
- (x->actual_box_x + x->pixel_offset);
|
|
|
|
int dy = (y->actual_box_y + y->box->height / 2)
|
|
|
|
- (x->actual_box_y + x->box->height / 2);
|
|
|
|
return dx * dx + dy * dy;
|
2002-09-11 18:24:02 +04:00
|
|
|
}
|
|
|
|
|
2003-03-04 01:40:39 +03:00
|
|
|
unsigned long redraw_min_x = LONG_MAX;
|
|
|
|
unsigned long redraw_min_y = LONG_MAX;
|
|
|
|
unsigned long redraw_max_x = 0;
|
|
|
|
unsigned long redraw_max_y = 0;
|
2002-09-11 18:24:02 +04:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
int redraw_box_list(struct browser_window *bw, struct box *current,
|
|
|
|
unsigned long x, unsigned long y,
|
|
|
|
struct box_position *start, struct box_position *end,
|
|
|
|
int *plot)
|
2002-09-11 18:24:02 +04:00
|
|
|
{
|
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
struct box *c;
|
|
|
|
|
|
|
|
if (current == start->box)
|
|
|
|
*plot = 1;
|
|
|
|
|
|
|
|
if (*plot >= 1 && current->type == BOX_INLINE) {
|
|
|
|
unsigned long minx = x + current->x;
|
|
|
|
unsigned long miny = y + current->y;
|
|
|
|
unsigned long maxx = x + current->x + current->width;
|
|
|
|
unsigned long maxy = y + current->y + current->height;
|
|
|
|
|
|
|
|
if (minx < redraw_min_x)
|
|
|
|
redraw_min_x = minx;
|
|
|
|
if (miny < redraw_min_y)
|
|
|
|
redraw_min_y = miny;
|
|
|
|
if (maxx > redraw_max_x)
|
|
|
|
redraw_max_x = maxx;
|
|
|
|
if (maxy > redraw_max_y)
|
|
|
|
redraw_max_y = maxy;
|
|
|
|
|
|
|
|
*plot = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (current == end->box)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
for (c = current->children; c != 0; c = c->next)
|
|
|
|
if (c->type != BOX_FLOAT_LEFT
|
|
|
|
&& c->type != BOX_FLOAT_RIGHT)
|
|
|
|
if (redraw_box_list
|
|
|
|
(bw, c, x + current->x, y + current->y, start,
|
|
|
|
end, plot) == 1)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
for (c = current->float_children; c != 0; c = c->next_float)
|
|
|
|
if (redraw_box_list(bw, c, x + current->x, y + current->y,
|
|
|
|
start, end, plot) == 1)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
return 0;
|
2002-09-11 18:24:02 +04:00
|
|
|
}
|
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
void browser_window_redraw_boxes(struct browser_window *bw,
|
|
|
|
struct box_position *start,
|
|
|
|
struct box_position *end)
|
2002-09-11 18:24:02 +04:00
|
|
|
{
|
2004-02-25 18:12:58 +03:00
|
|
|
int plot = 0;
|
2002-09-11 18:24:02 +04:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
assert(bw->current_content->type == CONTENT_HTML);
|
|
|
|
if (box_position_eq(start, end))
|
|
|
|
return;
|
2002-09-11 18:24:02 +04:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
redraw_min_x = LONG_MAX;
|
|
|
|
redraw_min_y = LONG_MAX;
|
|
|
|
redraw_max_x = 0;
|
|
|
|
redraw_max_y = 0;
|
2002-09-11 18:24:02 +04:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
redraw_box_list(bw, bw->current_content->data.html.layout,
|
|
|
|
0, 0, start, end, &plot);
|
2002-09-11 18:24:02 +04:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
if (plot == 2)
|
|
|
|
gui_window_redraw(bw->window, redraw_min_x, redraw_min_y,
|
|
|
|
redraw_max_x, redraw_max_y);
|
2002-09-11 18:24:02 +04:00
|
|
|
}
|
2002-12-26 00:38:45 +03:00
|
|
|
|
2003-10-25 18:13:49 +04:00
|
|
|
/**
|
|
|
|
* Collect controls and submit a form.
|
|
|
|
*/
|
|
|
|
|
2003-10-25 04:35:49 +04:00
|
|
|
void browser_form_submit(struct browser_window *bw, struct form *form,
|
|
|
|
struct form_control *submit_button)
|
2003-05-22 17:21:45 +04:00
|
|
|
{
|
2003-12-26 03:17:55 +03:00
|
|
|
char *data = 0, *url = 0, *url1 = 0, *base;
|
2003-10-25 04:35:49 +04:00
|
|
|
struct form_successful_control *success;
|
2003-05-22 17:21:45 +04:00
|
|
|
|
2003-12-11 22:06:39 +03:00
|
|
|
assert(form);
|
2003-12-26 03:17:55 +03:00
|
|
|
assert(bw->current_content->type == CONTENT_HTML);
|
2003-12-11 22:06:39 +03:00
|
|
|
|
2003-10-25 04:35:49 +04:00
|
|
|
success = form_successful_controls(form, submit_button);
|
2003-12-26 03:17:55 +03:00
|
|
|
base = bw->current_content->data.html.base_url;
|
2003-10-25 04:35:49 +04:00
|
|
|
|
2003-10-25 18:13:49 +04:00
|
|
|
switch (form->method) {
|
|
|
|
case method_GET:
|
|
|
|
data = form_url_encode(success);
|
|
|
|
url = xcalloc(1, strlen(form->action) + strlen(data) + 2);
|
2004-02-03 02:38:02 +03:00
|
|
|
if(form->action[strlen(form->action)-1] == '?') {
|
|
|
|
sprintf(url, "%s%s", form->action, data);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
sprintf(url, "%s?%s", form->action, data);
|
|
|
|
}
|
2003-12-26 03:17:55 +03:00
|
|
|
url1 = url_join(url, base);
|
|
|
|
if (!url1)
|
|
|
|
break;
|
2004-02-25 18:12:58 +03:00
|
|
|
browser_window_go(bw, url1);
|
2003-10-25 18:13:49 +04:00
|
|
|
break;
|
2004-02-25 18:12:58 +03:00
|
|
|
|
2003-10-25 18:13:49 +04:00
|
|
|
case method_POST_URLENC:
|
|
|
|
data = form_url_encode(success);
|
2003-12-26 03:17:55 +03:00
|
|
|
url = url_join(form->action, base);
|
|
|
|
if (!url)
|
|
|
|
break;
|
2004-02-25 18:12:58 +03:00
|
|
|
browser_window_go_post(bw, url, data, 0, true);
|
2003-10-25 18:13:49 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case method_POST_MULTIPART:
|
2003-12-26 03:17:55 +03:00
|
|
|
url = url_join(form->action, base);
|
2004-03-02 21:02:41 +03:00
|
|
|
if (!url)
|
|
|
|
break;
|
2004-02-25 18:12:58 +03:00
|
|
|
browser_window_go_post(bw, url, 0, success, true);
|
2003-10-25 18:13:49 +04:00
|
|
|
break;
|
2004-02-25 18:12:58 +03:00
|
|
|
|
2003-10-25 18:13:49 +04:00
|
|
|
default:
|
|
|
|
assert(0);
|
|
|
|
}
|
2003-05-22 17:21:45 +04:00
|
|
|
|
2003-10-25 04:35:49 +04:00
|
|
|
form_free_successful(success);
|
2003-12-26 03:17:55 +03:00
|
|
|
free(data);
|
|
|
|
free(url);
|
|
|
|
free(url1);
|
2003-05-22 17:21:45 +04:00
|
|
|
}
|