Mercurial > hg > xemacs-beta
annotate src/scrollbar-msw.h @ 5580:a0e81357194e
Move macros with shadows in bytecomp.el to the end of the files, cl-macs
lisp/ChangeLog addition:
2011-10-08 Aidan Kehoe <kehoea@parhasard.net>
* cl-macs.el:
* cl-macs.el (load-time-value):
* cl-macs.el (flet):
* cl-macs.el (labels):
* cl-macs.el (the):
* cl-macs.el (declare):
Move all these macros to the end of the file, since they're in
byte-compile-initial-macro-environment, and we don't want their
definitions to override that for the rest of the file during
byte-compilation. Happens not to matter right now, but avoids
surprises for anyone using the macros elsewhere in cl-macs down
the line.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Sat, 08 Oct 2011 12:26:09 +0100 |
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_ */ |