window: rename enum pointer_type to cursor_type

This avoids confusion with the pointer devices (struct wl_pointer).
diff --git a/clients/clickdot.c b/clients/clickdot.c
index b9669d1..d935ae5 100644
--- a/clients/clickdot.c
+++ b/clients/clickdot.c
@@ -218,7 +218,7 @@
 
 	window_schedule_redraw(clickdot->window);
 
-	return POINTER_LEFT_PTR;
+	return CURSOR_LEFT_PTR;
 }
 
 static void
diff --git a/clients/desktop-shell.c b/clients/desktop-shell.c
index 41d02d0..23a7f90 100644
--- a/clients/desktop-shell.c
+++ b/clients/desktop-shell.c
@@ -213,7 +213,7 @@
 
 	widget_set_tooltip(widget, basename((char *)launcher->path), x, y);
 
-	return POINTER_LEFT_PTR;
+	return CURSOR_LEFT_PTR;
 }
 
 static void
@@ -252,7 +252,7 @@
 	launcher->focused = 1;
 	widget_schedule_redraw(widget);
 
-	return POINTER_LEFT_PTR;
+	return CURSOR_LEFT_PTR;
 }
 
 static void
@@ -526,7 +526,7 @@
 	dialog->button_focused = 1;
 	widget_schedule_redraw(widget);
 
-	return POINTER_LEFT_PTR;
+	return CURSOR_LEFT_PTR;
 }
 
 static void
diff --git a/clients/dnd.c b/clients/dnd.c
index c4d6f7b..32dec96 100644
--- a/clients/dnd.c
+++ b/clients/dnd.c
@@ -318,7 +318,7 @@
 	cairo_pattern_t *pattern;
 	cairo_t *cr;
 
-	pointer = display_get_pointer_image(dnd->display, POINTER_DRAGGING);
+	pointer = display_get_pointer_image(dnd->display, CURSOR_DRAGGING);
 
 	rectangle.width = item_width + 2 * pointer->width;
 	rectangle.height = item_height + 2 * pointer->height;
@@ -410,7 +410,7 @@
 					  dnd_drag->drag_surface,
 					  serial);
 
-		input_set_pointer_image(input, time, POINTER_DRAGGING);
+		input_set_pointer_image(input, time, CURSOR_DRAGGING);
 
 		dnd_drag->opaque =
 			create_drag_cursor(dnd_drag, item, x, y, 1);
@@ -434,9 +434,9 @@
 
 	item = dnd_get_item(dnd, x, y);
 	if (item)
-		return POINTER_HAND1;
+		return CURSOR_HAND1;
 	else
-		return POINTER_LEFT_PTR;
+		return CURSOR_LEFT_PTR;
 }
 
 static int
diff --git a/clients/eventdemo.c b/clients/eventdemo.c
index 8e63540..4781546 100644
--- a/clients/eventdemo.c
+++ b/clients/eventdemo.c
@@ -247,9 +247,9 @@
 
 	if (x > e->x && x < e->x + e->w)
 		if (y > e->y && y < e->y + e->h)
-			return POINTER_HAND1;
+			return CURSOR_HAND1;
 
