annotate src/keymap.h @ 424:11054d720c21 r21-2-20

Import from CVS: tag r21-2-20
author cvs
date Mon, 13 Aug 2007 11:26:11 +0200
parents 697ef44129c6
children
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
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 398
diff changeset
24 #ifndef _XEMACS_KEYMAP_H_
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 398
diff changeset
25 #define _XEMACS_KEYMAP_H_
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 398
diff changeset
27 DECLARE_LRECORD (keymap, struct Lisp_Keymap);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 398
diff changeset
28 #define XKEYMAP(x) XRECORD (x, keymap, struct Lisp_Keymap)
0
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 CHECK_KEYMAP(x) CHECK_RECORD (x, keymap)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 #define CONCHECK_KEYMAP(x) CONCHECK_RECORD (x, keymap)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 219
diff changeset
34 EXFUN (Fkeymap_prompt, 2);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 219
diff changeset
35 EXFUN (Fkeymapp, 1);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 219
diff changeset
36 EXFUN (Fmake_keymap, 1);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 219
diff changeset
37 EXFUN (Fwhere_is_internal, 5);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 219
diff changeset
39 extern Lisp_Object Qalt, Qcontrol, Qhyper, Qmeta, Qshift, Qsuper;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 219
diff changeset
40 extern Lisp_Object Vmeta_prefix_char;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 219
diff changeset
41
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 219
diff changeset
42 Lisp_Object get_keymap (Lisp_Object object, int errorp, int autoload);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 219
diff changeset
43 Lisp_Object event_binding (Lisp_Object event0, int accept_default);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 219
diff changeset
44 Lisp_Object event_binding_in (Lisp_Object event0, Lisp_Object keymap,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 219
diff changeset
45 int accept_default);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 219
diff changeset
47 Lisp_Object munging_key_map_event_binding (Lisp_Object event0,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 219
diff changeset
48 enum munge_me_out_the_door munge);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 219
diff changeset
49 int relevant_keymaps_to_search (Lisp_Object keys,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 219
diff changeset
50 int max_maps, Lisp_Object maps[]);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 219
diff changeset
51 void describe_map_tree (Lisp_Object startmap, int partial,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 219
diff changeset
52 Lisp_Object shadow, Lisp_Object prefix,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 219
diff changeset
53 int mice_only_p, Lisp_Object buffer);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 219
diff changeset
55 void key_desc_list_to_event (Lisp_Object list, Lisp_Object event,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 219
diff changeset
56 int allow_menu_events);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 398
diff changeset
58 int event_matches_key_specifier_p (struct Lisp_Event *event,
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 219
diff changeset
59 Lisp_Object key_specifier);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 398
diff changeset
61 #endif /* _XEMACS_KEYMAP_H_ */