diff options
author | Frederic Culot <calcurse@culot.org> | 2008-12-08 19:17:06 +0000 |
---|---|---|
committer | Frederic Culot <calcurse@culot.org> | 2008-12-08 19:17:06 +0000 |
commit | 7ff22e9b3f906b6f775e199d6cde73d8ee18d1d5 (patch) | |
tree | 3a06047647f6c6eb1f803322932f92e6bfdc974f /src/keys.h | |
parent | 639058740a44c6380258e0152f9916af1e53bb27 (diff) | |
download | calcurse-7ff22e9b3f906b6f775e199d6cde73d8ee18d1d5.tar.gz calcurse-7ff22e9b3f906b6f775e199d6cde73d8ee18d1d5.zip |
color configuration menu adapted to handle user-defined key bindings
Diffstat (limited to 'src/keys.h')
-rwxr-xr-x | src/keys.h | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $calcurse: keys.h,v 1.5 2008/11/25 20:48:58 culot Exp $ */ +/* $calcurse: keys.h,v 1.6 2008/12/08 19:17:07 culot Exp $ */ /* * Calcurse - text-based organizer @@ -31,6 +31,7 @@ #define CTRL(x) ((x) & CTRLVAL) #define ESCAPE 27 #define TAB 9 +#define SPACE 32 #define KEYS_KEYLEN 3 /* length of each keybinding */ #define KEYS_LABELEN 8 /* length of command description */ @@ -38,7 +39,8 @@ typedef enum { - KEY_GENERIC_ESCAPE, + KEY_GENERIC_CANCEL, + KEY_GENERIC_SELECT, KEY_GENERIC_CREDITS, KEY_GENERIC_HELP, KEY_GENERIC_QUIT, @@ -103,5 +105,6 @@ char *keys_action_allkeys (keys_e); void keys_display_bindings_bar (WINDOW *, binding_t **, int, int); void keys_popup_info (keys_e); void keys_save_bindings (FILE *); +int keys_check_missing_bindings (void); #endif /* CALCURSE_KEYS_H */ |