Mercurial > hg > xemacs-beta
annotate src/scrollbar.h @ 5294:bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
2010-10-25 Aidan Kehoe <kehoea@parhasard.net>
Add compiler macros and compilation sanity-checking for various
functions that take keywords.
* byte-optimize.el (side-effect-free-fns): #'symbol-value is
side-effect free and not error free.
* bytecomp.el (byte-compile-normal-call): Check keyword argument
lists for sanity; store information about the positions where
keyword arguments start using the new byte-compile-keyword-start
property.
* cl-macs.el (cl-const-expr-val): Take a new optional argument,
cl-not-constant, defaulting to nil, in this function; return it if
the expression is not constant.
(cl-non-fixnum-number-p): Make this into a separate function, we
want to pass it to #'every.
(eql): Use it.
(define-star-compiler-macros): Use the same code to generate the
member*, assoc* and rassoc* compiler macros; special-case some
code in #'add-to-list in subr.el.
(remove, remq): Add compiler macros for these two functions, in
preparation for #'remove being in C.
(define-foo-if-compiler-macros): Transform (remove-if-not ...) calls to
(remove ... :if-not) at compile time, which will be a real win
once the latter is in C.
(define-substitute-if-compiler-macros)
(define-subst-if-compiler-macros): Similarly for these functions.
(delete-duplicates): Change this compiler macro to use
#'plists-equal; if we don't have information about the type of
SEQUENCE at compile time, don't bother attempting to inline the
call, the function will be in C soon enough.
(equalp): Remove an old commented-out compiler macro for this, if
we want to see it it's in version control.
(subst-char-in-string): Transform this to a call to nsubstitute or
nsubstitute, if that is appropriate.
* cl.el (ldiff): Don't call setf here, this makes for a load-time
dependency problem in cl-macs.el
| author | Aidan Kehoe <kehoea@parhasard.net> |
|---|---|
| date | Mon, 25 Oct 2010 13:04:04 +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_ */ |
