2003-07-30 17:06:22 +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-13 19:09:12 +03:00
|
|
|
* Copyright 2004 James Bursa <bursa@users.sourceforge.net>
|
2004-07-25 23:25:26 +04:00
|
|
|
* Copyright 2004 Andrew Timmins <atimmins@blueyonder.co.uk>
|
2003-07-30 17:06:22 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _NETSURF_RISCOS_GUI_H_
|
|
|
|
#define _NETSURF_RISCOS_GUI_H_
|
|
|
|
|
2003-09-11 01:44:11 +04:00
|
|
|
#include <stdbool.h>
|
2004-08-14 16:57:02 +04:00
|
|
|
#include <stdlib.h>
|
2005-11-20 23:16:08 +03:00
|
|
|
#include <oslib/osspriteop.h>
|
|
|
|
#include <oslib/wimp.h>
|
|
|
|
#include <rufl.h>
|
2003-07-30 17:06:22 +04:00
|
|
|
#include "netsurf/desktop/browser.h"
|
2006-07-13 16:46:02 +04:00
|
|
|
#include "netsurf/content/content_type.h"
|
|
|
|
#include "netsurf/utils/config.h"
|
2003-08-22 01:39:07 +04:00
|
|
|
|
2005-04-22 01:36:23 +04:00
|
|
|
#define RISCOS5 0xAA
|
|
|
|
|
2005-12-31 07:38:27 +03:00
|
|
|
#define THUMBNAIL_WIDTH 100
|
|
|
|
#define THUMBNAIL_HEIGHT 86
|
|
|
|
|
2005-04-22 01:36:23 +04:00
|
|
|
extern int os_version;
|
|
|
|
|
2005-01-23 19:09:05 +03:00
|
|
|
extern const char * NETSURF_DIR;
|
2003-08-27 02:37:32 +04:00
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
struct toolbar;
|
2004-10-18 01:16:00 +04:00
|
|
|
struct plotter_table;
|
2006-07-13 16:46:02 +04:00
|
|
|
struct gui_window;
|
|
|
|
struct tree;
|
|
|
|
struct node;
|
|
|
|
struct history;
|
|
|
|
struct css_style;
|
2004-07-17 17:00:38 +04:00
|
|
|
|
2005-04-15 09:54:44 +04:00
|
|
|
extern wimp_t task_handle; /**< RISC OS wimp task handle. */
|
|
|
|
|
2006-01-03 01:07:36 +03:00
|
|
|
extern wimp_w dialog_info, dialog_saveas, dialog_zoom, dialog_pageinfo,
|
2005-04-08 00:46:22 +04:00
|
|
|
dialog_objinfo, dialog_tooltip, dialog_warning, dialog_openurl,
|
2006-01-03 01:07:36 +03:00
|
|
|
dialog_debug, dialog_folder, dialog_entry, dialog_url_complete,
|
|
|
|
dialog_search, dialog_print, dialog_theme_install;
|
2006-09-02 19:52:41 +04:00
|
|
|
extern struct gui_window *gui_track_gui_window;
|
2005-12-31 07:38:27 +03:00
|
|
|
extern wimp_w current_menu_window;
|
|
|
|
extern bool current_menu_open;
|
2005-04-08 00:46:22 +04:00
|
|
|
extern wimp_menu *font_menu; /* font.c */
|
2005-12-31 07:38:27 +03:00
|
|
|
extern wimp_menu *recent_search_menu; /* search.c */
|
2003-11-15 03:26:42 +03:00
|
|
|
extern wimp_w history_window;
|
2003-10-25 04:35:49 +04:00
|
|
|
extern struct form_control *current_gadget;
|
2003-11-08 02:51:13 +03:00
|
|
|
extern bool gui_reformat_pending;
|
2004-02-02 03:22:59 +03:00
|
|
|
extern bool gui_redraw_debug;
|
2004-06-30 03:13:40 +04:00
|
|
|
extern osspriteop_area *gui_sprites;
|
2004-07-09 02:05:35 +04:00
|
|
|
extern bool dialog_folder_add, dialog_entry_add, hotlist_insert;
|
2004-08-19 05:01:31 +04:00
|
|
|
extern bool print_active, print_text_black;
|
2006-07-13 16:46:02 +04:00
|
|
|
extern struct tree *hotlist_tree, *global_history_tree, *cookies_tree;
|
2004-02-25 18:12:58 +03:00
|
|
|
|
2005-04-15 09:54:44 +04:00
|
|
|
typedef enum { GUI_DRAG_NONE, GUI_DRAG_SELECTION, GUI_DRAG_DOWNLOAD_SAVE,
|
|
|
|
GUI_DRAG_SAVE, GUI_DRAG_SCROLL, GUI_DRAG_STATUS_RESIZE,
|
2005-03-20 22:28:50 +03:00
|
|
|
GUI_DRAG_TREE_SELECT, GUI_DRAG_TREE_MOVE,
|
2006-09-02 19:52:41 +04:00
|
|
|
GUI_DRAG_TOOLBAR_CONFIG, GUI_DRAG_FRAME } gui_drag_type;
|
2005-04-15 09:54:44 +04:00
|
|
|
|
2004-02-26 03:44:42 +03:00
|
|
|
extern gui_drag_type gui_current_drag_type;
|
2003-07-30 17:06:22 +04:00
|
|
|
|
2006-08-21 07:11:44 +04:00
|
|
|
/** desktop font, size and style being used */
|
|
|
|
extern char ro_gui_desktop_font_family[];
|
|
|
|
extern int ro_gui_desktop_font_size;
|
|
|
|
extern rufl_style ro_gui_desktop_font_style;
|
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
|
|
|
|
/** RISC OS data for a browser window. */
|
2004-06-28 03:24:11 +04:00
|
|
|
struct gui_window {
|
2004-07-17 17:00:38 +04:00
|
|
|
/** Associated platform-independent browser window data. */
|
|
|
|
struct browser_window *bw;
|
|
|
|
|
|
|
|
struct toolbar *toolbar; /**< Toolbar, or 0 if not present. */
|
|
|
|
|
|
|
|
wimp_w window; /**< RISC OS window handle. */
|
|
|
|
|
|
|
|
/** Window has been resized, and content needs reformatting. */
|
|
|
|
bool reformat_pending;
|
|
|
|
int old_width; /**< Width when last opened / os units. */
|
|
|
|
int old_height; /**< Height when last opened / os units. */
|
|
|
|
|
|
|
|
char title[256]; /**< Buffer for window title. */
|
|
|
|
|
|
|
|
int throbber; /**< Current frame of throbber animation. */
|
|
|
|
int throbtime; /**< Time of last throbber frame. */
|
|
|
|
|
2006-03-24 06:44:37 +03:00
|
|
|
int iconise_icon; /**< ID number of icon when window is iconised */
|
2006-09-02 19:52:41 +04:00
|
|
|
|
|
|
|
char validation[12]; /**< Validation string for colours */
|
2006-03-24 06:44:37 +03:00
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
/** Options. */
|
|
|
|
struct {
|
|
|
|
float scale; /**< Scale, 1.0 = 100%. */
|
|
|
|
bool background_images; /**< Display background images. */
|
2004-07-21 00:02:59 +04:00
|
|
|
bool buffer_animations; /**< Use screen buffering for animations. */
|
|
|
|
bool buffer_everything; /**< Use screen buffering for everything. */
|
2004-07-17 17:00:38 +04:00
|
|
|
} option;
|
|
|
|
|
|
|
|
struct gui_window *prev; /**< Previous in linked list. */
|
|
|
|
struct gui_window *next; /**< Next in linked list. */
|
2003-07-30 17:06:22 +04:00
|
|
|
};
|
|
|
|
|
2003-10-01 04:26:42 +04:00
|
|
|
|
2004-07-17 17:00:38 +04:00
|
|
|
extern struct gui_window *ro_gui_current_redraw_gui;
|
|
|
|
|
|
|
|
|
2003-08-22 01:39:07 +04:00
|
|
|
/* in gui.c */
|
2005-03-20 17:57:51 +03:00
|
|
|
void ro_gui_open_window_request(wimp_open *open);
|
2004-05-25 14:42:28 +04:00
|
|
|
void ro_gui_open_help_page(const char *page);
|
2003-11-08 02:51:13 +03:00
|
|
|
void ro_gui_screen_size(int *width, int *height);
|
2003-12-11 04:23:57 +03:00
|
|
|
void ro_gui_view_source(struct content *content);
|
2003-12-27 03:11:57 +03:00
|
|
|
void ro_gui_drag_box_start(wimp_pointer *pointer);
|
2005-04-23 06:58:27 +04:00
|
|
|
bool ro_gui_prequit(void);
|
2006-01-25 05:43:07 +03:00
|
|
|
const char *ro_gui_default_language(void);
|
2003-08-22 01:39:07 +04:00
|
|
|
|
2003-08-28 23:21:27 +04:00
|
|
|
/* in download.c */
|
|
|
|
void ro_gui_download_init(void);
|
2004-06-28 03:24:11 +04:00
|
|
|
void ro_gui_download_drag_end(wimp_dragged *drag);
|
|
|
|
void ro_gui_download_datasave_ack(wimp_message *message);
|
2005-04-23 06:58:27 +04:00
|
|
|
bool ro_gui_download_prequit(void);
|
2003-08-28 23:21:27 +04:00
|
|
|
|
2003-10-23 04:09:17 +04:00
|
|
|
/* in 401login.c */
|
2004-01-05 05:10:59 +03:00
|
|
|
#ifdef WITH_AUTH
|
2003-10-23 04:09:17 +04:00
|
|
|
void ro_gui_401login_init(void);
|
2004-01-05 05:10:59 +03:00
|
|
|
#endif
|
2003-10-23 04:09:17 +04:00
|
|
|
|
2006-02-23 18:06:54 +03:00
|
|
|
/* in sslcert.c */
|
|
|
|
#ifdef WITH_SSL
|
|
|
|
void ro_gui_cert_init(void);
|
2006-07-16 04:21:15 +04:00
|
|
|
void ro_gui_cert_open(struct tree *tree, struct node *node);
|
2006-02-23 18:06:54 +03:00
|
|
|
#endif
|
|
|
|
|
2003-11-08 02:51:13 +03:00
|
|
|
/* in window.c */
|
2004-07-30 20:16:07 +04:00
|
|
|
void ro_gui_window_quit(void);
|
2004-08-31 01:03:48 +04:00
|
|
|
void ro_gui_window_update_theme(void);
|
|
|
|
void ro_gui_window_update_dimensions(struct gui_window *g, int yscroll);
|
2004-07-17 17:00:38 +04:00
|
|
|
void ro_gui_window_mouse_at(struct gui_window *g, wimp_pointer *pointer);
|
2005-12-31 07:38:27 +03:00
|
|
|
bool ro_gui_toolbar_click(wimp_pointer *pointer);
|
|
|
|
bool ro_gui_status_click(wimp_pointer *pointer);
|
2003-11-08 02:51:13 +03:00
|
|
|
void ro_gui_throb(void);
|
2004-07-17 17:00:38 +04:00
|
|
|
struct gui_window *ro_gui_window_lookup(wimp_w window);
|
|
|
|
struct gui_window *ro_gui_toolbar_lookup(wimp_w window);
|
|
|
|
struct gui_window *ro_gui_status_lookup(wimp_w window);
|
2003-12-21 05:27:22 +03:00
|
|
|
void ro_gui_scroll_request(wimp_scroll *scroll);
|
2004-02-25 18:12:58 +03:00
|
|
|
int window_x_units(int x, wimp_window_state *state);
|
|
|
|
int window_y_units(int y, wimp_window_state *state);
|
2005-04-20 16:24:41 +04:00
|
|
|
bool window_screen_pos(struct gui_window *g, int x, int y, os_coord *pos);
|
2004-07-17 17:00:38 +04:00
|
|
|
bool ro_gui_window_dataload(struct gui_window *g, wimp_message *message);
|
2005-04-22 01:36:23 +04:00
|
|
|
bool ro_gui_toolbar_dataload(struct gui_window *g, wimp_message *message);
|
2004-07-17 17:00:38 +04:00
|
|
|
void ro_gui_window_process_reformats(void);
|
|
|
|
void ro_gui_window_default_options(struct browser_window *bw);
|
2004-11-03 02:23:07 +03:00
|
|
|
void ro_gui_window_redraw_all(void);
|
2005-02-07 17:28:43 +03:00
|
|
|
void ro_gui_window_prepare_navigate_all(void);
|
2005-04-15 09:54:44 +04:00
|
|
|
browser_mouse_state ro_gui_mouse_click_state(wimp_mouse_state buttons);
|
|
|
|
bool ro_gui_shift_pressed(void);
|
|
|
|
bool ro_gui_ctrl_pressed(void);
|
|
|
|
void ro_gui_window_scroll_end(struct gui_window *g, wimp_dragged *drag);
|
2006-09-02 19:52:41 +04:00
|
|
|
void ro_gui_window_frame_resize_end(struct gui_window *g, wimp_dragged *drag);
|
2005-04-18 03:32:09 +04:00
|
|
|
void ro_gui_window_set_scale(struct gui_window *g, float scale);
|
2006-07-05 20:50:35 +04:00
|
|
|
void ro_gui_window_iconise(struct gui_window *g,
|
|
|
|
wimp_full_message_window_info *wi);
|
|
|
|
bool ro_gui_window_navigate_up(struct gui_window *g, const char *url);
|
2006-07-09 21:38:34 +04:00
|
|
|
void ro_gui_window_update_boxes(void);
|
2003-11-08 02:51:13 +03:00
|
|
|
|
2003-11-15 03:26:42 +03:00
|
|
|
/* in history.c */
|
|
|
|
void ro_gui_history_init(void);
|
2006-07-05 20:50:35 +04:00
|
|
|
void ro_gui_history_open(struct browser_window *bw, struct history *history,
|
|
|
|
bool pointer);
|
2004-04-13 01:46:08 +04:00
|
|
|
void ro_gui_history_mouse_at(wimp_pointer *pointer);
|
2004-06-30 03:13:40 +04:00
|
|
|
|
|
|
|
/* in hotlist.c */
|
2004-12-09 13:30:44 +03:00
|
|
|
void ro_gui_hotlist_initialise(void);
|
2004-07-04 22:44:51 +04:00
|
|
|
void ro_gui_hotlist_save(void);
|
2004-12-09 13:30:44 +03:00
|
|
|
void ro_gui_hotlist_prepare_folder_dialog(struct node *node);
|
|
|
|
void ro_gui_hotlist_prepare_entry_dialog(struct node *node);
|
2005-12-31 07:38:27 +03:00
|
|
|
bool ro_gui_hotlist_dialog_apply(wimp_w w);
|
2004-07-06 02:17:59 +04:00
|
|
|
|
2004-03-11 05:19:14 +03:00
|
|
|
/* in filetype.c */
|
|
|
|
int ro_content_filetype(struct content *content);
|
2005-12-31 07:38:27 +03:00
|
|
|
int ro_content_filetype_from_type(content_type type);
|
2004-03-11 05:19:14 +03:00
|
|
|
|
2004-03-21 15:46:56 +03:00
|
|
|
/* in schedule.c */
|
|
|
|
extern bool sched_active;
|
|
|
|
extern os_t sched_time;
|
|
|
|
|
2004-06-11 00:41:26 +04:00
|
|
|
/* in debugwin.c */
|
|
|
|
void ro_gui_debugwin_open(void);
|
|
|
|
|
2004-08-06 00:32:00 +04:00
|
|
|
/* in search.c */
|
2005-12-31 07:38:27 +03:00
|
|
|
void ro_gui_search_init(void);
|
2005-04-08 00:46:22 +04:00
|
|
|
void ro_gui_search_prepare(struct gui_window *g);
|
2005-12-31 07:38:27 +03:00
|
|
|
bool ro_gui_search_prepare_menu(void);
|
|
|
|
void ro_gui_search_end(wimp_w w);
|
2004-08-06 00:32:00 +04:00
|
|
|
|
2004-08-09 10:28:57 +04:00
|
|
|
/* in print.c */
|
2005-12-31 07:38:27 +03:00
|
|
|
void ro_gui_print_init(void);
|
2005-04-08 00:46:22 +04:00
|
|
|
void ro_gui_print_prepare(struct gui_window *g);
|
2004-08-09 10:28:57 +04:00
|
|
|
|
2005-02-20 16:19:19 +03:00
|
|
|
/* in font.c */
|
2005-02-23 02:36:14 +03:00
|
|
|
void nsfont_init(void);
|
2006-01-03 00:24:43 +03:00
|
|
|
bool nsfont_exists(const char *font_family);
|
|
|
|
const char *nsfont_fallback_font(void);
|
2005-02-20 16:19:19 +03:00
|
|
|
bool nsfont_paint(struct css_style *style, const char *string,
|
|
|
|
size_t length, int x, int y, float scale);
|
2005-11-20 23:16:08 +03:00
|
|
|
void nsfont_read_style(const struct css_style *style,
|
|
|
|
const char **font_family, unsigned int *font_size,
|
|
|
|
rufl_style *font_style);
|
2006-08-21 07:11:44 +04:00
|
|
|
void ro_gui_wimp_get_desktop_font(void);
|
2005-02-20 16:19:19 +03:00
|
|
|
|
2004-10-18 01:16:00 +04:00
|
|
|
/* in plotters.c */
|
|
|
|
extern const struct plotter_table ro_plotters;
|
|
|
|
extern int ro_plot_origin_x;
|
|
|
|
extern int ro_plot_origin_y;
|
|
|
|
void ro_plot_set_scale(float scale);
|
|
|
|
|
2005-01-14 01:42:39 +03:00
|
|
|
/* in theme_install.c */
|
2005-12-31 07:38:27 +03:00
|
|
|
bool ro_gui_theme_install_apply(wimp_w w);
|
2005-01-14 01:42:39 +03:00
|
|
|
|
2006-03-25 23:30:35 +03:00
|
|
|
/* icon numbers */
|
2004-08-31 01:03:48 +04:00
|
|
|
#define ICON_STATUS_RESIZE 0
|
|
|
|
#define ICON_STATUS_TEXT 1
|
2003-11-20 03:16:31 +03:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
#define ICON_ZOOM_VALUE 1
|
|
|
|
#define ICON_ZOOM_DEC 2
|
|
|
|
#define ICON_ZOOM_INC 3
|
2005-03-13 04:23:10 +03:00
|
|
|
#define ICON_ZOOM_75 5
|
|
|
|
#define ICON_ZOOM_100 6
|
|
|
|
#define ICON_ZOOM_150 7
|
|
|
|
#define ICON_ZOOM_200 8
|
2004-02-25 18:12:58 +03:00
|
|
|
#define ICON_ZOOM_CANCEL 9
|
|
|
|
#define ICON_ZOOM_OK 10
|
|
|
|
|
2004-02-26 03:44:42 +03:00
|
|
|
#define ICON_SAVE_ICON 0
|
|
|
|
#define ICON_SAVE_PATH 1
|
|
|
|
#define ICON_SAVE_OK 2
|
|
|
|
#define ICON_SAVE_CANCEL 3
|
|
|
|
|
2004-04-03 06:59:35 +04:00
|
|
|
#define ICON_PAGEINFO_TITLE 0
|
|
|
|
#define ICON_PAGEINFO_URL 1
|
|
|
|
#define ICON_PAGEINFO_ENC 2
|
|
|
|
#define ICON_PAGEINFO_TYPE 3
|
|
|
|
#define ICON_PAGEINFO_ICON 4
|
|
|
|
|
2004-05-05 04:02:13 +04:00
|
|
|
#define ICON_OBJINFO_URL 0
|
|
|
|
#define ICON_OBJINFO_TARGET 1
|
|
|
|
#define ICON_OBJINFO_TYPE 2
|
|
|
|
#define ICON_OBJINFO_ICON 3
|
|
|
|
|
2004-05-07 23:14:54 +04:00
|
|
|
#define ICON_WARNING_MESSAGE 0
|
|
|
|
#define ICON_WARNING_CONTINUE 1
|
|
|
|
#define ICON_WARNING_HELP 2
|
|
|
|
|
2004-08-06 00:32:00 +04:00
|
|
|
#define ICON_SEARCH_TEXT 0
|
2005-07-19 07:56:17 +04:00
|
|
|
#define ICON_SEARCH_CASE_SENSITIVE 1
|
|
|
|
#define ICON_SEARCH_FIND_NEXT 2
|
|
|
|
#define ICON_SEARCH_FIND_PREV 3
|
|
|
|
#define ICON_SEARCH_CANCEL 4
|
|
|
|
#define ICON_SEARCH_STATUS 5
|
2005-12-31 07:38:27 +03:00
|
|
|
#define ICON_SEARCH_MENU 8
|
2006-02-23 18:06:54 +03:00
|
|
|
#define ICON_SEARCH_SHOW_ALL 9
|
2004-08-06 00:32:00 +04:00
|
|
|
|
2005-01-14 01:42:39 +03:00
|
|
|
#define ICON_THEME_INSTALL_MESSAGE 0
|
|
|
|
#define ICON_THEME_INSTALL_INSTALL 1
|
|
|
|
#define ICON_THEME_INSTALL_CANCEL 2
|
|
|
|
|
2005-04-08 00:46:22 +04:00
|
|
|
#define ICON_OPENURL_URL 1
|
|
|
|
#define ICON_OPENURL_CANCEL 2
|
|
|
|
#define ICON_OPENURL_OPEN 3
|
2005-05-11 02:49:41 +04:00
|
|
|
#define ICON_OPENURL_MENU 4
|
2005-04-08 00:46:22 +04:00
|
|
|
|
2005-12-31 07:38:27 +03:00
|
|
|
#define ICON_ENTRY_NAME 1
|
|
|
|
#define ICON_ENTRY_URL 3
|
|
|
|
#define ICON_ENTRY_CANCEL 4
|
|
|
|
#define ICON_ENTRY_OK 5
|
|
|
|
#define ICON_ENTRY_RECENT 6
|
|
|
|
|
|
|
|
#define ICON_FOLDER_NAME 1
|
|
|
|
#define ICON_FOLDER_CANCEL 2
|
|
|
|
#define ICON_FOLDER_OK 3
|
|
|
|
|
2003-07-30 17:06:22 +04:00
|
|
|
#endif
|