-	return POINTER_LEFT_PTR;
+	return CURSOR_LEFT_PTR;
 }
 
 /**
diff --git a/clients/flower.c b/clients/flower.c
index 2d54b38..9b22543 100644
--- a/clients/flower.c
+++ b/clients/flower.c
@@ -133,7 +133,7 @@
 motion_handler(struct widget *widget, struct input *input,
 	       uint32_t time, float x, float y, void *data)
 {
-	return POINTER_HAND1;
+	return CURSOR_HAND1;
 }
 
 static void
diff --git a/clients/gears.c b/clients/gears.c
index ce8212a..5cfc298 100644
--- a/clients/gears.c
+++ b/clients/gears.c
@@ -243,7 +243,7 @@
 			gears->view.rotx = gears->view.rotx + 360;
 	}
 
-	return POINTER_LEFT_PTR;
+	return CURSOR_LEFT_PTR;
 }
 
 static void
diff --git a/clients/smoke.c b/clients/smoke.c
index d730124..69d4f23 100644
--- a/clients/smoke.c
+++ b/clients/smoke.c
@@ -258,7 +258,7 @@
 			smoke->b[0].d[k] += 1;
 		}
 
-	return POINTER_HAND1;
+	return CURSOR_HAND1;
 }
 
 static void
diff --git a/clients/terminal.c b/clients/terminal.c
index c7300e6..32648dd 100644
--- a/clients/terminal.c
+++ b/clients/terminal.c
@@ -2245,7 +2245,7 @@
 		widget_schedule_redraw(widget);
 	}
 
-	return POINTER_IBEAM;
+	return CURSOR_IBEAM;
 }
 
 static struct terminal *
diff --git a/clients/window.c b/clients/window.c
index c4e01e7..4c94d16 100644
--- a/clients/window.c
+++ b/clients/window.c
@@ -288,8 +288,8 @@
 };
 
 enum {
-	POINTER_DEFAULT = 100,
-	POINTER_UNSET
+	CURSOR_DEFAULT = 100,
+	CURSOR_UNSET
 };
 
 enum window_location {
@@ -1332,7 +1332,7 @@
 	widget_schedule_redraw(frame_button->widget);
 	frame_button->state = FRAME_BUTTON_OVER;
 
-	return POINTER_LEFT_PTR;
+	return CURSOR_LEFT_PTR;
 }
 
 static void
@@ -1512,25 +1512,25 @@
 
 	switch (location) {
 	case THEME_LOCATION_RESIZING_TOP:
-		return POINTER_TOP;
+		return CURSOR_TOP;
 	case THEME_LOCATION_RESIZING_BOTTOM:
-		return POINTER_BOTTOM;
+		return CURSOR_BOTTOM;
 	case THEME_LOCATION_RESIZING_LEFT:
-		return POINTER_LEFT;
+		return CURSOR_LEFT;
 	case THEME_LOCATION_RESIZING_RIGHT:
-		return POINTER_RIGHT;
+		return CURSOR_RIGHT;
 	case THEME_LOCATION_RESIZING_TOP_LEFT:
-		return POINTER_TOP_LEFT;
+		return CURSOR_TOP_LEFT;
 	case THEME_LOCATION_RESIZING_TOP_RIGHT:
-		return POINTER_TOP_RIGHT;
+		return CURSOR_TOP_RIGHT;
 	case THEME_LOCATION_RESIZING_BOTTOM_LEFT:
-		return POINTER_BOTTOM_LEFT;
+		return CURSOR_BOTTOM_LEFT;
 	case THEME_LOCATION_RESIZING_BOTTOM_RIGHT:
-		return POINTER_BOTTOM_RIGHT;
+		return CURSOR_BOTTOM_RIGHT;
 	case THEME_LOCATION_EXTERIOR:
 	case THEME_LOCATION_TITLEBAR:
 	default:
-		return POINTER_LEFT_PTR;
+		return CURSOR_LEFT_PTR;
 	}
 }
 
@@ -1605,7 +1605,7 @@
 		case THEME_LOCATION_TITLEBAR:
 			if (!window->shell_surface)
 				break;
-			input_set_pointer_image(input, time, POINTER_DRAGGING);
+			input_set_pointer_image(input, time, CURSOR_DRAGGING);
 			input_ungrab(input);
 			wl_shell_surface_move(window->shell_surface,
 					      input_get_seat(input),
@@ -1697,7 +1697,7 @@
 		       float x, float y)
 {
 	struct widget *old, *widget;
-	int pointer = POINTER_LEFT_PTR;
+	int pointer = CURSOR_LEFT_PTR;
 
 	if (focus == input->focus_widget)
 		return;
@@ -1733,7 +1733,7 @@
 	struct input *input = data;
 	struct window *window = input->pointer_focus;
 	struct widget *widget;
-	int cursor = POINTER_LEFT_PTR;
+	int cursor = CURSOR_LEFT_PTR;
 	float sx = wl_fixed_to_double(sx_w);
 	float sy = wl_fixed_to_double(sy_w);
 
@@ -1864,7 +1864,7 @@
 	input_set_focus_widget(input, NULL, 0, 0);
 
 	input->pointer_focus = NULL;
-	input->current_cursor = POINTER_UNSET;
+	input->current_cursor = CURSOR_UNSET;
 }
 
 static void
@@ -2763,7 +2763,7 @@
 	if (widget == menu->widget)
 		menu_set_item(data, y);
 
-	return POINTER_LEFT_PTR;
+	return CURSOR_LEFT_PTR;
 }
 
 static int
@@ -2775,7 +2775,7 @@
 	if (widget == menu->widget)
 		menu_set_item(data, y);
 
-	return POINTER_LEFT_PTR;
+	return CURSOR_LEFT_PTR;
 }
 
 static void
diff --git a/clients/window.h b/clients/window.h
index bc0e43a..e1a9aa2 100644
--- a/clients/window.h
+++ b/clients/window.h
@@ -139,19 +139,19 @@
 void
 display_exit(struct display *d);
 
-enum pointer_type {
-	POINTER_BOTTOM_LEFT,
-	POINTER_BOTTOM_RIGHT,
-	POINTER_BOTTOM,
-	POINTER_DRAGGING,
-	POINTER_LEFT_PTR,
-	POINTER_LEFT,
-	POINTER_RIGHT,
-	POINTER_TOP_LEFT,
-	POINTER_TOP_RIGHT,
-	POINTER_TOP,
-	POINTER_IBEAM,
-	POINTER_HAND1,
+enum cursor_type {
+	CURSOR_BOTTOM_LEFT,
+	CURSOR_BOTTOM_RIGHT,
+	CURSOR_BOTTOM,
+	CURSOR_DRAGGING,
+	CURSOR_LEFT_PTR,
+	CURSOR_LEFT,
+	CURSOR_RIGHT,
+	CURSOR_TOP_LEFT,
+	CURSOR_TOP_RIGHT,
+	CURSOR_TOP,
+	CURSOR_IBEAM,
+	CURSOR_HAND1,
 };
 
 typedef void (*window_key_handler_t)(struct window *window, struct input *input,