annotate src/keymap.h @ 339:336b97f03633 r21-0-67

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