Mercurial > hg > xemacs-beta
annotate src/scrollbar-msw.h @ 5860:916b48abd1c6
event-stream.c, support help-event-list as does GNU.
src/ChangeLog addition:
2015-03-14 Aidan Kehoe <kehoea@parhasard.net>
Add support for GNU's help-event-list here, useful for accepting
F1 and C-h as the help character at the same time.
* event-stream.c:
* event-stream.c (echo_key_event):
Be better about calculation, comments here, in passing.
* event-stream.c (help_char_p): New.
* event-stream.c (execute_help_form):
There's no need to reset the command builder here; the code that
did relied on zero-termination, which we can't anymore, and did
not actually discard the help character. Remove this.
* event-stream.c (Fnext_event): Use help_char_p ().
* event-stream.c (command_builder_find_leaf_no_jit_binding):
Use help_char_p ().
* event-stream.c (vars_of_event_stream):
Make help-event-list available.
man/ChangeLog addition:
2015-03-14 Aidan Kehoe <kehoea@parhasard.net>
* lispref/help.texi (Help Functions):
Document help-event-list, just added.
lisp/ChangeLog addition:
2015-03-14 Aidan Kehoe <kehoea@parhasard.net>
* cus-start.el (all): Describe help-event-list for Custom.
* keydefs.el (help-event-list): Initialise it.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Sat, 14 Mar 2015 01:16:45 +0000 |
parents | 308d34e9f07d |
children |
rev | line source |
---|---|
428 | 1 /* Define mswindows specific scrollbar instance. |
2 Copyright (C) 1994, 1995 Board of Trustees, University of Illinois. | |
3 | |
4 This file is part of XEmacs. | |
5 | |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
464
diff
changeset
|
6 XEmacs is free software: you can redistribute it and/or modify it |
428 | 7 under the terms of the GNU General Public License as published by the |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
464
diff
changeset
|
8 Free Software Foundation, either version 3 of the License, or (at your |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
464
diff
changeset
|
9 option) any later version. |
428 | 10 |
11 XEmacs is distributed in the hope that it will be useful, but WITHOUT | |
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
14 for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
464
diff
changeset
|
17 along with XEmacs. If not, see <http://www.gnu.org/licenses/>. */ |
428 | 18 |
19 /* Synched up with: Not in FSF. */ | |
20 | |
440 | 21 #ifndef INCLUDED_scrollbar_msw_h_ |
22 #define INCLUDED_scrollbar_msw_h_ | |
428 | 23 |
24 #if defined (HAVE_MS_WINDOWS) && defined (HAVE_SCROLLBARS) | |
25 | |
26 #include "scrollbar.h" | |
27 | |
28 struct mswindows_scrollbar_data | |
29 { | |
30 HWND hwnd; | |
31 | |
32 char *name; | |
33 | |
34 SCROLLINFO info; | |
35 | |
36 int scrollbar_x, scrollbar_y; | |
37 int scrollbar_width, scrollbar_height; | |
38 int size; | |
39 }; | |
40 | |
41 #define SCROLLBAR_MSW_DATA(i) ((struct mswindows_scrollbar_data *) ((i)->scrollbar_data)) | |
42 | |
43 #define SCROLLBAR_MSW_HANDLE(i) (SCROLLBAR_MSW_DATA (i)->hwnd) | |
44 #define SCROLLBAR_MSW_NAME(i) (SCROLLBAR_MSW_DATA (i)->name) | |
45 #define SCROLLBAR_MSW_INFO(i) (SCROLLBAR_MSW_DATA (i)->info) | |
46 #define SCROLLBAR_MSW_X(i) (SCROLLBAR_MSW_DATA (i)->x) | |
47 #define SCROLLBAR_MSW_Y(i) (SCROLLBAR_MSW_DATA (i)->y) | |
48 #define SCROLLBAR_MSW_WIDTH(i) (SCROLLBAR_MSW_DATA (i)->width) | |
49 #define SCROLLBAR_MSW_HEIGHT(i) (SCROLLBAR_MSW_DATA (i)->height) | |
50 #define SCROLLBAR_MSW_SIZE(i) (SCROLLBAR_MSW_DATA (i)->size) | |
51 /* | |
52 void mswindows_update_frame_scrollbars (struct frame *f); | |
53 void mswindows_set_scrollbar_pointer (struct frame *f, Lisp_Object cursor); | |
54 EMACS_INT mswindows_window_is_scrollbar (struct frame *f, Window win); | |
55 */ | |
56 | |
57 void mswindows_handle_scrollbar_event (HWND hwnd, int code, int pos); | |
464 | 58 int mswindows_handle_mousewheel_event (Lisp_Object frame, int keys, int delta, |
59 POINTS where); | |
428 | 60 |
61 #endif /* HAVE_MS_WINDOWS and HAVE_SCROLLBARS */ | |
440 | 62 #endif /* INCLUDED_scrollbar_msw_h_ */ |