keymaps.h
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:3k
源码类别:

MySQL数据库

开发平台:

Visual C++

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