summaryrefslogtreecommitdiff
path: root/atari/gui.h
diff options
context:
space:
mode:
authorOle Loots <ole@monochrom.net>2013-09-21 05:29:04 +0200
committerOle Loots <ole@monochrom.net>2013-10-06 01:24:17 +0200
commit49f4fa0d787c867ed24ac49897feb347939d4ef3 (patch)
tree3400ff2f7072abd6f05863aed7157f7084e51cb9 /atari/gui.h
parent074b07253551fb6aeb1d71ee4dfbf9b838cbf663 (diff)
downloadnetsurf-49f4fa0d787c867ed24ac49897feb347939d4ef3.tar.gz
netsurf-49f4fa0d787c867ed24ac49897feb347939d4ef3.tar.bz2
Hotlist and History and Cookies Manager implemented.
(The Cookie Manager window is a new one)
Diffstat (limited to 'atari/gui.h')
-rwxr-xr-xatari/gui.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/atari/gui.h b/atari/gui.h
index 2146a26a5..c582d668b 100755
--- a/atari/gui.h
+++ b/atari/gui.h
@@ -142,7 +142,7 @@ struct s_browser
*/
struct gui_window {
struct s_gui_win_root * root;
- CMP_BROWSER browser;
+ struct s_browser * browser;
MFORM_EX *cursor;
/* icon to be drawn when iconified, or NULL for default resource. */
char * status;
@@ -157,8 +157,10 @@ struct gui_window {
extern struct gui_window *window_list;
/* -------------------------------------------------------------------------- */
-/* Public - non standard gui window functions */
+/* Public - non core gui window functions */
/* -------------------------------------------------------------------------- */
void gui_set_input_gui_window(struct gui_window *gw);
+char *gui_window_get_url(struct gui_window *gw);
+char * gui_window_get_title(struct gui_window *gw);
#endif