2011-03-12 18:08:07 +03:00
|
|
|
/*
|
|
|
|
* Copyright 2011 Daniel Silverstone <dsilvers@digital-scurf.org>
|
|
|
|
*
|
|
|
|
* This file is part of NetSurf, http://www.netsurf-browser.org/
|
|
|
|
*
|
|
|
|
* NetSurf is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; version 2 of the License.
|
|
|
|
*
|
|
|
|
* NetSurf is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Browser-related callbacks */
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
|
|
|
|
#include "desktop/browser.h"
|
|
|
|
#include "desktop/gui.h"
|
|
|
|
#include "utils/ring.h"
|
2011-03-12 20:27:18 +03:00
|
|
|
#include "utils/log.h"
|
2011-03-12 18:08:07 +03:00
|
|
|
|
|
|
|
#include "monkey/browser.h"
|
2011-06-30 19:48:07 +04:00
|
|
|
#include "monkey/plot.h"
|
2011-03-12 18:08:07 +03:00
|
|
|
|
|
|
|
static uint32_t win_ctr = 0;
|
|
|
|
|
|
|
|
static struct gui_window *gw_ring = NULL;
|
|
|
|
|
|
|
|
struct gui_window *
|
|
|
|
monkey_find_window_by_num(uint32_t win_num)
|
|
|
|
{
|
|
|
|
struct gui_window *ret = NULL;
|
|
|
|
|
|
|
|
RING_ITERATE_START(struct gui_window, gw_ring, c_ring) {
|
|
|
|
if (c_ring->win_num == win_num) {
|
|
|
|
ret = c_ring;
|
|
|
|
RING_ITERATE_STOP(gw_ring, c_ring);
|
|
|
|
}
|
|
|
|
} RING_ITERATE_END(gw_ring, c_ring);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct gui_window *
|
|
|
|
monkey_find_window_by_content(hlcache_handle *content)
|
|
|
|
{
|
|
|
|
struct gui_window *ret = NULL;
|
|
|
|
|
|
|
|
RING_ITERATE_START(struct gui_window, gw_ring, c_ring) {
|
|
|
|
if (c_ring->bw->current_content == content) {
|
|
|
|
ret = c_ring;
|
|
|
|
RING_ITERATE_STOP(gw_ring, c_ring);
|
|
|
|
}
|
|
|
|
} RING_ITERATE_END(gw_ring, c_ring);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
monkey_window_process_reformats(void)
|
|
|
|
{
|
|
|
|
RING_ITERATE_START(struct gui_window, gw_ring, c_ring) {
|
|
|
|
if (c_ring == NULL)
|
|
|
|
RING_ITERATE_STOP(gw_ring, c_ring);
|
|
|
|
if (c_ring->bw->reformat_pending) {
|
|
|
|
browser_window_reformat(c_ring->bw,
|
2011-06-24 13:30:33 +04:00
|
|
|
false,
|
2011-03-12 18:08:07 +03:00
|
|
|
c_ring->width,
|
|
|
|
c_ring->height);
|
|
|
|
}
|
|
|
|
} RING_ITERATE_END(gw_ring, c_ring);
|
|
|
|
}
|
|
|
|
|
2011-03-12 20:54:02 +03:00
|
|
|
void
|
|
|
|
monkey_kill_browser_windows(void)
|
|
|
|
{
|
|
|
|
while (gw_ring != NULL) {
|
|
|
|
browser_window_destroy(gw_ring->bw);
|
|
|
|
}
|
|
|
|
}
|
2011-03-12 18:08:07 +03:00
|
|
|
|
|
|
|
struct gui_window *
|
|
|
|
gui_create_browser_window(struct browser_window *bw,
|
|
|
|
struct browser_window *clone, bool new_tab)
|
|
|
|
{
|
|
|
|
struct gui_window *ret = calloc(sizeof(*ret), 1);
|
|
|
|
if (ret == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
ret->win_num = win_ctr++;
|
|
|
|
ret->bw = bw;
|
|
|
|
|
|
|
|
ret->width = 800;
|
|
|
|
ret->height = 600;
|
|
|
|
|
2011-03-12 20:27:18 +03:00
|
|
|
fprintf(stdout, "WINDOW NEW WIN %u FOR %p CLONE %p NEWTAB %s\n",
|
2011-03-12 18:08:07 +03:00
|
|
|
ret->win_num, bw, clone, new_tab ? "TRUE" : "FALSE");
|
2011-03-12 20:27:18 +03:00
|
|
|
fprintf(stdout, "WINDOW SIZE WIN %u WIDTH %d HEIGHT %d\n",
|
2011-03-12 18:08:07 +03:00
|
|
|
ret->win_num, ret->width, ret->height);
|
|
|
|
|
|
|
|
RING_INSERT(gw_ring, ret);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_window_destroy(struct gui_window *g)
|
|
|
|
{
|
2011-03-12 20:27:18 +03:00
|
|
|
fprintf(stdout, "WINDOW DESTROY WIN %u\n", g->win_num);
|
2011-03-12 18:08:07 +03:00
|
|
|
RING_REMOVE(gw_ring, g);
|
|
|
|
free(g);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_window_set_title(struct gui_window *g, const char *title)
|
|
|
|
{
|
2011-03-12 20:27:18 +03:00
|
|
|
fprintf(stdout, "WINDOW TITLE WIN %u STR %s\n", g->win_num, title);
|
2011-03-12 18:08:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_window_redraw_window(struct gui_window *g)
|
|
|
|
{
|
2011-03-12 20:27:18 +03:00
|
|
|
fprintf(stdout, "WINDOW REDRAW WIN %u\n", g->win_num);
|
2011-03-12 18:08:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_window_get_dimensions(struct gui_window *g, int *width, int *height,
|
|
|
|
bool scaled)
|
|
|
|
{
|
2011-03-12 20:27:18 +03:00
|
|
|
fprintf(stdout, "WINDOW GET_DIMENSIONS WIN %u WIDTH %d HEIGHT %d\n",
|
2011-03-12 18:08:07 +03:00
|
|
|
g->win_num, g->width, g->height);
|
|
|
|
*width = g->width;
|
|
|
|
*height = g->height;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_window_new_content(struct gui_window *g)
|
|
|
|
{
|
2011-03-12 20:27:18 +03:00
|
|
|
fprintf(stdout, "WINDOW NEW_CONTENT WIN %u\n", g->win_num);
|
2011-03-12 18:08:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_window_set_icon(struct gui_window *g, hlcache_handle *icon)
|
|
|
|
{
|
2011-03-12 20:27:18 +03:00
|
|
|
fprintf(stdout, "WINDOW NEW_ICON WIN %u\n", g->win_num);
|
2011-03-12 18:08:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_window_start_throbber(struct gui_window *g)
|
|
|
|
{
|
2011-03-12 20:27:18 +03:00
|
|
|
fprintf(stdout, "WINDOW START_THROBBER WIN %u\n", g->win_num);
|
2011-03-12 18:08:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_window_stop_throbber(struct gui_window *g)
|
|
|
|
{
|
2011-03-12 20:27:18 +03:00
|
|
|
fprintf(stdout, "WINDOW STOP_THROBBER WIN %u\n", g->win_num);
|
2011-03-12 18:08:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_window_set_scroll(struct gui_window *g, int sx, int sy)
|
|
|
|
{
|
|
|
|
g->scrollx = sx;
|
|
|
|
g->scrolly = sy;
|
2011-03-12 20:27:18 +03:00
|
|
|
fprintf(stdout, "WINDOW SET_SCROLL WIN %u X %d Y %d\n", g->win_num, sx, sy);
|
2011-03-12 18:08:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2011-07-06 16:56:31 +04:00
|
|
|
gui_window_update_box(struct gui_window *g, const struct rect *rect)
|
2011-03-12 18:08:07 +03:00
|
|
|
{
|
2011-03-12 20:27:18 +03:00
|
|
|
fprintf(stdout, "WINDOW UPDATE_BOX WIN %u X %d Y %d WIDTH %d HEIGHT %d\n",
|
2011-07-06 16:56:31 +04:00
|
|
|
g->win_num, rect->x0, rect->y0,
|
|
|
|
(rect->x1 - rect->x0), (rect->y1 - rect->y0));
|
2011-03-12 18:08:07 +03:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_window_update_extent(struct gui_window *g)
|
|
|
|
{
|
|
|
|
if (!g->bw->current_content)
|
|
|
|
return;
|
|
|
|
|
2011-03-12 20:27:18 +03:00
|
|
|
fprintf(stdout, "WINDOW UPDATE_EXTENT WIN %u WIDTH %d HEIGHT %d\n",
|
2011-03-12 18:08:07 +03:00
|
|
|
g->win_num,
|
|
|
|
content_get_width(g->bw->current_content),
|
|
|
|
content_get_height(g->bw->current_content));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_window_set_status(struct gui_window *g, const char *text)
|
|
|
|
{
|
2011-03-12 20:27:18 +03:00
|
|
|
fprintf(stdout, "WINDOW SET_STATUS WIN %u STR %s\n", g->win_num, text);
|
2011-03-12 18:08:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_window_set_pointer(struct gui_window *g, gui_pointer_shape shape)
|
|
|
|
{
|
|
|
|
const char *ptr_name = "UNKNOWN";
|
|
|
|
|
|
|
|
switch (shape) {
|
|
|
|
case GUI_POINTER_POINT:
|
|
|
|
ptr_name = "POINT";
|
|
|
|
break;
|
|
|
|
case GUI_POINTER_CARET:
|
|
|
|
ptr_name = "CARET";
|
|
|
|
break;
|
|
|
|
case GUI_POINTER_UP:
|
|
|
|
ptr_name = "UP";
|
|
|
|
break;
|
|
|
|
case GUI_POINTER_DOWN:
|
|
|
|
ptr_name = "DOWN";
|
|
|
|
break;
|
|
|
|
case GUI_POINTER_LEFT:
|
|
|
|
ptr_name = "LEFT";
|
|
|
|
break;
|
|
|
|
case GUI_POINTER_RIGHT:
|
|
|
|
ptr_name = "RIGHT";
|
|
|
|
break;
|
|
|
|
case GUI_POINTER_LD:
|
|
|
|
ptr_name = "LD";
|
|
|
|
break;
|
|
|
|
case GUI_POINTER_RD:
|
|
|
|
ptr_name = "RD";
|
|
|
|
break;
|
|
|
|
case GUI_POINTER_LU:
|
|
|
|
ptr_name = "LU";
|
|
|
|
break;
|
|
|
|
case GUI_POINTER_RU:
|
|
|
|
ptr_name = "RU";
|
|
|
|
break;
|
|
|
|
case GUI_POINTER_CROSS:
|
|
|
|
ptr_name = "CROSS";
|
|
|
|
break;
|
|
|
|
case GUI_POINTER_MOVE:
|
|
|
|
ptr_name = "MOVE";
|
|
|
|
break;
|
|
|
|
case GUI_POINTER_WAIT:
|
|
|
|
ptr_name = "WAIT";
|
|
|
|
break;
|
|
|
|
case GUI_POINTER_HELP:
|
|
|
|
ptr_name = "HELP";
|
|
|
|
break;
|
|
|
|
case GUI_POINTER_MENU:
|
|
|
|
ptr_name = "MENU";
|
|
|
|
break;
|
|
|
|
case GUI_POINTER_PROGRESS:
|
|
|
|
ptr_name = "PROGRESS";
|
|
|
|
break;
|
|
|
|
case GUI_POINTER_NO_DROP:
|
|
|
|
ptr_name = "NO_DROP";
|
|
|
|
break;
|
|
|
|
case GUI_POINTER_NOT_ALLOWED:
|
|
|
|
ptr_name = "NOT_ALLOWED";
|
|
|
|
break;
|
|
|
|
case GUI_POINTER_DEFAULT:
|
|
|
|
ptr_name = "DEFAULT";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2011-03-12 20:27:18 +03:00
|
|
|
fprintf(stdout, "WINDOW SET_POINTER WIN %u POINTER %s\n", g->win_num, ptr_name);
|
2011-03-12 18:08:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_window_set_url(struct gui_window *g, const char *url)
|
|
|
|
{
|
2011-03-12 20:27:18 +03:00
|
|
|
fprintf(stdout, "WINDOW SET_URL WIN %u URL %s\n", g->win_num, url);
|
2011-03-12 18:08:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_drag_save_object(gui_save_type type, hlcache_handle *c,
|
|
|
|
struct gui_window *g)
|
|
|
|
{
|
|
|
|
/* Ignore? */
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
gui_window_get_scroll(struct gui_window *g, int *sx, int *sy)
|
|
|
|
{
|
2011-03-12 20:27:18 +03:00
|
|
|
fprintf(stdout, "WINDOW GET_SCROLL WIN %u X %d Y %d\n",
|
2011-03-12 18:08:07 +03:00
|
|
|
g->win_num, g->scrollx, g->scrolly);
|
|
|
|
*sx = g->scrollx;
|
|
|
|
*sy = g->scrolly;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
gui_window_scroll_start(struct gui_window *g)
|
|
|
|
{
|
2011-03-12 20:27:18 +03:00
|
|
|
fprintf(stdout, "WINDOW SCROLL_START WIN %u\n", g->win_num);
|
2011-03-12 18:08:07 +03:00
|
|
|
g->scrollx = g->scrolly = 0;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_window_set_search_ico(hlcache_handle *ico)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_window_scroll_visible(struct gui_window *g, int x0, int y0,
|
|
|
|
int x1, int y1)
|
|
|
|
{
|
2011-03-12 20:27:18 +03:00
|
|
|
fprintf(stdout, "WINDOW SCROLL_VISIBLE WIN %u X0 %d Y0 %d X1 %d Y1 %d\n",
|
2011-03-12 18:08:07 +03:00
|
|
|
g->win_num, x0, y0, x1, y1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_drag_save_selection(struct selection *s, struct gui_window *g)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_start_selection(struct gui_window *g)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_clear_selection(struct gui_window *g)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_paste_from_clipboard(struct gui_window *g, int x, int y)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
gui_empty_clipboard(void)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
gui_add_to_clipboard(const char *text, size_t length, bool space)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
gui_commit_clipboard(void)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
gui_copy_to_clipboard(struct selection *s)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_window_place_caret(struct gui_window *g, int x, int y, int height)
|
|
|
|
{
|
2011-03-12 20:27:18 +03:00
|
|
|
fprintf(stdout, "WINDOW PLACE_CARET WIN %u X %d Y %d HEIGHT %d\n",
|
2011-03-12 18:08:07 +03:00
|
|
|
g->win_num, x, y, height);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_window_remove_caret(struct gui_window *g)
|
|
|
|
{
|
2011-03-12 20:27:18 +03:00
|
|
|
fprintf(stdout, "WINDOW REMOVE_CARET WIN %u\n", g->win_num);
|
2011-03-12 18:08:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2012-01-11 18:20:26 +04:00
|
|
|
gui_window_drag_start(struct gui_window *g, gui_drag_type type,
|
2012-01-11 20:45:17 +04:00
|
|
|
const struct rect *rect)
|
2011-03-12 18:08:07 +03:00
|
|
|
{
|
2012-02-05 12:16:41 +04:00
|
|
|
fprintf(stdout, "WINDOW SCROLL_START WIN %u TYPE %i\n", g->win_num, type);
|
2011-03-12 18:08:07 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_create_form_select_menu(struct browser_window *bw,
|
|
|
|
struct form_control *control)
|
|
|
|
{
|
2011-03-12 20:27:18 +03:00
|
|
|
fprintf(stdout, "WINDOW SELECT_MENU WIN %u\n",
|
2011-03-12 18:08:07 +03:00
|
|
|
bw->window->win_num);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_window_save_link(struct gui_window *g, const char *url,
|
|
|
|
const char *title)
|
|
|
|
{
|
2011-03-12 20:27:18 +03:00
|
|
|
fprintf(stdout, "WINDOW SAVE_LINK WIN %u URL %s TITLE %s\n",
|
2011-03-12 18:08:07 +03:00
|
|
|
g->win_num, url, title);
|
|
|
|
}
|
2011-03-12 20:27:18 +03:00
|
|
|
|
|
|
|
|
|
|
|
/**** Handlers ****/
|
|
|
|
|
|
|
|
static void
|
|
|
|
monkey_window_handle_new(int argc, char **argv)
|
|
|
|
{
|
|
|
|
struct browser_window *bw;
|
|
|
|
if (argc > 3)
|
|
|
|
return;
|
|
|
|
bw = browser_window_create((argc == 3) ? argv[2] : NULL, NULL, NULL, true, false);
|
2011-11-25 20:46:00 +04:00
|
|
|
(void) bw;
|
2011-03-12 20:27:18 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
monkey_window_handle_destroy(int argc, char **argv)
|
|
|
|
{
|
|
|
|
struct gui_window *gw;
|
|
|
|
uint32_t nr = atoi((argc > 2) ? argv[2] : "-1");
|
|
|
|
|
|
|
|
gw = monkey_find_window_by_num(nr);
|
|
|
|
|
|
|
|
if (gw == NULL) {
|
|
|
|
fprintf(stdout, "ERROR WINDOW NUM BAD\n");
|
|
|
|
} else {
|
|
|
|
browser_window_destroy(gw->bw);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
monkey_window_handle_go(int argc, char **argv)
|
|
|
|
{
|
|
|
|
struct gui_window *gw;
|
|
|
|
|
|
|
|
if (argc < 4 || argc > 5) {
|
|
|
|
fprintf(stdout, "ERROR WINDOW GO ARGS BAD\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
gw = monkey_find_window_by_num(atoi(argv[2]));
|
|
|
|
|
|
|
|
if (gw == NULL) {
|
|
|
|
fprintf(stdout, "ERROR WINDOW NUM BAD\n");
|
|
|
|
} else {
|
|
|
|
browser_window_go(gw->bw, argv[3], (argc == 5) ? argv[4] : NULL, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-03-12 20:54:02 +03:00
|
|
|
static void
|
|
|
|
monkey_window_handle_redraw(int argc, char **argv)
|
|
|
|
{
|
|
|
|
struct gui_window *gw;
|
|
|
|
struct rect clip;
|
2011-06-30 19:48:07 +04:00
|
|
|
struct redraw_context ctx = {
|
|
|
|
.interactive = true,
|
2011-12-24 02:39:25 +04:00
|
|
|
.background_images = true,
|
2011-06-30 19:48:07 +04:00
|
|
|
.plot = &monkey_plotters
|
|
|
|
};
|
2011-03-12 20:54:02 +03:00
|
|
|
|
|
|
|
if (argc != 3 && argc != 7) {
|
2011-11-25 22:08:30 +04:00
|
|
|
fprintf(stdout, "ERROR WINDOW REDRAW ARGS BAD\n");
|
2011-03-12 20:54:02 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
gw = monkey_find_window_by_num(atoi(argv[2]));
|
|
|
|
|
|
|
|
if (gw == NULL) {
|
|
|
|
fprintf(stdout, "ERROR WINDOW NUM BAD\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
clip.x0 = 0;
|
|
|
|
clip.y0 = 0;
|
|
|
|
clip.x1 = gw->width;
|
|
|
|
clip.y1 = gw->height;
|
|
|
|
|
|
|
|
if (argc == 7) {
|
|
|
|
clip.x0 = atoi(argv[3]);
|
|
|
|
clip.y0 = atoi(argv[4]);
|
|
|
|
clip.x1 = atoi(argv[5]);
|
|
|
|
clip.y1 = atoi(argv[6]);
|
|
|
|
}
|
|
|
|
|
|
|
|
LOG(("Issue redraw"));
|
2011-11-25 22:08:30 +04:00
|
|
|
fprintf(stdout, "WINDOW REDRAW WIN %d START\n", atoi(argv[2]));
|
2011-06-30 19:48:07 +04:00
|
|
|
browser_window_redraw(gw->bw, gw->scrollx, gw->scrolly, &clip, &ctx);
|
2011-11-25 22:08:30 +04:00
|
|
|
fprintf(stdout, "WINDOW REDRAW WIN %d STOP\n", atoi(argv[2]));
|
2011-03-12 20:54:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
monkey_window_handle_reload(int argc, char **argv)
|
|
|
|
{
|
|
|
|
struct gui_window *gw;
|
|
|
|
if (argc != 3 && argc != 4) {
|
2011-11-25 22:08:30 +04:00
|
|
|
fprintf(stdout, "ERROR WINDOW RELOAD ARGS BAD\n");
|
2011-03-12 20:54:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
gw = monkey_find_window_by_num(atoi(argv[2]));
|
|
|
|
|
|
|
|
if (gw == NULL) {
|
|
|
|
fprintf(stdout, "ERROR WINDOW NUM BAD\n");
|
|
|
|
} else {
|
|
|
|
browser_window_reload(gw->bw, argc == 4);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-12 20:27:18 +03:00
|
|
|
void
|
|
|
|
monkey_window_handle_command(int argc, char **argv)
|
|
|
|
{
|
|
|
|
if (argc == 1)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (strcmp(argv[1], "NEW") == 0) {
|
|
|
|
monkey_window_handle_new(argc, argv);
|
|
|
|
} else if (strcmp(argv[1], "DESTROY") == 0) {
|
|
|
|
monkey_window_handle_destroy(argc, argv);
|
|
|
|
} else if (strcmp(argv[1], "GO") == 0) {
|
|
|
|
monkey_window_handle_go(argc, argv);
|
2011-03-12 20:54:02 +03:00
|
|
|
} else if (strcmp(argv[1], "REDRAW") == 0) {
|
|
|
|
monkey_window_handle_redraw(argc, argv);
|
|
|
|
} else if (strcmp(argv[1], "RELOAD") == 0) {
|
|
|
|
monkey_window_handle_reload(argc, argv);
|
2011-11-25 22:08:30 +04:00
|
|
|
} else {
|
|
|
|
fprintf(stdout, "ERROR WINDOW COMMAND UNKNOWN %s\n", argv[1]);
|
2011-03-12 20:27:18 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|