annotate src/keymap.h @ 221:6c0ae1f9357f r20-4b9

Import from CVS: tag r20-4b9
author cvs
date Mon, 13 Aug 2007 10:10:02 +0200
parents 262b8bb4a523
children c5d627a313b1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* prototypes for keymap-hacking
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 /* Synched up with: Not in FSF. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 #ifndef _XEMACS_KEYMAP_H_
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 #define _XEMACS_KEYMAP_H_
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 DECLARE_LRECORD (keymap, struct keymap);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 #define XKEYMAP(x) XRECORD (x, keymap, struct keymap)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 #define XSETKEYMAP(x, p) XSETRECORD (x, p, keymap)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 #define KEYMAPP(x) RECORDP (x, keymap)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 #define GC_KEYMAPP(x) GC_RECORDP (x, keymap)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 #define CHECK_KEYMAP(x) CHECK_RECORD (x, keymap)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 #define CONCHECK_KEYMAP(x) CONCHECK_RECORD (x, keymap)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 extern Lisp_Object get_keymap (Lisp_Object object, int errorp, int autoload);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 extern Lisp_Object event_binding (Lisp_Object event0, int accept_default);
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 0
diff changeset
37 extern Lisp_Object event_binding_in (Lisp_Object event0, Lisp_Object keymap,
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 0
diff changeset
38 int accept_default);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 extern Lisp_Object munging_key_map_event_binding (Lisp_Object event0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 enum munge_me_out_the_door
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 munge);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 extern Lisp_Object Fkey_description (Lisp_Object keys);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 extern Lisp_Object Fsingle_key_description (Lisp_Object key);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
45 extern Lisp_Object Fwhere_is_internal (Lisp_Object definition,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 Lisp_Object keymaps,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 Lisp_Object firstonly,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 Lisp_Object noindirect,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 Lisp_Object event_or_keys);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 extern Lisp_Object Fkeymap_name (Lisp_Object keymap);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 extern Lisp_Object Fset_keymap_name (Lisp_Object keymap, Lisp_Object name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 extern Lisp_Object Fkeymap_prompt (Lisp_Object keymap, Lisp_Object inherit);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 extern Lisp_Object Fset_keymap_prompt (Lisp_Object keymap, Lisp_Object prompt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 extern int relevant_keymaps_to_search (Lisp_Object keys,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 int max_maps, Lisp_Object maps[]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 extern void describe_map_tree (Lisp_Object startmap, int partial,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 Lisp_Object shadow, Lisp_Object prefix,
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 185
diff changeset
60 int mice_only_p, Lisp_Object buffer);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 extern void key_desc_list_to_event (Lisp_Object list, Lisp_Object event,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 int allow_menu_events);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 extern Lisp_Object Vmeta_prefix_char;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 extern int event_matches_key_specifier_p (struct Lisp_Event *event,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 Lisp_Object key_specifier);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 #endif /* _XEMACS_KEYMAP_H_ */