5 #include "lib/global.h"
7 typedef struct name_keymap_t
{
12 typedef struct key_config_t
{
13 time_t mtime
; /* mtime at the moment we read config file */
19 /* The global keymaps are of this type */
20 #define KEYMAP_SHORTCUT_LENGTH 32 /* FIXME: is 32 bytes enough for shortcut? */
21 typedef struct global_keymap_t
{
23 unsigned long command
;
24 char caption
[KEYMAP_SHORTCUT_LENGTH
];
27 void keybind_cmd_bind (GArray
*keymap
, const char *keybind
, unsigned long action
);
28 unsigned long lookup_action (const char *keyname
);
29 const char *lookup_keymap_shortcut (const global_keymap_t
*keymap
, unsigned long action
);
30 unsigned long lookup_keymap_command (const global_keymap_t
*keymap
, long key
);
32 /* viewer/actions_cmd.c */
33 extern const global_keymap_t default_viewer_keymap
[];
34 extern const global_keymap_t default_viewer_hex_keymap
[];
36 #ifdef USE_INTERNAL_EDIT
37 /* ../edit/editkey.c */
38 extern const global_keymap_t default_editor_keymap
[];
39 extern const global_keymap_t default_editor_x_keymap
[];
43 extern const global_keymap_t default_panel_keymap
[];
46 extern const global_keymap_t default_input_keymap
[];
49 extern const global_keymap_t default_main_map
[];
50 extern const global_keymap_t default_main_x_map
[];
53 extern const global_keymap_t default_tree_keymap
[];
56 extern const global_keymap_t default_help_keymap
[];
58 #endif /* MC_KEYBIND_H */