annotate src/keymap.h @ 132:757f1c4d15f7 xemacs-20-1

Added tag xemacs-20-1p4 for changeset 869e1851236b
author cvs
date Mon, 13 Aug 2007 09:29:09 +0200
parents 376386a54a3c
children 2d532a89d707
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);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 extern Lisp_Object munging_key_map_event_binding (Lisp_Object event0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 enum munge_me_out_the_door
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 munge);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 extern Lisp_Object Fkey_description (Lisp_Object keys);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 extern Lisp_Object Fsingle_key_description (Lisp_Object key);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 extern Lisp_Object Fwhere_is_internal (Lisp_Object definition,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 Lisp_Object keymaps,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 Lisp_Object firstonly,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 Lisp_Object noindirect,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 Lisp_Object event_or_keys);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 extern Lisp_Object Fkeymap_name (Lisp_Object keymap);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 extern Lisp_Object Fset_keymap_name (Lisp_Object keymap, Lisp_Object name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 extern Lisp_Object Fkeymap_prompt (Lisp_Object keymap, Lisp_Object inherit);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 extern Lisp_Object Fset_keymap_prompt (Lisp_Object keymap, Lisp_Object prompt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 extern int relevant_keymaps_to_search (Lisp_Object keys,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 int max_maps, Lisp_Object maps[]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 extern void describe_map_tree (Lisp_Object startmap, int partial,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 Lisp_Object shadow, Lisp_Object prefix,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 int mice_only_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 extern void key_desc_list_to_event (Lisp_Object list, Lisp_Object event,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 int allow_menu_events);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 extern Lisp_Object Vmeta_prefix_char;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 extern int event_matches_key_specifier_p (struct Lisp_Event *event,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 Lisp_Object key_specifier);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 #endif /* _XEMACS_KEYMAP_H_ */