diff options
author | Baptiste Jonglez <baptiste--git@jonglez.org> | 2012-05-14 12:38:20 +0200 |
---|---|---|
committer | Lukas Fleischer <calcurse@cryptocrack.de> | 2012-05-14 19:31:12 +0200 |
commit | b2c92b2eb4ba8695923b72ff05493068b2be5934 (patch) | |
tree | 9e7618c080a8a74f27256b389af55e9a625a6ef8 /src/calcurse.h | |
parent | f5dd276edbeb65d787fcfd30a0d07bbc2660813c (diff) | |
download | calcurse-b2c92b2eb4ba8695923b72ff05493068b2be5934.tar.gz calcurse-b2c92b2eb4ba8695923b72ff05493068b2be5934.zip |
src/utils.c: Add a status_ask_simplechoice() function
We need a simpler version, based on the previously defined
`status_ask_choice()` function, that asks to choose amongst a number
of alternatives that can simply enumerated, without needing to bind
keys on them.
Signed-off-by: Baptiste Jonglez <baptiste--git@jonglez.org>
Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
Diffstat (limited to 'src/calcurse.h')
-rw-r--r-- | src/calcurse.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/calcurse.h b/src/calcurse.h index 4b54549..e26976a 100644 --- a/src/calcurse.h +++ b/src/calcurse.h @@ -897,6 +897,7 @@ void warnbox (const char *); void status_mesg (const char *, const char *); void status_mesg_yesno (const char *); int status_ask_choice (const char *, const char[], int); +int status_ask_simplechoice (const char *, const char *[], int); void erase_window_part (WINDOW *, int, int, int, int); WINDOW *popup (int, int, int, int, const char *, const char *, int); void print_in_middle (WINDOW *, int, int, int, const char *); |