aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/termhooks.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/termhooks.h b/src/termhooks.h
index bd1fdc369e5..4e33fbe9d44 100644
--- a/src/termhooks.h
+++ b/src/termhooks.h
@@ -59,7 +59,9 @@ extern int (*set_terminal_window_hook) ();
59enum scroll_bar_part { 59enum scroll_bar_part {
60 scroll_bar_above_handle, 60 scroll_bar_above_handle,
61 scroll_bar_handle, 61 scroll_bar_handle,
62 scroll_bar_below_handle 62 scroll_bar_below_handle,
63 scroll_bar_up_arrow,
64 scroll_bar_down_arrow,
63}; 65};
64 66
65/* Return the current position of the mouse. 67/* Return the current position of the mouse.
@@ -245,6 +247,10 @@ enum event_kind
245 whose scroll bar was clicked in. 247 whose scroll bar was clicked in.
246 .timestamp gives a timestamp (in 248 .timestamp gives a timestamp (in
247 milliseconds) for the click. */ 249 milliseconds) for the click. */
250#ifdef WINDOWSNT
251 win32_scroll_bar_click, /* as for scroll_bar_click, but only generated
252 by MS-Windows scroll bar controls. */
253#endif
248 selection_request_event, /* Another X client wants a selection from us. 254 selection_request_event, /* Another X client wants a selection from us.
249 See `struct selection_event'. */ 255 See `struct selection_event'. */
250 selection_clear_event, /* Another X client cleared our selection. */ 256 selection_clear_event, /* Another X client cleared our selection. */