summaryrefslogtreecommitdiff
path: root/atari/gui.h
diff options
context:
space:
mode:
authorOle Loots <ole@monochrom.net>2011-04-10 21:52:07 +0000
committerOle Loots <ole@monochrom.net>2011-04-10 21:52:07 +0000
commit4e7235a92f1f42872bf4c0d1621ce3f3cfba37b1 (patch)
treee81f556532cac29e2ecff2418f542b8cbc6f0e5a /atari/gui.h
parent8723876bd53dc4137743e89e2df0ac690e6c1542 (diff)
downloadnetsurf-4e7235a92f1f42872bf4c0d1621ce3f3cfba37b1.tar.gz
netsurf-4e7235a92f1f42872bf4c0d1621ce3f3cfba37b1.tar.bz2
Moved mouse movement handling into window event handlers, updated resources, updated todos, implemented treeview + hotlist
svn path=/trunk/netsurf/; revision=12182
Diffstat (limited to 'atari/gui.h')
-rwxr-xr-xatari/gui.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/atari/gui.h b/atari/gui.h
index 75c17eb26..24a71a1cb 100755
--- a/atari/gui.h
+++ b/atari/gui.h
@@ -103,14 +103,15 @@ struct s_focus_info
void * element;
};
-
+/*
struct s_gui_input_state {
short mbut;
short mkstat;
short mx;
short my;
+ browser_mouse_state bms;
} prev_inp_state;
-
+*/
#define TB_BUTTON_WIDTH 32
#define TB_BUTTON_HEIGHT 21 /* includes 1px 3d effect */
@@ -230,9 +231,6 @@ struct gui_window {
extern struct gui_window *window_list;
-/* scroll a window */
-void gem_window_scroll(struct browser_window * , int x, int y);
-
#define MOUSE_IS_DRAGGING() (mouse_hold_start[0] || mouse_hold_start[1])