Mercurial > hg > xemacs-beta
annotate src/frame.h @ 5191:71ee43b8a74d
Add #'equalp as a hash test by default; add #'define-hash-table-test, GNU API
tests/ChangeLog addition:
2010-04-05 Aidan Kehoe <kehoea@parhasard.net>
* automated/hash-table-tests.el:
Test the new built-in #'equalp hash table test. Test
#'define-hash-table-test.
* automated/lisp-tests.el:
When asserting that two objects are #'equalp, also assert that
their #'equalp-hash is identical.
man/ChangeLog addition:
2010-04-03 Aidan Kehoe <kehoea@parhasard.net>
* lispref/hash-tables.texi (Introduction to Hash Tables):
Document that we now support #'equalp as a hash table test by
default, and mention #'define-hash-table-test.
(Working With Hash Tables): Document #'define-hash-table-test.
src/ChangeLog addition:
2010-04-05 Aidan Kehoe <kehoea@parhasard.net>
* elhash.h:
* elhash.c (struct Hash_Table_Test, lisp_object_eql_equal)
(lisp_object_eql_hash, lisp_object_equal_equal)
(lisp_object_equal_hash, lisp_object_equalp_hash)
(lisp_object_equalp_equal, lisp_object_general_hash)
(lisp_object_general_equal, Feq_hash, Feql_hash, Fequal_hash)
(Fequalp_hash, define_hash_table_test, Fdefine_hash_table_test)
(init_elhash_once_early, mark_hash_table_tests, string_equalp_hash):
* glyphs.c (vars_of_glyphs):
Add a new hash table test in C, #'equalp.
Make it possible to specify new hash table tests with functions
define_hash_table_test, #'define-hash-table-test.
Use define_hash_table_test() in glyphs.c.
Expose the hash functions (besides that used for #'equal) to Lisp,
for people writing functions to be used with #'define-hash-table-test.
Call define_hash_table_test() very early in temacs, to create the
built-in hash table tests.
* ui-gtk.c (emacs_gtk_boxed_hash):
* specifier.h (struct specifier_methods):
* specifier.c (specifier_hash):
* rangetab.c (range_table_entry_hash, range_table_hash):
* number.c (bignum_hash, ratio_hash, bigfloat_hash):
* marker.c (marker_hash):
* lrecord.h (struct lrecord_implementation):
* keymap.c (keymap_hash):
* gui.c (gui_item_id_hash, gui_item_hash):
* glyphs.c (image_instance_hash, glyph_hash):
* glyphs-x.c (x_image_instance_hash):
* glyphs-msw.c (mswindows_image_instance_hash):
* glyphs-gtk.c (gtk_image_instance_hash):
* frame-msw.c (mswindows_set_title_from_ibyte):
* fontcolor.c (color_instance_hash, font_instance_hash):
* fontcolor-x.c (x_color_instance_hash):
* fontcolor-tty.c (tty_color_instance_hash):
* fontcolor-msw.c (mswindows_color_instance_hash):
* fontcolor-gtk.c (gtk_color_instance_hash):
* fns.c (bit_vector_hash):
* floatfns.c (float_hash):
* faces.c (face_hash):
* extents.c (extent_hash):
* events.c (event_hash):
* data.c (weak_list_hash, weak_box_hash):
* chartab.c (char_table_entry_hash, char_table_hash):
* bytecode.c (compiled_function_hash):
* alloc.c (vector_hash):
Change the various object hash methods to take a new EQUALP
parameter, hashing appropriately for #'equalp if it is true.
| author | Aidan Kehoe <kehoea@parhasard.net> |
|---|---|
| date | Mon, 05 Apr 2010 13:03:35 +0100 |
| parents | 7be849cb8828 |
| children | 308d34e9f07d |
| rev | line source |
|---|---|
| 428 | 1 /* Define frame-object for XEmacs. |
| 2 Copyright (C) 1988, 1992, 1993, 1994 Free Software Foundation, Inc. | |
| 5043 | 3 Copyright (C) 1995, 2002, 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: FSF 19.30. */ | |
| 23 | |
| 440 | 24 #ifndef INCLUDED_frame_h_ |
| 25 #define INCLUDED_frame_h_ | |
| 428 | 26 |
| 27 #include "redisplay.h" | |
| 800 | 28 #include "console.h" /* for error_check_frame_type */ |
| 428 | 29 |
| 872 | 30 struct frame; |
| 428 | 31 |
| 872 | 32 EXFUN (Fselected_frame, 1); |
| 428 | 33 EXFUN (Fdelete_frame, 2); |
| 34 EXFUN (Fframe_iconified_p, 1); | |
| 35 EXFUN (Fframe_name, 1); | |
| 36 EXFUN (Fframe_property, 3); | |
| 37 EXFUN (Fmake_frame, 2); | |
| 38 EXFUN (Fmake_frame_visible, 1); | |
| 39 EXFUN (Fraise_frame, 1); | |
| 40 EXFUN (Fselect_frame, 1); | |
| 41 EXFUN (Fset_frame_pointer, 2); | |
| 42 EXFUN (Fset_frame_position, 3); | |
| 442 | 43 EXFUN (Fset_frame_properties, 2); |
| 428 | 44 EXFUN (Fset_frame_size, 4); |
| 45 | |
| 46 extern Lisp_Object Qbackground_toolbar_color, Qbell_volume, Qborder_color; | |
| 47 extern Lisp_Object Qborder_width, Qbottom_toolbar_shadow_color; | |
| 48 extern Lisp_Object Qbottom_toolbar_shadow_pixmap, Qdelete_frame; | |
| 49 extern Lisp_Object Qdeselect_frame_hook, Qdrag_and_drop_functions, Qgc_pointer; | |
| 50 extern Lisp_Object Qiconic, Qinitially_unmapped, Qinter_line_space; | |
| 51 extern Lisp_Object Qinternal_border_width, Qinvisible, Qmap_frame_hook; | |
| 52 extern Lisp_Object Qminibuffer, Qmodeline_pointer, Qmouse_enter_frame_hook; | |
| 53 extern Lisp_Object Qmouse_leave_frame_hook, Qpointer_background; | |
| 54 extern Lisp_Object Qpointer_color, Qpopup, Qscrollbar_placement; | |
| 55 extern Lisp_Object Qselect_frame_hook, Qspace_pointer; | |
| 56 extern Lisp_Object Qsynchronize_minibuffers, Qtext_pointer; | |
| 57 extern Lisp_Object Qtoolbar_shadow_thickness, Qtop_toolbar_shadow_color; | |
| 58 extern Lisp_Object Qtop_toolbar_shadow_pixmap, Qunmap_frame_hook; | |
| 59 extern Lisp_Object Qunsplittable, Quse_backing_store, Qvisible, Qvisual_bell; | |
| 60 extern Lisp_Object Vframe_icon_title_format, Vframe_title_format; | |
| 61 extern Lisp_Object Vmouse_motion_handler; | |
| 62 | |
|
5118
e0db3c197671
merge up to latest default branch, doesn't compile yet
Ben Wing <ben@xemacs.org>
parents:
1318
diff
changeset
|
63 DECLARE_LISP_OBJECT (frame, struct frame); |
| 428 | 64 #define XFRAME(x) XRECORD (x, frame, struct frame) |
| 617 | 65 #define wrap_frame(p) wrap_record (p, frame) |
| 428 | 66 #define FRAMEP(x) RECORDP (x, frame) |
| 67 #define CHECK_FRAME(x) CHECK_RECORD (x, frame) | |
| 68 #define CONCHECK_FRAME(x) CONCHECK_RECORD (x, frame) | |
| 69 | |
| 872 | 70 /* Basic properties available to non-privileged users; redefined in |
| 71 frame-impl.h */ | |
| 72 | |
| 73 int frame_live_p (struct frame *f); | |
| 74 Lisp_Object frame_device (struct frame *f); | |
| 75 | |
| 76 #define FRAME_LIVE_P(f) frame_live_p (f) | |
| 77 #define FRAME_DEVICE(f) frame_device (f) | |
| 78 | |
| 79 #define FRAME_XDEVICE(f) XDEVICE (FRAME_DEVICE (f)) | |
| 80 #define FRAME_CONSOLE(f) XDEVICE_CONSOLE (FRAME_DEVICE (f)) | |
| 81 #define FRAME_XCONSOLE(f) XCONSOLE (FRAME_CONSOLE (f)) | |
| 82 | |
| 83 #define XFRAME_DEVICE(f) FRAME_DEVICE (XFRAME (f)) | |
| 84 #define XFRAME_XDEVICE(f) XDEVICE (XFRAME_DEVICE (f)) | |
| 85 #define XFRAME_CONSOLE(f) XDEVICE_CONSOLE (XFRAME_DEVICE (f)) | |
| 86 #define XFRAME_XCONSOLE(f) XCONSOLE (XFRAME_CONSOLE (f)) | |
| 87 | |
| 428 | 88 #define CHECK_LIVE_FRAME(x) do { \ |
| 89 CHECK_FRAME (x); \ | |
| 90 if (! FRAME_LIVE_P (XFRAME (x))) \ | |
| 91 dead_wrong_type_argument (Qframe_live_p, (x)); \ | |
| 92 } while (0) | |
| 93 #define CONCHECK_LIVE_FRAME(x) do { \ | |
| 94 CONCHECK_FRAME (x); \ | |
| 95 if (! FRAME_LIVE_P (XFRAME (x))) \ | |
| 96 x = wrong_type_argument (Qframe_live_p, (x)); \ | |
| 97 } while (0) | |
| 98 | |
| 99 #define FW_FRAME(obj) \ | |
| 100 (WINDOWP (obj) ? WINDOW_FRAME (XWINDOW (obj)) \ | |
| 442 | 101 : (FRAMEP (obj) ? obj \ |
| 102 : Qnil)) | |
| 428 | 103 |
| 104 /* Equivalent in FSF Emacs: | |
| 105 | |
| 106 FOR_EACH_FRAME (LIST_VAR, FRAME_VAR) followed by a statement is a | |
| 107 `for' loop which iterates over the elements of Vframe_list. The | |
| 108 loop will set FRAME_VAR, a Lisp_Object, to each frame in | |
| 109 Vframe_list in succession and execute the statement. LIST_VAR | |
| 110 should be a Lisp_Object too; it is used to iterate through the | |
| 111 Vframe_list. | |
| 112 */ | |
| 113 | |
| 114 /* NO_BREAK means that "break" doesn't do what you think it does! | |
| 115 Use goto instead. "continue" is OK, though. */ | |
| 116 #define FRAME_LOOP_NO_BREAK(frmcons, devcons, concons) \ | |
| 117 DEVICE_LOOP_NO_BREAK (devcons, concons) \ | |
| 118 DEVICE_FRAME_LOOP (frmcons, XDEVICE (XCAR (devcons))) | |
| 119 | |
| 120 void update_frame_title (struct frame *f); | |
| 444 | 121 Lisp_Object next_frame (Lisp_Object, Lisp_Object, Lisp_Object); |
| 122 Lisp_Object previous_frame (Lisp_Object, Lisp_Object, Lisp_Object); | |
| 5043 | 123 void pixel_to_frame_unit_size (struct frame *f, int pixel_width, int pixel_height, |
| 124 int *char_width, int *char_height); | |
| 125 void frame_unit_to_pixel_size (struct frame *f, int char_width, int char_height, | |
| 126 int *pixel_width, int *pixel_height); | |
| 428 | 127 void pixel_to_char_size (struct frame *f, int pixel_width, int pixel_height, |
| 128 int *char_width, int *char_height); | |
| 129 void char_to_pixel_size (struct frame *f, int char_width, int char_height, | |
| 130 int *pixel_width, int *pixel_height); | |
| 131 void round_size_to_char (struct frame *f, int in_width, int in_height, | |
| 132 int *out_width, int *out_height); | |
| 133 void change_frame_size (struct frame *frame, | |
| 134 int newlength, int newwidth, | |
| 135 int delay); | |
| 136 void adjust_frame_size (struct frame *frame); | |
| 5043 | 137 void internal_set_frame_size (struct frame *f, int cols, int rows, |
| 138 int pretend); | |
| 428 | 139 void frame_size_slipped (Lisp_Object specifier, struct frame *f, |
| 140 Lisp_Object oldval); | |
| 141 void select_frame_1 (Lisp_Object frame); | |
| 142 void select_frame_2 (Lisp_Object frame); | |
| 143 struct frame *selected_frame (void); | |
| 144 struct frame *device_selected_frame (struct device *d); | |
| 145 struct frame *decode_frame (Lisp_Object frame); | |
| 146 struct frame *decode_frame_or_selected (Lisp_Object cdf); | |
| 147 Lisp_Object make_frame (struct frame *f); | |
| 148 int other_visible_frames (struct frame *f); | |
| 149 void delete_frame_internal (struct frame *f, int force, | |
| 150 int called_from_delete_device, | |
| 151 int from_io_error); | |
| 152 void io_error_delete_frame (Lisp_Object frame); | |
| 153 Lisp_Object find_some_frame (int (*predicate) (Lisp_Object, void *), | |
| 154 void *closure); | |
| 444 | 155 int device_matches_device_spec (Lisp_Object device, Lisp_Object device_spec); |
| 428 | 156 Lisp_Object frame_first_window (struct frame *f); |
| 157 void set_frame_selected_window (struct frame *f, Lisp_Object window); | |
| 158 int is_surrogate_for_selected_frame (struct frame *f); | |
| 159 void update_frame_icon (struct frame *f); | |
| 160 void invalidate_vertical_divider_cache_in_frame (struct frame *f); | |
| 161 | |
| 438 | 162 void init_frame (void); |
| 163 | |
|
5077
d372b17f63ce
clean up toolbar/gutter edge geometry
Ben Wing <ben@xemacs.org>
parents:
5043
diff
changeset
|
164 enum edge_pos |
|
d372b17f63ce
clean up toolbar/gutter edge geometry
Ben Wing <ben@xemacs.org>
parents:
5043
diff
changeset
|
165 { |
|
d372b17f63ce
clean up toolbar/gutter edge geometry
Ben Wing <ben@xemacs.org>
parents:
5043
diff
changeset
|
166 TOP_EDGE, |
|
d372b17f63ce
clean up toolbar/gutter edge geometry
Ben Wing <ben@xemacs.org>
parents:
5043
diff
changeset
|
167 BOTTOM_EDGE, |
|
d372b17f63ce
clean up toolbar/gutter edge geometry
Ben Wing <ben@xemacs.org>
parents:
5043
diff
changeset
|
168 LEFT_EDGE, |
|
d372b17f63ce
clean up toolbar/gutter edge geometry
Ben Wing <ben@xemacs.org>
parents:
5043
diff
changeset
|
169 RIGHT_EDGE, |
|
d372b17f63ce
clean up toolbar/gutter edge geometry
Ben Wing <ben@xemacs.org>
parents:
5043
diff
changeset
|
170 NUM_EDGES |
|
d372b17f63ce
clean up toolbar/gutter edge geometry
Ben Wing <ben@xemacs.org>
parents:
5043
diff
changeset
|
171 }; |
|
d372b17f63ce
clean up toolbar/gutter edge geometry
Ben Wing <ben@xemacs.org>
parents:
5043
diff
changeset
|
172 |
|
d372b17f63ce
clean up toolbar/gutter edge geometry
Ben Wing <ben@xemacs.org>
parents:
5043
diff
changeset
|
173 /* Iterate over all possible edge positions */ |
|
d372b17f63ce
clean up toolbar/gutter edge geometry
Ben Wing <ben@xemacs.org>
parents:
5043
diff
changeset
|
174 #define EDGE_POS_LOOP(var) \ |
|
d372b17f63ce
clean up toolbar/gutter edge geometry
Ben Wing <ben@xemacs.org>
parents:
5043
diff
changeset
|
175 for (var = (enum edge_pos) 0; var < NUM_EDGES; \ |
|
d372b17f63ce
clean up toolbar/gutter edge geometry
Ben Wing <ben@xemacs.org>
parents:
5043
diff
changeset
|
176 var = (enum edge_pos) (var + 1)) |
|
d372b17f63ce
clean up toolbar/gutter edge geometry
Ben Wing <ben@xemacs.org>
parents:
5043
diff
changeset
|
177 |
| 440 | 178 #endif /* INCLUDED_frame_h_ */ |
