[project @ 2006-03-22 23:37:59 by tlsa]

More pointer types for RISC OS build.

svn path=/import/netsurf/; revision=2150
This commit is contained in:
Michael Drake 2006-03-22 23:37:59 +00:00
parent 99c1bfc195
commit 222b75de89
3 changed files with 7 additions and 3 deletions

Binary file not shown.

View File

@ -1834,12 +1834,16 @@ gui_pointer_shape get_pointer_shape(css_cursor cursor)
break;
case CSS_CURSOR_PROGRESS:
pointer = GUI_POINTER_PROGRESS;
break;
case CSS_CURSOR_NO_DROP:
pointer = GUI_POINTER_NO_DROP;
break;
case CSS_CURSOR_NOT_ALLOWED:
pointer = GUI_POINTER_NOT_ALLOWED;
break;
case CSS_CURSOR_HELP:
pointer = GUI_POINTER_HELP;
break;
default:
pointer = GUI_POINTER_DEFAULT;
break;

View File

@ -2516,9 +2516,9 @@ struct ro_gui_pointer_entry ro_gui_pointer_table[] = {
{ false, "ptr_cross", 7, 7 },
{ false, "ptr_move", 8, 0 },
{ true, "ptr_default", 0, 0 }, /* WAIT */
{ true, "ptr_default", 0, 0 }, /* HELP */
{ true, "ptr_default", 0, 0 }, /* NO DROP */
{ true, "ptr_default", 0, 0 }, /* NOT ALLOWED */
{ false, "ptr_help", 0, 0 },
{ false, "ptr_nodrop", 0, 0 },
{ false, "ptr_nt_allwd", 10, 10 },
{ true, "ptr_default", 0, 0 }, /* PROGRESS */
};