Mercurial > hg > xemacs-beta
annotate src/scrollbar.h @ 5278:d9e65b48e2bf
Correct the NEW_GC non-DEBUG_XEMACS version of PARSE_KEYWORDS().
2010-09-18 Aidan Kehoe <kehoea@parhasard.net>
* lisp.h (PARSE_KEYWORDS):
Correct the NEW_GC non-DEBUG_XEMACS version of this macro; under
such builds S##function is a pointer, not a Lisp_Subr structure.
| author | Aidan Kehoe <kehoea@parhasard.net> |
|---|---|
| date | Sat, 18 Sep 2010 16:46:56 +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_ */ |
