summaryrefslogtreecommitdiff
path: root/amiga/theme.h
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2013-01-06 00:21:15 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2013-01-06 00:21:15 +0000
commitcc321d5f63a526aab5a93bc3269736ac14bd92f7 (patch)
treec5ce03447b18e6baea21d7dae155366dc9da67e0 /amiga/theme.h
parent3dff750ae22185c2ee7bb6f5bc7e06d84267b9b9 (diff)
downloadnetsurf-cc321d5f63a526aab5a93bc3269736ac14bd92f7.tar.gz
netsurf-cc321d5f63a526aab5a93bc3269736ac14bd92f7.tar.bz2
Track the mouse pointer on a per-window basis
Diffstat (limited to 'amiga/theme.h')
-rw-r--r--amiga/theme.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/amiga/theme.h b/amiga/theme.h
index 52a21bb1a..3c3931c12 100644
--- a/amiga/theme.h
+++ b/amiga/theme.h
@@ -35,6 +35,10 @@ void ami_update_throbber(struct gui_window_2 *g,bool redraw);
void ami_init_mouse_pointers(void);
void ami_mouse_pointers_free(void);
-void ami_update_pointer(struct Window *win, gui_pointer_shape shape, bool reapply);
-void ami_reset_pointer(struct Window *win);
+void ami_set_pointer(struct gui_window_2 *gwin, gui_pointer_shape shape, bool update);
+void ami_reset_pointer(struct gui_window_2 *gwin);
+/* Use the following ONLY if nothing other than the Intuition window pointer is available,
+ * and ALWAYS in preference to SetWindowPointer(), as it features more pointers and uses
+ * the correct ones specified in user preferences. */
+void ami_update_pointer(struct Window *win, gui_pointer_shape shape);
#endif