1 /* Editor key translation.
3 Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4 2005, 2006, 2007 Free Software Foundation, Inc.
6 Authors: 1996, 1997 Paul Sheer
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
25 * \brief Source: editor key translation
33 #include <sys/types.h>
42 #include "lib/global.h"
43 #include "lib/tty/tty.h" /* keys */
44 #include "lib/tty/key.h" /* KEY_M_SHIFT */
45 #include "lib/strutil.h" /* str_isutf8 () */
46 #include "lib/util.h" /* is_printable() */
47 #include "lib/charsets.h" /* convert_from_input_c() */
49 #include "edit-impl.h"
50 #include "edit-widget.h" /* edit->macro_i */
51 #include "editcmd_dialogs.h"
53 #include "src/keybind-defaults.h" /* keybind_lookup_keymap_command() */
54 #include "src/main.h" /* display_codepage */
56 /*** global variables ****************************************************************************/
58 /*** file scope macro definitions ****************************************************************/
60 /*** file scope type declarations ****************************************************************/
62 /*** file scope variables ************************************************************************/
64 /*** file scope functions ************************************************************************/
65 /* --------------------------------------------------------------------------------------------- */
67 /* --------------------------------------------------------------------------------------------- */
68 /*** public functions ****************************************************************************/
69 /* --------------------------------------------------------------------------------------------- */
72 * Translate the keycode into either 'command' or 'char_for_insertion'.
73 * 'command' is one of the editor commands from cmddef.h.
76 edit_translate_key (WEdit
* edit
, long x_key
, int *cmd
, int *ch
)
78 unsigned long command
= (unsigned long) CK_Insert_Char
;
79 int char_for_insertion
= -1;
82 /* an ordinary insertable character */
86 if (edit
->charpoint
>= 4)
89 edit
->charbuf
[edit
->charpoint
] = '\0';
91 if (edit
->charpoint
< 4)
93 edit
->charbuf
[edit
->charpoint
++] = x_key
;
94 edit
->charbuf
[edit
->charpoint
] = '\0';
97 /* input from 8-bit locale */
100 /* source in 8-bit codeset */
103 #endif /* HAVE_CHARSET */
104 c
= convert_from_input_c (x_key
);
105 if (is_printable (c
))
107 char_for_insertion
= c
;
114 c
= convert_from_input_c (x_key
);
115 if (is_printable (c
))
117 char_for_insertion
= convert_from_8bit_to_utf_c2 ((unsigned char) x_key
);
125 /* source in UTF-8 codeset */
128 int res
= str_is_valid_char (edit
->charbuf
, edit
->charpoint
);
133 edit
->charpoint
= 0; /* broken multibyte char, skip */
136 char_for_insertion
= x_key
;
141 edit
->charbuf
[edit
->charpoint
] = '\0';
143 if (g_unichar_isprint (g_utf8_get_char (edit
->charbuf
)))
145 char_for_insertion
= x_key
;
154 int res
= str_is_valid_char (edit
->charbuf
, edit
->charpoint
);
159 edit
->charpoint
= 0; /* broken multibyte char, skip */
162 /* not finised multibyte input (in meddle multibyte utf-8 char) */
167 if (g_unichar_isprint (g_utf8_get_char (edit
->charbuf
)))
169 c
= convert_from_utf_to_current (edit
->charbuf
);
170 edit
->charbuf
[0] = '\0';
172 char_for_insertion
= c
;
175 /* unprinteble utf input, skip it */
176 edit
->charbuf
[0] = '\0';
181 #endif /* HAVE_CHARSET */
184 /* Commands specific to the key emulation */
188 command
= keybind_lookup_keymap_command (editor_x_map
, x_key
);
191 command
= keybind_lookup_keymap_command (editor_map
, x_key
);
193 if (command
== CK_Ignore_Key
)
194 command
= CK_Insert_Char
;
197 *cmd
= (int) command
; /* FIXME */
198 *ch
= char_for_insertion
;
200 return (command
== (unsigned long) CK_Insert_Char
&& char_for_insertion
== -1) ? 0 : 1;
203 /* --------------------------------------------------------------------------------------------- */