1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
/**************************************************************************
* This program is Copyright (C) 1986-2002 by Jonathan Payne. JOVE is *
* provided by Jonathan and Jovehacks without charge and without *
* warranty. You may copy, modify, and/or distribute JOVE, provided that *
* this notice is included in all the source files and documentation. *
**************************************************************************/
/* tables defined in keys.txt/keys.c */
extern data_obj *MainKeys[NCHARS];
extern data_obj *EscKeys[NCHARS];
extern data_obj *CtlxKeys[NCHARS];
#ifdef PCNONASCII
extern data_obj *NonASCIIKeys[NCHARS];
#endif
#ifdef MAC /* used in About Jove... */
#define F_MAINMAP '\001'
#define F_PREF1MAP '\002'
#define F_PREF2MAP '\003'
#endif
#define OTHER_CMD 0
#define ARG_CMD 1
#define LINECMD 2 /* so we can preserve screen col in moves */
#define KILLCMD 3 /* so we can merge kills */
#define YANKCMD 4 /* so we can do yank-pop (ESC Y) */
#define UNDOABLECMD 5 /* so we can do yank-pop to undo */
#define MOUSE_CMD 6 /* to detect other cmds when button is down */
extern int this_cmd; /* ... */
extern int last_cmd; /* last command ... to implement appending to kill buffer */
extern void InitKeymaps proto((void));
extern void dispatch proto((ZXchar c));
extern bool IsPrefixChar proto((ZXchar c));
extern void DelObjRef proto((data_obj *));
/* Commands: */
extern void Apropos proto((void));
extern void LBindAKey proto((void));
extern void LBindMac proto((void));
extern void LBindMap proto((void));
extern void BindAKey proto((void));
extern void BindMac proto((void));
extern void BindMap proto((void));
extern void DescBindings proto((void));
extern void DescCom proto((void));
extern void DescVar proto((void));
extern void KeyDesc proto((void));
extern void Unbound proto((void));
#ifdef IPROCS
extern void PBindAKey proto((void));
extern void PBindMac proto((void));
extern void PBindMap proto((void));
#endif
|