home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / octave-1.1.1p1-src.tgz / tar.out / fsf / octave / readline / keymaps.h < prev    next >
C/C++ Source or Header  |  1996-09-28  |  3KB  |  90 lines

  1. /* keymaps.h -- Manipulation of readline keymaps. */
  2.  
  3. /* Copyright (C) 1987, 1989, 1992 Free Software Foundation, Inc.
  4.  
  5.    This file is part of the GNU Readline Library, a library for
  6.    reading lines of text with interactive input and history editing.
  7.  
  8.    The GNU Readline Library is free software; you can redistribute it
  9.    and/or modify it under the terms of the GNU General Public License
  10.    as published by the Free Software Foundation; either version 1, or
  11.    (at your option) any later version.
  12.  
  13.    The GNU Readline Library is distributed in the hope that it will be
  14.    useful, but WITHOUT ANY WARRANTY; without even the implied warranty
  15.    of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.    GNU General Public License for more details.
  17.  
  18.    The GNU General Public License is often shipped with GNU software, and
  19.    is generally kept in a file called COPYING or LICENSE.  If you do not
  20.    have a copy of the license, write to the Free Software Foundation,
  21.    675 Mass Ave, Cambridge, MA 02139, USA. */
  22.  
  23. #ifndef _KEYMAPS_H_
  24. #define _KEYMAPS_H_
  25.  
  26. #include <readline/chardefs.h>
  27.  
  28. #if !defined (__FUNCTION_DEF)
  29. #  define __FUNCTION_DEF
  30. typedef int Function ();
  31. typedef void VFunction ();
  32. typedef char *CPFunction ();
  33. typedef char **CPPFunction ();
  34. #endif
  35.  
  36. /* A keymap contains one entry for each key in the ASCII set.
  37.    Each entry consists of a type and a pointer.
  38.    POINTER is the address of a function to run, or the
  39.    address of a keymap to indirect through.
  40.    TYPE says which kind of thing POINTER is. */
  41. typedef struct _keymap_entry {
  42.   char type;
  43.   Function *function;
  44. } KEYMAP_ENTRY;
  45.  
  46. /* This must be large enough to hold bindings for all of the characters
  47.    in a desired character set (e.g, 128 for ASCII, 256 for ISO Latin-x,
  48.    and so on). */
  49. #define KEYMAP_SIZE 256
  50.  
  51. /* I wanted to make the above structure contain a union of:
  52.    union { Function *function; struct _keymap_entry *keymap; } value;
  53.    but this made it impossible for me to create a static array.
  54.    Maybe I need C lessons. */
  55.  
  56. typedef KEYMAP_ENTRY KEYMAP_ENTRY_ARRAY[KEYMAP_SIZE];
  57. typedef KEYMAP_ENTRY *Keymap;
  58.  
  59. /* The values that TYPE can have in a keymap entry. */
  60. #define ISFUNC 0
  61. #define ISKMAP 1
  62. #define ISMACR 2
  63.  
  64. extern KEYMAP_ENTRY_ARRAY emacs_standard_keymap, emacs_meta_keymap, emacs_ctlx_keymap;
  65. extern KEYMAP_ENTRY_ARRAY vi_insertion_keymap, vi_movement_keymap;
  66.  
  67. /* Return a new, empty keymap.
  68.    Free it with free() when you are done. */
  69. Keymap rl_make_bare_keymap ();
  70.  
  71. /* Return a new keymap which is a copy of MAP. */
  72. Keymap rl_copy_keymap ();
  73.  
  74. /* Return a new keymap with the printing characters bound to rl_insert,
  75.    the lowercase Meta characters bound to run their equivalents, and
  76.    the Meta digits bound to produce numeric arguments. */
  77. Keymap rl_make_keymap ();
  78.  
  79. /* Return the keymap corresponding to a given name.  Names look like
  80.    `emacs' or `emacs-meta' or `vi-insert'. */
  81. Keymap rl_get_keymap_by_name ();
  82.  
  83. /* Return the current keymap. */
  84. Keymap rl_get_keymap ();
  85.  
  86. /* Set the current keymap to MAP. */
  87. void rl_set_keymap ();
  88.  
  89. #endif /* _KEYMAPS_H_ */
  90.