2008-08-02 18:31:32 +04:00
|
|
|
/*
|
2017-01-01 19:45:27 +03:00
|
|
|
* Copyright 2008-2017 Chris Young <chris@unsatisfactorysoftware.co.uk>
|
2008-08-02 18:31:32 +04:00
|
|
|
*
|
|
|
|
* This file is part of NetSurf, http://www.netsurf-browser.org/
|
|
|
|
*
|
|
|
|
* NetSurf is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; version 2 of the License.
|
|
|
|
*
|
|
|
|
* NetSurf is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef AMIGA_GUI_H
|
|
|
|
#define AMIGA_GUI_H
|
2016-04-20 17:54:18 +03:00
|
|
|
|
2015-09-03 02:24:04 +03:00
|
|
|
#include <stdbool.h>
|
2008-08-09 02:38:13 +04:00
|
|
|
#include <graphics/rastport.h>
|
2008-08-09 19:19:04 +04:00
|
|
|
#include <intuition/classusr.h>
|
2008-08-23 20:17:51 +04:00
|
|
|
#include <dos/dos.h>
|
2010-10-05 23:14:46 +04:00
|
|
|
#include <devices/inputevent.h>
|
2016-04-20 17:54:18 +03:00
|
|
|
|
2016-05-30 13:01:40 +03:00
|
|
|
#include "netsurf/window.h"
|
2016-05-30 14:07:16 +03:00
|
|
|
#include "netsurf/mouse.h"
|
2016-04-20 17:54:18 +03:00
|
|
|
|
2017-01-15 19:05:07 +03:00
|
|
|
#include "amiga/gui_menu.h"
|
2015-09-03 02:24:04 +03:00
|
|
|
#include "amiga/object.h"
|
2010-12-30 03:53:11 +03:00
|
|
|
#include "amiga/os3support.h"
|
2008-08-09 02:38:13 +04:00
|
|
|
|
2015-02-24 01:58:57 +03:00
|
|
|
#ifdef __amigaos4__
|
|
|
|
#define HOOKF(ret,func,type,ptr,msgtype) static ret func(struct Hook *hook, type ptr, msgtype msg)
|
|
|
|
#else
|
2015-02-24 02:16:34 +03:00
|
|
|
#define HOOKF(ret,func,type,ptr,msgtype) static ASM ret func(REG(a0, struct Hook *hook),REG(a2, type ptr), REG(a1, msgtype msg))
|
2015-02-24 01:58:57 +03:00
|
|
|
#endif
|
|
|
|
|
2008-08-09 19:19:04 +04:00
|
|
|
enum
|
|
|
|
{
|
2010-02-13 21:03:05 +03:00
|
|
|
OID_MAIN = 0,
|
|
|
|
OID_VSCROLL,
|
|
|
|
OID_HSCROLL,
|
|
|
|
GID_MAIN,
|
2008-10-05 17:17:18 +04:00
|
|
|
GID_TABLAYOUT,
|
2008-08-09 19:19:04 +04:00
|
|
|
GID_BROWSER,
|
|
|
|
GID_STATUS,
|
|
|
|
GID_URL,
|
2009-12-19 03:39:52 +03:00
|
|
|
GID_ICON,
|
2008-08-09 19:19:04 +04:00
|
|
|
GID_STOP,
|
|
|
|
GID_RELOAD,
|
|
|
|
GID_HOME,
|
|
|
|
GID_BACK,
|
|
|
|
GID_FORWARD,
|
2008-09-14 02:39:48 +04:00
|
|
|
GID_THROBBER,
|
2009-12-22 02:25:35 +03:00
|
|
|
GID_SEARCH_ICON,
|
2013-11-23 16:23:56 +04:00
|
|
|
GID_FAVE,
|
2013-11-23 17:11:30 +04:00
|
|
|
GID_FAVE_ADD,
|
|
|
|
GID_FAVE_RMV,
|
2008-10-06 01:20:12 +04:00
|
|
|
GID_CLOSETAB,
|
2010-02-14 03:46:53 +03:00
|
|
|
GID_CLOSETAB_BM,
|
2010-02-14 17:00:33 +03:00
|
|
|
GID_ADDTAB,
|
|
|
|
GID_ADDTAB_BM,
|
2008-10-05 03:29:17 +04:00
|
|
|
GID_TABS,
|
2010-02-14 03:46:53 +03:00
|
|
|
GID_TABS_FLAG,
|
2008-12-14 02:23:24 +03:00
|
|
|
GID_SEARCHSTRING,
|
2009-12-23 02:04:59 +03:00
|
|
|
GID_TOOLBARLAYOUT,
|
2012-11-28 23:29:43 +04:00
|
|
|
GID_HOTLIST,
|
|
|
|
GID_HOTLISTLAYOUT,
|
2012-11-29 02:42:23 +04:00
|
|
|
GID_HOTLISTSEPBAR,
|
2009-08-29 03:12:18 +04:00
|
|
|
GID_HSCROLL,
|
2014-10-26 19:35:05 +03:00
|
|
|
GID_HSCROLLLAYOUT,
|
2014-10-25 18:08:04 +04:00
|
|
|
GID_VSCROLL,
|
|
|
|
GID_VSCROLLLAYOUT,
|
2010-02-13 21:03:05 +03:00
|
|
|
GID_LAST
|
2008-08-09 19:19:04 +04:00
|
|
|
};
|
|
|
|
|
2008-12-14 02:23:24 +03:00
|
|
|
struct find_window;
|
2017-06-11 00:21:46 +03:00
|
|
|
struct ami_history_local_window;
|
|
|
|
struct ami_menu_data;
|
2008-12-14 02:23:24 +03:00
|
|
|
|
2012-11-28 23:29:43 +04:00
|
|
|
#define AMI_GUI_TOOLBAR_MAX 20
|
|
|
|
|
2016-12-30 03:59:12 +03:00
|
|
|
struct ami_win_event_table {
|
|
|
|
/* callback to handle events when using a shared msgport
|
|
|
|
*
|
|
|
|
* @param pointer to our window structure (must start with ami_generic_window)
|
|
|
|
* @return TRUE if window was destroyed during event processing
|
|
|
|
*/
|
|
|
|
BOOL (*event)(void *w);
|
|
|
|
|
|
|
|
/* callback for explicit window closure
|
|
|
|
* some windows are implicitly closed by the browser and should set this to NULL
|
|
|
|
*/
|
|
|
|
void (*close)(void *w);
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ami_generic_window {
|
2010-04-10 02:38:51 +04:00
|
|
|
struct nsObject *node;
|
2016-12-30 16:06:42 +03:00
|
|
|
const struct ami_win_event_table *tbl;
|
2016-12-30 03:59:12 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
struct gui_window_2 {
|
|
|
|
struct ami_generic_window w;
|
2008-08-02 18:31:32 +04:00
|
|
|
struct Window *win;
|
2016-07-09 02:44:35 +03:00
|
|
|
Object *restrict objects[GID_LAST];
|
2014-11-16 17:24:18 +03:00
|
|
|
struct gui_window *gw; /* currently-displayed gui_window */
|
2008-08-23 20:17:51 +04:00
|
|
|
bool redraw_required;
|
2008-09-21 02:07:11 +04:00
|
|
|
int throbber_frame;
|
2008-10-05 03:29:17 +04:00
|
|
|
struct List tab_list;
|
2008-10-05 17:17:18 +04:00
|
|
|
ULONG tabs;
|
|
|
|
ULONG next_tab;
|
2016-09-04 19:35:32 +03:00
|
|
|
struct Node *last_new_tab;
|
2008-08-11 21:53:45 +04:00
|
|
|
struct Hook scrollerhook;
|
2008-08-18 23:07:12 +04:00
|
|
|
browser_mouse_state mouse_state;
|
2008-09-01 22:03:40 +04:00
|
|
|
browser_mouse_state key_state;
|
2008-09-14 02:39:48 +04:00
|
|
|
ULONG throbber_update_count;
|
2008-12-14 02:23:24 +03:00
|
|
|
struct find_window *searchwin;
|
2009-01-11 00:31:21 +03:00
|
|
|
ULONG oldh;
|
|
|
|
ULONG oldv;
|
2011-03-01 02:46:49 +03:00
|
|
|
int temp;
|
2009-05-31 19:05:26 +04:00
|
|
|
bool redraw_scroll;
|
2009-06-03 23:44:43 +04:00
|
|
|
bool new_content;
|
2017-01-15 20:51:55 +03:00
|
|
|
struct ami_menu_data *menu_data[AMI_MENU_AREXX_MAX + 1]; /* only for GadTools menus */
|
2010-10-05 23:14:46 +04:00
|
|
|
ULONG hotlist_items;
|
2016-07-09 02:44:35 +03:00
|
|
|
Object *restrict hotlist_toolbar_lab[AMI_GUI_TOOLBAR_MAX];
|
2012-11-28 23:29:43 +04:00
|
|
|
struct List hotlist_toolbar_list;
|
2014-06-15 18:39:49 +04:00
|
|
|
struct List *web_search_list;
|
|
|
|
Object *search_bm;
|
2016-07-09 02:44:35 +03:00
|
|
|
char *restrict svbuffer;
|
|
|
|
char *restrict status;
|
|
|
|
char *restrict wintitle;
|
|
|
|
char *restrict helphints[GID_LAST];
|
2013-02-12 23:12:14 +04:00
|
|
|
browser_mouse_state prev_mouse_state;
|
2010-12-17 02:28:33 +03:00
|
|
|
struct timeval lastclick;
|
2011-07-03 15:05:18 +04:00
|
|
|
struct AppIcon *appicon; /* iconify appicon */
|
|
|
|
struct DiskObject *dobj; /* iconify appicon */
|
2012-04-29 19:59:37 +04:00
|
|
|
struct Hook favicon_hook;
|
|
|
|
struct Hook throbber_hook;
|
2015-09-03 21:57:04 +03:00
|
|
|
struct Hook *ctxmenu_hook;
|
2016-07-09 02:44:35 +03:00
|
|
|
Object *restrict history_ctxmenu[2];
|
|
|
|
Object *restrict clicktab_ctxmenu;
|
2012-01-12 01:41:55 +04:00
|
|
|
gui_drag_type drag_op;
|
|
|
|
struct IBox *ptr_lock;
|
2012-04-28 23:43:46 +04:00
|
|
|
struct AppWindow *appwin;
|
2016-01-25 03:01:55 +03:00
|
|
|
struct MinList *shared_pens;
|
2013-01-06 04:21:15 +04:00
|
|
|
gui_pointer_shape mouse_pointer;
|
2015-09-06 11:06:20 +03:00
|
|
|
struct Menu *imenu; /* Intuition menu */
|
2016-07-03 19:09:11 +03:00
|
|
|
bool closed; /* Window has been closed (via menu) */
|
2008-08-02 18:31:32 +04:00
|
|
|
};
|
|
|
|
|
2016-12-31 03:58:03 +03:00
|
|
|
extern struct MinList *window_list; /**\todo stop arexx.c poking about in here */
|
2016-06-02 02:03:45 +03:00
|
|
|
extern struct Screen *scrn;
|
|
|
|
extern struct MsgPort *sport;
|
|
|
|
extern struct gui_window *cur_gw;
|
2016-06-01 09:59:19 +03:00
|
|
|
|
2019-05-08 02:08:35 +03:00
|
|
|
#define IS_CURRENT_GW(GWIN,GW) (ami_gui2_get_gui_window(GWIN) == GW)
|
|
|
|
|
2016-11-20 00:40:32 +03:00
|
|
|
/* The return value for these functions must be deallocated using FreeVec() */
|
2016-11-20 00:02:42 +03:00
|
|
|
STRPTR ami_locale_langs(int *codeset);
|
2016-11-20 00:40:32 +03:00
|
|
|
char *ami_gui_get_cache_favicon_name(struct nsurl *url, bool only_if_avail);
|
2016-11-20 00:02:42 +03:00
|
|
|
|
2016-11-20 00:40:32 +03:00
|
|
|
/* Functions lacking documentation */
|
2008-10-05 03:29:17 +04:00
|
|
|
void ami_get_msg(void);
|
2014-02-11 00:40:08 +04:00
|
|
|
void ami_try_quit(void);
|
2008-10-06 21:47:31 +04:00
|
|
|
void ami_quit_netsurf(void);
|
2013-04-04 22:46:33 +04:00
|
|
|
void ami_schedule_redraw(struct gui_window_2 *gwin, bool full_redraw);
|
2010-10-05 23:14:46 +04:00
|
|
|
int ami_key_to_nskey(ULONG keycode, struct InputEvent *ie);
|
2016-07-03 20:48:46 +03:00
|
|
|
bool ami_text_box_at_point(struct gui_window_2 *gwin, ULONG *restrict x, ULONG *restrict y);
|
|
|
|
bool ami_mouse_to_ns_coords(struct gui_window_2 *gwin, int *restrict x, int *restrict y,
|
2015-09-03 21:57:04 +03:00
|
|
|
int mouse_x, int mouse_y);
|
2011-02-28 22:31:35 +03:00
|
|
|
BOOL ami_gadget_hit(Object *obj, int x, int y);
|
2011-06-03 22:20:56 +04:00
|
|
|
void ami_gui_history(struct gui_window_2 *gwin, bool back);
|
2014-07-01 01:37:05 +04:00
|
|
|
void ami_gui_hotlist_update_all(void);
|
2012-12-10 00:39:10 +04:00
|
|
|
void ami_gui_tabs_toggle_all(void);
|
2013-08-15 23:10:55 +04:00
|
|
|
bool ami_locate_resource(char *fullpath, const char *file);
|
2013-11-23 16:23:56 +04:00
|
|
|
void ami_gui_update_hotlist_button(struct gui_window_2 *gwin);
|
2014-01-03 22:17:25 +04:00
|
|
|
nserror ami_gui_new_blank_tab(struct gui_window_2 *gwin);
|
2014-10-26 18:41:44 +03:00
|
|
|
int ami_gui_count_windows(int window, int *tabs);
|
2014-12-04 14:42:12 +03:00
|
|
|
void ami_gui_set_scale(struct gui_window *gw, float scale);
|
2010-07-24 20:39:37 +04:00
|
|
|
|
2016-01-31 20:58:27 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Close a window and all tabs attached to it.
|
|
|
|
*
|
2016-12-30 03:59:12 +03:00
|
|
|
* @param w gui_window_2 to act upon.
|
2016-01-31 20:58:27 +03:00
|
|
|
*/
|
2016-12-30 03:59:12 +03:00
|
|
|
void ami_gui_close_window(void *w);
|
2016-01-31 20:58:27 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Close all tabs in a window except the active one.
|
|
|
|
*
|
|
|
|
* @param gwin gui_window_2 to act upon.
|
|
|
|
*/
|
|
|
|
void ami_gui_close_inactive_tabs(struct gui_window_2 *gwin);
|
|
|
|
|
2014-11-15 16:52:06 +03:00
|
|
|
/**
|
|
|
|
* Compatibility function to get space.gadget render area.
|
|
|
|
*
|
|
|
|
* @param obj A space.gadget object.
|
|
|
|
* @param bbox A pointer to a struct IBox *.
|
|
|
|
* @return error status.
|
|
|
|
*/
|
|
|
|
nserror ami_gui_get_space_box(Object *obj, struct IBox **bbox);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Free any data obtained via ami_gui_get_space_box().
|
|
|
|
*
|
|
|
|
* @param bbox A pointer to a struct IBox.
|
|
|
|
*/
|
|
|
|
void ami_gui_free_space_box(struct IBox *bbox);
|
|
|
|
|
2014-11-16 17:06:12 +03:00
|
|
|
/**
|
|
|
|
* Get the application.library ID NetSurf is registered as.
|
|
|
|
*
|
|
|
|
* @return App ID.
|
|
|
|
*/
|
|
|
|
uint32 ami_gui_get_app_id(void);
|
|
|
|
|
2014-11-16 19:40:41 +03:00
|
|
|
/**
|
|
|
|
* Get the string for NetSurf's screen titlebar.
|
|
|
|
*
|
|
|
|
* @return String to use as the screen's titlebar text.
|
|
|
|
*/
|
|
|
|
STRPTR ami_gui_get_screen_title(void);
|
|
|
|
|
2016-09-10 22:36:11 +03:00
|
|
|
/**
|
|
|
|
* Switch to the most-recently-opened tab
|
|
|
|
*/
|
|
|
|
void ami_gui_switch_to_new_tab(struct gui_window_2 *gwin);
|
2016-12-30 03:59:12 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a window to the NetSurf window list (to enable event processing)
|
|
|
|
*/
|
2016-12-30 16:06:42 +03:00
|
|
|
nserror ami_gui_win_list_add(void *win, int type, const struct ami_win_event_table *table);
|
2016-12-30 03:59:12 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove a window from the NetSurf window list
|
|
|
|
*/
|
|
|
|
void ami_gui_win_list_remove(void *win);
|
2017-01-01 19:45:27 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get which qualifier keys are being pressed
|
|
|
|
*/
|
|
|
|
int ami_gui_get_quals(Object *win_obj);
|
2017-01-02 02:57:35 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Check rect is not already queued for redraw
|
|
|
|
*/
|
|
|
|
bool ami_gui_window_update_box_deferred_check(struct MinList *deferred_rects,
|
|
|
|
const struct rect *restrict new_rect, APTR mempool);
|
|
|
|
|
2019-05-07 23:45:40 +03:00
|
|
|
/**
|
|
|
|
* Adjust scale by specified amount
|
|
|
|
*/
|
|
|
|
void ami_gui_adjust_scale(struct gui_window *gw, float adjustment);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get browser window from gui_window
|
|
|
|
*/
|
|
|
|
struct browser_window *ami_gui_get_browser_window(struct gui_window *gw);
|
|
|
|
|
2019-05-08 02:08:35 +03:00
|
|
|
/**
|
|
|
|
* Get browser window from gui_window_2
|
|
|
|
*/
|
|
|
|
struct browser_window *ami_gui2_get_browser_window(struct gui_window_2 *gwin);
|
|
|
|
|
2019-05-07 23:45:40 +03:00
|
|
|
/**
|
|
|
|
* Get gui_window_2 from gui_window
|
|
|
|
*/
|
|
|
|
struct gui_window_2 *ami_gui_get_gui_window_2(struct gui_window *gw);
|
|
|
|
|
2019-05-08 02:08:35 +03:00
|
|
|
/**
|
|
|
|
* Get gui_window from gui_window_2
|
|
|
|
*/
|
|
|
|
struct gui_window *ami_gui2_get_gui_window(struct gui_window_2 *gwin);
|
|
|
|
|
2019-05-07 23:45:40 +03:00
|
|
|
/**
|
|
|
|
* Get download list from gui_window
|
|
|
|
*/
|
|
|
|
struct List *ami_gui_get_download_list(struct gui_window *gw);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get tab title from gui_window
|
|
|
|
*/
|
|
|
|
const char *ami_gui_get_tab_title(struct gui_window *gw);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get tab node from gui_window
|
|
|
|
*/
|
|
|
|
struct Node *ami_gui_get_tab_node(struct gui_window *gw);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get favicon from gui_window
|
|
|
|
*/
|
|
|
|
struct hlcache_handle *ami_gui_get_favicon(struct gui_window *gw);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get local history window from gui_window
|
|
|
|
*/
|
|
|
|
struct ami_history_local_window *ami_gui_get_history_window(struct gui_window *gw);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set local history window in gui_window
|
|
|
|
*/
|
|
|
|
void ami_gui_set_history_window(struct gui_window *gw, struct ami_history_local_window *hw);
|
|
|
|
|
2019-05-08 02:30:51 +03:00
|
|
|
/**
|
|
|
|
* Set search window in gui_window
|
|
|
|
*/
|
|
|
|
void ami_gui_set_find_window(struct gui_window *gw, struct find_window *fw);
|
|
|
|
|
2019-05-07 23:45:40 +03:00
|
|
|
/**
|
|
|
|
* Get throbbing status from gui_window
|
|
|
|
*/
|
|
|
|
bool ami_gui_get_throbbing(struct gui_window *gw);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set throbbing status in gui_window
|
|
|
|
*/
|
|
|
|
void ami_gui_set_throbbing(struct gui_window *gw, bool throbbing);
|
|
|
|
|
2019-05-07 23:58:09 +03:00
|
|
|
/**
|
|
|
|
* Get window from gui_window
|
|
|
|
*/
|
|
|
|
struct Window *ami_gui_get_window(struct gui_window *gw);
|
|
|
|
|
2019-05-08 01:43:15 +03:00
|
|
|
/**
|
|
|
|
* Get window from gui_window_2
|
|
|
|
*/
|
|
|
|
struct Window *ami_gui2_get_window(struct gui_window_2 *gwin);
|
|
|
|
|
2019-05-08 00:07:57 +03:00
|
|
|
/**
|
|
|
|
* Get imenu from gui_window
|
|
|
|
*/
|
|
|
|
struct Menu *ami_gui_get_menu(struct gui_window *gw);
|
|
|
|
|
2019-05-08 00:22:12 +03:00
|
|
|
/**
|
|
|
|
* Set imenu to gui_window_2. A value of NULL will free the menu.
|
|
|
|
*/
|
|
|
|
void ami_gui2_set_menu(struct gui_window_2 *gwin, struct Menu *menu);
|
|
|
|
|
2019-05-08 02:16:06 +03:00
|
|
|
/**
|
|
|
|
* Get control (for select menu) from gui_window
|
|
|
|
*/
|
|
|
|
struct form_control *ami_gui_get_control(struct gui_window *gw);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set control (for select menu) to gui_window
|
|
|
|
*/
|
|
|
|
void ami_gui_set_control(struct gui_window *gw, struct form_control *control);
|
|
|
|
|
2008-08-02 18:31:32 +04:00
|
|
|
#endif
|
2014-01-11 00:32:20 +04:00
|
|
|
|