Mercurial > hg > xemacs-beta
annotate src/scrollbar.h @ 5284:d27c1ee1943b
Make the order of preloaded-file-list more sane.
lisp/ChangeLog addition:
2010-10-12 Aidan Kehoe <kehoea@parhasard.net>
* abbrev.el (fundamental-mode-abbrev-table, global-abbrev-table):
Create both these abbrev tables using the usual
#'define-abbrev-table calls, rather than attempting to
special-case them.
* cl-extra.el: Force cl-macs to be loaded here, if cl-extra.el is
being loaded interpreted. Previously other, later files would
redundantly call (load "cl-macs") when interpreted, it's more
reasonable to do it here, once.
* cmdloop.el (read-quoted-char-radix): Use defcustom here, we
don't have any dump-order dependencies that would prevent that.
* custom.el (eval-when-compile): Don't load cl-macs when
interpreted or when byte-compiling, rely on cl-extra.el in the
former case and the appropriate entry in bytecomp-load-hook in the
latter. Get rid of custom-declare-variable-list, we have no
dump-time dependencies that would require it.
* faces.el (eval-when-compile): Don't load cl-macs when
interpreted or when byte-compiling.
* packages.el: Remove some inaccurate comments.
* post-gc.el (cleanup-simple-finalizers): Use #'delete-if-not
here, now the order of preloaded-file-list has been changed to
make it available.
* subr.el (custom-declare-variable-list): Remove. No need for it.
Also remove a stub define-abbrev-table from this file, given the
current order of preloaded-file-list there's no need for it.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Tue, 12 Oct 2010 21:11:46 +0100 |
parents | 5ddbab03b0e6 |
children | 308d34e9f07d |
rev | line source |
---|---|
428 | 1 /* Define scrollbar instance. |
2 Copyright (C) 1994, 1995 Board of Trustees, University of Illinois. | |
5170
5ddbab03b0e6
various fixes to memory-usage stats
Ben Wing <ben@xemacs.org>
parents:
5157
diff
changeset
|
3 Copyright (C) 2010 Ben Wing. |
428 | 4 |
5 This file is part of XEmacs. | |
6 | |
7 XEmacs is free software; you can redistribute it and/or modify it | |
8 under the terms of the GNU General Public License as published by the | |
9 Free Software Foundation; either version 2, or (at your option) any | |
10 later version. | |
11 | |
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT | |
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
15 for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
18 along with XEmacs; see the file COPYING. If not, write to | |
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
20 Boston, MA 02111-1307, USA. */ | |
21 | |
22 /* Synched up with: Not in FSF. */ | |
23 | |
440 | 24 #ifndef INCLUDED_scrollbar_h_ |
25 #define INCLUDED_scrollbar_h_ | |
428 | 26 |
27 #ifdef HAVE_SCROLLBARS | |
28 | |
29 struct scrollbar_instance | |
30 { | |
5127
a9c41067dd88
more cleanups, terminology clarification, lots of doc work
Ben Wing <ben@xemacs.org>
parents:
5120
diff
changeset
|
31 NORMAL_LISP_OBJECT_HEADER header; |
617 | 32 |
428 | 33 /* Used by the frame caches. */ |
34 struct scrollbar_instance *next; | |
35 | |
36 /* Pointer back to the mirror structure attached to. */ | |
37 struct window_mirror *mirror; | |
38 | |
39 /* This flag indicates if the scrollbar is currently in use. */ | |
40 char scrollbar_is_active; | |
41 | |
42 /* This flag indicates if a data parameter has changed. */ | |
43 char scrollbar_instance_changed; | |
44 | |
45 /* A structure of auxiliary data specific to the device type. | |
46 struct x_scrollbar_data is used for X window frames; defined in | |
47 scrollbar-x.h */ | |
48 void *scrollbar_data; | |
49 }; | |
50 | |
5118
e0db3c197671
merge up to latest default branch, doesn't compile yet
Ben Wing <ben@xemacs.org>
parents:
3017
diff
changeset
|
51 DECLARE_LISP_OBJECT (scrollbar_instance, struct scrollbar_instance); |
617 | 52 #define XSCROLLBAR_INSTANCE(x) XRECORD (x, scrollbar_instance, struct scrollbar_instance) |
53 #define wrap_scrollbar_instance(p) wrap_record (p, scrollbar_instance) | |
54 #define SCROLLBAR_INSTANCEP(x) RECORDP (x, scrollbar_instance) | |
55 #define CHECK_SCROLLBAR_INSTANCE(x) CHECK_RECORD (x, scrollbar_instance) | |
56 #define CONCHECK_SCROLLBAR_INSTANCE(x) CONCHECK_RECORD (x, scrollbar_instance) | |
57 | |
428 | 58 #define SCROLLBAR_INSTANCE_FRAME(inst) (inst->mirror->frame) |
59 | |
60 void init_frame_scrollbars (struct frame *f); | |
61 void init_device_scrollbars (struct device *d); | |
62 void init_global_scrollbars (struct device *d); | |
63 void free_frame_scrollbars (struct frame *f); | |
64 void release_window_mirror_scrollbars (struct window_mirror *mir); | |
65 void update_window_scrollbars (struct window *w, | |
66 struct window_mirror *mirror, | |
67 int active, int horiz_only); | |
68 #ifdef MEMORY_USAGE_STATS | |
5170
5ddbab03b0e6
various fixes to memory-usage stats
Ben Wing <ben@xemacs.org>
parents:
5157
diff
changeset
|
69 Bytecount compute_all_scrollbar_instance_usage (struct scrollbar_instance * |
5ddbab03b0e6
various fixes to memory-usage stats
Ben Wing <ben@xemacs.org>
parents:
5157
diff
changeset
|
70 inst); |
428 | 71 #endif |
72 | |
73 extern Lisp_Object Vscrollbar_width, Vscrollbar_height; | |
74 | |
75 extern Lisp_Object Qscrollbar_line_up; | |
76 extern Lisp_Object Qscrollbar_line_down; | |
77 extern Lisp_Object Qscrollbar_page_up; | |
78 extern Lisp_Object Qscrollbar_page_down; | |
79 extern Lisp_Object Qscrollbar_to_top; | |
80 extern Lisp_Object Qscrollbar_to_bottom; | |
81 extern Lisp_Object Qscrollbar_vertical_drag; | |
82 | |
83 extern Lisp_Object Qscrollbar_char_left; | |
84 extern Lisp_Object Qscrollbar_char_right; | |
85 extern Lisp_Object Qscrollbar_page_left; | |
86 extern Lisp_Object Qscrollbar_page_right; | |
87 extern Lisp_Object Qscrollbar_to_left; | |
88 extern Lisp_Object Qscrollbar_to_right; | |
89 extern Lisp_Object Qscrollbar_horizontal_drag; | |
90 | |
91 #endif /* HAVE_SCROLLBARS */ | |
92 | |
440 | 93 #endif /* INCLUDED_scrollbar_h_ */ |