use a settable get_key function to be able to override key reading

This commit is contained in:
Maxime Coste 2012-01-24 23:18:59 +00:00
parent e0b216d576
commit 381d884c16

View File

@ -163,7 +163,7 @@ void draw_window(Window& window)
move(cursor_position.line, cursor_position.column);
}
Key get_key()
Key ncurses_get_key()
{
char c = getch();
@ -305,6 +305,14 @@ std::string prompt(const std::string& text, Completer completer = complete_nothi
return prompt_func(text, completer);
}
static std::function<Key ()> get_key_func = ncurses_get_key;
Key get_key()
{
return get_key_func();
}
void print_status(const std::string& status)
{
int x,y;
@ -426,8 +434,11 @@ void do_go(Window& window, int count)
}
else
{
char c = getch();
switch (c)
Key key = get_key();
if (key.modifiers != Key::Modifiers::None)
return;
switch (key.key)
{
case 'g':
case 't':
@ -973,6 +984,14 @@ void exec_string(const CommandParameters& params,
KeyList keys = parse_keys(params[0]);
auto prompt_save = prompt_func;
auto get_key_save = get_key_func;
auto restore_funcs = on_scope_end([&]() {
prompt_func = prompt_save;
get_key_func = get_key_save;
});
prompt_func = [&](const std::string&, Completer) {
size_t begin = pos;
while (pos < keys.size() and keys[pos].key != '\n')
@ -986,7 +1005,11 @@ void exec_string(const CommandParameters& params,
return result;
};
auto restore_prompt = on_scope_end([&]() { prompt_func = ncurses_prompt; });
get_key_func = [&]() {
if (pos >= keys.size())
throw runtime_error("no more characters");
return keys[pos++];
};
int count = 0;
while(pos < keys.size())