Mercurial > emacs
diff src/termhooks.h @ 15176:87c0298bd4f7
(enum scroll_bar_part): New alternatives
scroll_bar_up_arrow, scroll_bar_down_arrow.
(win32_scroll_bar_click): New enum constant.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Tue, 07 May 1996 00:03:53 +0000 |
| parents | 78c37f6d697b |
| children | b163c199496b |
line wrap: on
line diff
--- a/src/termhooks.h Mon May 06 23:17:23 1996 +0000 +++ b/src/termhooks.h Tue May 07 00:03:53 1996 +0000 @@ -59,7 +59,9 @@ enum scroll_bar_part { scroll_bar_above_handle, scroll_bar_handle, - scroll_bar_below_handle + scroll_bar_below_handle, + scroll_bar_up_arrow, + scroll_bar_down_arrow, }; /* Return the current position of the mouse. @@ -245,6 +247,10 @@ whose scroll bar was clicked in. .timestamp gives a timestamp (in milliseconds) for the click. */ +#ifdef WINDOWSNT + win32_scroll_bar_click, /* as for scroll_bar_click, but only generated + by MS-Windows scroll bar controls. */ +#endif selection_request_event, /* Another X client wants a selection from us. See `struct selection_event'. */ selection_clear_event, /* Another X client cleared our selection. */
