2012-10-17 13:14:03 +02:00
|
|
|
#include "input_handler.hh"
|
2012-09-03 14:22:02 +02:00
|
|
|
|
|
|
|
#include "context.hh"
|
2012-09-26 14:22:24 +02:00
|
|
|
#include "editor.hh"
|
2012-09-03 14:22:02 +02:00
|
|
|
#include "register_manager.hh"
|
2013-01-14 19:08:00 +01:00
|
|
|
#include "event_manager.hh"
|
2012-10-09 19:15:05 +02:00
|
|
|
#include "utf8.hh"
|
2012-09-03 14:22:02 +02:00
|
|
|
|
|
|
|
#include <unordered_map>
|
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
|
|
|
extern std::unordered_map<Key, std::function<void (Context& context)>> keymap;
|
|
|
|
|
2012-10-17 13:14:03 +02:00
|
|
|
class InputMode
|
2012-09-24 14:03:04 +02:00
|
|
|
{
|
|
|
|
public:
|
2012-10-17 13:14:03 +02:00
|
|
|
InputMode(InputHandler& input_handler) : m_input_handler(input_handler) {}
|
|
|
|
virtual ~InputMode() {}
|
|
|
|
InputMode(const InputMode&) = delete;
|
|
|
|
InputMode& operator=(const InputMode&) = delete;
|
2012-09-24 14:03:04 +02:00
|
|
|
|
2013-01-28 13:48:34 +01:00
|
|
|
virtual void on_key(const Key& key) = 0;
|
|
|
|
Context& context() const { return m_input_handler.context(); }
|
2013-02-18 14:07:30 +01:00
|
|
|
|
|
|
|
using Insertion = InputHandler::Insertion;
|
|
|
|
Insertion& last_insert() { return m_input_handler.m_last_insert; }
|
|
|
|
|
2012-09-24 14:03:04 +02:00
|
|
|
protected:
|
2012-09-24 19:39:40 +02:00
|
|
|
void reset_normal_mode();
|
|
|
|
private:
|
2012-10-17 13:14:03 +02:00
|
|
|
InputHandler& m_input_handler;
|
2012-09-24 14:03:04 +02:00
|
|
|
};
|
|
|
|
|
2012-10-17 13:14:03 +02:00
|
|
|
namespace InputModes
|
2012-09-26 14:22:24 +02:00
|
|
|
{
|
|
|
|
|
2013-01-17 13:58:57 +01:00
|
|
|
static constexpr std::chrono::milliseconds idle_timeout{100};
|
|
|
|
|
2012-10-17 13:14:03 +02:00
|
|
|
class Normal : public InputMode
|
2012-09-03 14:22:02 +02:00
|
|
|
{
|
|
|
|
public:
|
2012-10-17 13:14:03 +02:00
|
|
|
Normal(InputHandler& input_handler)
|
2013-01-29 13:58:19 +01:00
|
|
|
: InputMode(input_handler),
|
|
|
|
m_idle_timer{Clock::now() + idle_timeout, [this](Timer& timer) {
|
|
|
|
context().hooks().run_hook("NormalIdle", "", context());
|
|
|
|
}}
|
2013-01-30 19:04:03 +01:00
|
|
|
{
|
|
|
|
context().hooks().run_hook("NormalBegin", "", context());
|
|
|
|
}
|
|
|
|
|
|
|
|
~Normal()
|
|
|
|
{
|
|
|
|
context().hooks().run_hook("NormalEnd", "", context());
|
|
|
|
}
|
2012-09-03 14:22:02 +02:00
|
|
|
|
2013-01-28 13:48:34 +01:00
|
|
|
void on_key(const Key& key) override
|
2012-09-03 14:22:02 +02:00
|
|
|
{
|
|
|
|
if (key.modifiers == Key::Modifiers::None and isdigit(key.key))
|
|
|
|
m_count = m_count * 10 + key.key - '0';
|
|
|
|
else
|
|
|
|
{
|
|
|
|
auto it = keymap.find(key);
|
|
|
|
if (it != keymap.end())
|
|
|
|
{
|
2013-01-28 13:48:34 +01:00
|
|
|
context().numeric_param() = m_count;
|
|
|
|
it->second(context());
|
2012-09-03 14:22:02 +02:00
|
|
|
}
|
2012-11-27 18:52:43 +01:00
|
|
|
m_count = 0;
|
2012-09-03 14:22:02 +02:00
|
|
|
}
|
2013-01-30 19:04:03 +01:00
|
|
|
context().hooks().run_hook("NormalKey", key_to_str(key), context());
|
2013-01-29 13:58:19 +01:00
|
|
|
m_idle_timer.set_next_date(Clock::now() + idle_timeout);
|
2012-09-03 14:22:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
int m_count = 0;
|
2013-01-29 13:58:19 +01:00
|
|
|
Timer m_idle_timer;
|
2012-09-03 14:22:02 +02:00
|
|
|
};
|
|
|
|
|
2012-10-13 21:57:03 +02:00
|
|
|
class LineEditor
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
void handle_key(const Key& key)
|
|
|
|
{
|
|
|
|
if (key == Key::Left or
|
|
|
|
key == Key{Key::Modifiers::Control, 'b'})
|
|
|
|
{
|
|
|
|
if (m_cursor_pos > 0)
|
|
|
|
--m_cursor_pos;
|
|
|
|
}
|
|
|
|
else if (key == Key::Right or
|
|
|
|
key == Key{Key::Modifiers::Control, 'f'})
|
|
|
|
{
|
|
|
|
if (m_cursor_pos < m_line.char_length())
|
|
|
|
++m_cursor_pos;
|
|
|
|
}
|
2013-02-19 13:50:27 +01:00
|
|
|
else if (key == Key::Home)
|
|
|
|
m_cursor_pos = 0;
|
|
|
|
else if (key == Key::End)
|
|
|
|
m_cursor_pos = m_line.char_length();
|
2012-10-13 21:57:03 +02:00
|
|
|
else if (key == Key::Backspace)
|
|
|
|
{
|
|
|
|
if (m_cursor_pos != 0)
|
|
|
|
{
|
|
|
|
m_line = m_line.substr(0, m_cursor_pos - 1)
|
|
|
|
+ m_line.substr(m_cursor_pos);
|
|
|
|
|
|
|
|
--m_cursor_pos;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-10-29 18:59:41 +01:00
|
|
|
m_line = m_line.substr(0, m_cursor_pos) + codepoint_to_str(key.key)
|
2012-10-13 21:57:03 +02:00
|
|
|
+ m_line.substr(m_cursor_pos);
|
|
|
|
++m_cursor_pos;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void insert(const String& str)
|
|
|
|
{
|
|
|
|
insert_from(m_cursor_pos, str);
|
|
|
|
}
|
|
|
|
|
|
|
|
void insert_from(CharCount start, const String& str)
|
|
|
|
{
|
|
|
|
assert(start <= m_cursor_pos);
|
|
|
|
m_line = m_line.substr(0, start) + str
|
|
|
|
+ m_line.substr(m_cursor_pos);
|
|
|
|
m_cursor_pos = start + str.char_length();
|
|
|
|
}
|
|
|
|
|
|
|
|
void reset(String line)
|
|
|
|
{
|
|
|
|
m_line = std::move(line);
|
|
|
|
m_cursor_pos = m_line.char_length();
|
|
|
|
}
|
|
|
|
|
|
|
|
const String& line() const { return m_line; }
|
|
|
|
CharCount cursor_pos() const { return m_cursor_pos; }
|
|
|
|
private:
|
|
|
|
CharCount m_cursor_pos = 0;
|
|
|
|
String m_line;
|
|
|
|
};
|
|
|
|
|
2012-10-17 13:14:03 +02:00
|
|
|
class Menu : public InputMode
|
2012-09-03 14:22:02 +02:00
|
|
|
{
|
|
|
|
public:
|
2013-01-28 13:48:34 +01:00
|
|
|
Menu(InputHandler& input_handler, const memoryview<String>& choices,
|
2012-09-26 14:22:24 +02:00
|
|
|
MenuCallback callback)
|
2013-01-28 13:48:34 +01:00
|
|
|
: InputMode(input_handler),
|
2012-10-15 01:46:52 +02:00
|
|
|
m_callback(callback), m_choices(choices.begin(), choices.end()),
|
|
|
|
m_selected(m_choices.begin())
|
2012-09-03 14:22:02 +02:00
|
|
|
{
|
2013-02-18 14:13:01 +01:00
|
|
|
DisplayCoord menu_pos{ context().ui().dimensions().line, 0_char };
|
2013-01-28 13:48:34 +01:00
|
|
|
context().ui().menu_show(choices, menu_pos, MenuStyle::Prompt);
|
2012-09-03 19:20:41 +02:00
|
|
|
}
|
|
|
|
|
2013-01-28 13:48:34 +01:00
|
|
|
void on_key(const Key& key) override
|
2012-09-03 14:22:02 +02:00
|
|
|
{
|
2012-10-15 01:46:52 +02:00
|
|
|
auto match_filter = [this](const String& str) {
|
|
|
|
return boost::regex_match(str.begin(), str.end(), m_filter);
|
|
|
|
};
|
|
|
|
|
2012-09-03 14:22:02 +02:00
|
|
|
if (key == Key(Key::Modifiers::Control, 'm'))
|
|
|
|
{
|
2013-01-28 13:48:34 +01:00
|
|
|
context().ui().menu_hide();
|
|
|
|
context().ui().print_status("");
|
2012-09-24 19:39:40 +02:00
|
|
|
reset_normal_mode();
|
2012-11-27 18:52:43 +01:00
|
|
|
int selected = m_selected - m_choices.begin();
|
2013-01-28 13:48:34 +01:00
|
|
|
m_callback(selected, MenuEvent::Validate, context());
|
2012-10-15 01:46:52 +02:00
|
|
|
return;
|
2012-09-03 14:22:02 +02:00
|
|
|
}
|
2012-11-08 14:05:00 +01:00
|
|
|
else if (key == Key::Escape or key == Key{ Key::Modifiers::Control, 'c' })
|
2012-09-03 14:22:02 +02:00
|
|
|
{
|
2012-10-15 01:46:52 +02:00
|
|
|
if (m_edit_filter)
|
|
|
|
{
|
|
|
|
m_edit_filter = false;
|
|
|
|
m_filter = boost::regex(".*");
|
|
|
|
m_filter_editor.reset("");
|
2013-01-28 13:48:34 +01:00
|
|
|
context().ui().print_status("");
|
2012-10-15 01:46:52 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-01-28 13:48:34 +01:00
|
|
|
context().ui().menu_hide();
|
2012-10-15 01:46:52 +02:00
|
|
|
reset_normal_mode();
|
2012-12-14 19:38:11 +01:00
|
|
|
int selected = m_selected - m_choices.begin();
|
2013-01-28 13:48:34 +01:00
|
|
|
m_callback(selected, MenuEvent::Abort, context());
|
2012-10-15 01:46:52 +02:00
|
|
|
}
|
2012-09-03 14:22:02 +02:00
|
|
|
}
|
2012-10-15 01:46:52 +02:00
|
|
|
else if (key == Key::Down or
|
|
|
|
key == Key(Key::Modifiers::Control, 'i') or
|
|
|
|
key == Key(Key::Modifiers::Control, 'n') or
|
|
|
|
key == Key(Key::Modifiers::None, 'j'))
|
2012-09-03 14:22:02 +02:00
|
|
|
{
|
2012-10-15 01:46:52 +02:00
|
|
|
auto it = std::find_if(m_selected+1, m_choices.end(), match_filter);
|
|
|
|
if (it == m_choices.end())
|
2012-10-29 19:17:37 +01:00
|
|
|
it = std::find_if(m_choices.begin(), m_selected, match_filter);
|
2013-01-28 13:48:34 +01:00
|
|
|
select(it);
|
2012-10-15 01:46:52 +02:00
|
|
|
}
|
|
|
|
else if (key == Key::Up or
|
|
|
|
key == Key::BackTab or
|
|
|
|
key == Key(Key::Modifiers::Control, 'p') or
|
|
|
|
key == Key(Key::Modifiers::None, 'k'))
|
|
|
|
{
|
2012-10-29 19:17:37 +01:00
|
|
|
ChoiceList::const_reverse_iterator selected(m_selected+1);
|
|
|
|
auto it = std::find_if(selected+1, m_choices.rend(), match_filter);
|
2012-10-15 01:46:52 +02:00
|
|
|
if (it == m_choices.rend())
|
|
|
|
it = std::find_if(m_choices.rbegin(), selected, match_filter);
|
2013-01-28 13:48:34 +01:00
|
|
|
select(it.base()-1);
|
2012-10-15 01:46:52 +02:00
|
|
|
}
|
|
|
|
else if (key == '/' and not m_edit_filter)
|
|
|
|
{
|
|
|
|
m_edit_filter = true;
|
|
|
|
}
|
|
|
|
else if (m_edit_filter)
|
|
|
|
{
|
|
|
|
m_filter_editor.handle_key(key);
|
|
|
|
|
|
|
|
auto search = ".*" + m_filter_editor.line() + ".*";
|
|
|
|
m_filter = boost::regex(search.begin(), search.end());
|
|
|
|
auto it = std::find_if(m_selected, m_choices.end(), match_filter);
|
|
|
|
if (it == m_choices.end())
|
|
|
|
it = std::find_if(m_choices.begin(), m_selected, match_filter);
|
2013-01-28 13:48:34 +01:00
|
|
|
select(it);
|
2012-09-03 14:22:02 +02:00
|
|
|
}
|
2012-10-15 01:46:52 +02:00
|
|
|
|
|
|
|
if (m_edit_filter)
|
2013-01-28 13:48:34 +01:00
|
|
|
context().ui().print_status("/" + m_filter_editor.line(),
|
2012-10-15 01:46:52 +02:00
|
|
|
m_filter_editor.cursor_pos() + 1);
|
2012-09-03 14:22:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
MenuCallback m_callback;
|
2012-10-15 01:46:52 +02:00
|
|
|
|
|
|
|
using ChoiceList = std::vector<String>;
|
|
|
|
const ChoiceList m_choices;
|
|
|
|
ChoiceList::const_iterator m_selected;
|
|
|
|
|
2013-01-28 13:48:34 +01:00
|
|
|
void select(ChoiceList::const_iterator it)
|
2012-12-14 19:38:11 +01:00
|
|
|
{
|
|
|
|
m_selected = it;
|
|
|
|
int selected = m_selected - m_choices.begin();
|
2013-01-28 13:48:34 +01:00
|
|
|
context().ui().menu_select(selected);
|
|
|
|
m_callback(selected, MenuEvent::Select, context());
|
2012-12-14 19:38:11 +01:00
|
|
|
}
|
|
|
|
|
2012-10-15 01:46:52 +02:00
|
|
|
boost::regex m_filter = boost::regex(".*");
|
|
|
|
bool m_edit_filter = false;
|
|
|
|
LineEditor m_filter_editor;
|
2012-09-03 14:22:02 +02:00
|
|
|
};
|
|
|
|
|
2012-11-29 19:56:34 +01:00
|
|
|
String common_prefix(const memoryview<String>& strings)
|
|
|
|
{
|
|
|
|
String res;
|
|
|
|
if (strings.empty())
|
|
|
|
return res;
|
|
|
|
res = strings[0];
|
|
|
|
for (auto& str : strings)
|
|
|
|
{
|
|
|
|
ByteCount len = std::min(res.length(), str.length());
|
|
|
|
ByteCount common_len = 0;
|
|
|
|
while (common_len < len and str[common_len] == res[common_len])
|
|
|
|
++common_len;
|
|
|
|
if (common_len != res.length())
|
|
|
|
res = res.substr(0, common_len);
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2012-10-17 13:14:03 +02:00
|
|
|
class Prompt : public InputMode
|
2012-09-03 14:22:02 +02:00
|
|
|
{
|
|
|
|
public:
|
2013-01-28 13:48:34 +01:00
|
|
|
Prompt(InputHandler& input_handler, const String& prompt,
|
2012-09-26 14:22:24 +02:00
|
|
|
Completer completer, PromptCallback callback)
|
2013-01-28 13:48:34 +01:00
|
|
|
: InputMode(input_handler), m_prompt(prompt),
|
2012-09-11 14:27:21 +02:00
|
|
|
m_completer(completer), m_callback(callback)
|
2012-09-03 14:22:02 +02:00
|
|
|
{
|
|
|
|
m_history_it = ms_history[m_prompt].end();
|
2013-01-28 13:48:34 +01:00
|
|
|
context().ui().print_status(m_prompt, m_prompt.char_length());
|
2012-09-03 19:20:41 +02:00
|
|
|
}
|
|
|
|
|
2013-01-28 13:48:34 +01:00
|
|
|
void on_key(const Key& key) override
|
2012-09-03 14:22:02 +02:00
|
|
|
{
|
|
|
|
std::vector<String>& history = ms_history[m_prompt];
|
2012-10-13 21:57:03 +02:00
|
|
|
const String& line = m_line_editor.line();
|
2012-11-07 20:36:45 +01:00
|
|
|
|
|
|
|
if (m_insert_reg)
|
|
|
|
{
|
2013-01-28 13:48:34 +01:00
|
|
|
String reg = RegisterManager::instance()[key.key].values(context())[0];
|
2012-11-07 20:36:45 +01:00
|
|
|
m_line_editor.insert(reg);
|
|
|
|
m_insert_reg = false;
|
|
|
|
}
|
|
|
|
else if (key == Key{Key::Modifiers::Control, 'm'}) // enter
|
2012-09-03 14:22:02 +02:00
|
|
|
{
|
2013-02-19 19:04:36 +01:00
|
|
|
if (not line.empty())
|
|
|
|
{
|
|
|
|
std::vector<String>::iterator it;
|
|
|
|
while ((it = find(history, line)) != history.end())
|
|
|
|
history.erase(it);
|
|
|
|
history.push_back(line);
|
|
|
|
}
|
2013-01-28 13:48:34 +01:00
|
|
|
context().ui().print_status("");
|
|
|
|
context().ui().menu_hide();
|
2012-09-24 19:39:40 +02:00
|
|
|
reset_normal_mode();
|
2012-09-11 14:27:21 +02:00
|
|
|
// call callback after reset_normal_mode so that callback
|
|
|
|
// may change the mode
|
2013-01-28 13:48:34 +01:00
|
|
|
m_callback(line, PromptEvent::Validate, context());
|
2012-09-03 14:22:02 +02:00
|
|
|
return;
|
|
|
|
}
|
2012-11-08 14:05:00 +01:00
|
|
|
else if (key == Key::Escape or key == Key { Key::Modifiers::Control, 'c' })
|
2012-09-03 14:22:02 +02:00
|
|
|
{
|
2013-01-28 13:48:34 +01:00
|
|
|
context().ui().print_status("");
|
|
|
|
context().ui().menu_hide();
|
2012-09-24 19:39:40 +02:00
|
|
|
reset_normal_mode();
|
2013-01-28 13:48:34 +01:00
|
|
|
m_callback(line, PromptEvent::Abort, context());
|
2012-09-03 14:22:02 +02:00
|
|
|
return;
|
|
|
|
}
|
2012-10-13 21:57:03 +02:00
|
|
|
else if (key == Key{Key::Modifiers::Control, 'r'})
|
|
|
|
{
|
2012-11-07 20:36:45 +01:00
|
|
|
m_insert_reg = true;
|
2012-10-13 21:57:03 +02:00
|
|
|
}
|
2012-09-07 20:22:19 +02:00
|
|
|
else if (key == Key::Up or
|
|
|
|
key == Key{Key::Modifiers::Control, 'p'})
|
2012-09-03 14:22:02 +02:00
|
|
|
{
|
|
|
|
if (m_history_it != history.begin())
|
|
|
|
{
|
|
|
|
if (m_history_it == history.end())
|
2012-10-13 21:57:03 +02:00
|
|
|
m_prefix = line;
|
2012-09-04 13:48:04 +02:00
|
|
|
auto it = m_history_it;
|
|
|
|
// search for the previous history entry matching typed prefix
|
2012-10-13 21:57:03 +02:00
|
|
|
ByteCount prefix_length = m_prefix.length();
|
2012-09-04 13:48:04 +02:00
|
|
|
do
|
|
|
|
{
|
|
|
|
--it;
|
2012-10-13 21:57:03 +02:00
|
|
|
if (it->substr(0, prefix_length) == m_prefix)
|
2012-09-04 13:48:04 +02:00
|
|
|
{
|
|
|
|
m_history_it = it;
|
2012-10-13 21:57:03 +02:00
|
|
|
m_line_editor.reset(*it);
|
2012-09-04 13:48:04 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
} while (it != history.begin());
|
2012-09-03 14:22:02 +02:00
|
|
|
}
|
|
|
|
}
|
2012-09-07 20:22:19 +02:00
|
|
|
else if (key == Key::Down or // next
|
|
|
|
key == Key{Key::Modifiers::Control, 'n'})
|
2012-09-03 14:22:02 +02:00
|
|
|
{
|
|
|
|
if (m_history_it != history.end())
|
|
|
|
{
|
2012-10-13 21:57:03 +02:00
|
|
|
ByteCount prefix_length = m_prefix.length();
|
2012-09-04 13:48:04 +02:00
|
|
|
// search for the next history entry matching typed prefix
|
2012-09-03 14:22:02 +02:00
|
|
|
++m_history_it;
|
2012-09-04 13:48:04 +02:00
|
|
|
while (m_history_it != history.end() and
|
2012-10-13 21:57:03 +02:00
|
|
|
m_history_it->substr(0, prefix_length) != m_prefix)
|
2012-09-04 13:48:04 +02:00
|
|
|
++m_history_it;
|
|
|
|
|
2012-09-03 14:22:02 +02:00
|
|
|
if (m_history_it != history.end())
|
2012-10-13 21:57:03 +02:00
|
|
|
m_line_editor.reset(*m_history_it);
|
2012-09-03 14:22:02 +02:00
|
|
|
else
|
2012-10-13 21:57:03 +02:00
|
|
|
m_line_editor.reset(m_prefix);
|
2012-09-03 14:22:02 +02:00
|
|
|
}
|
|
|
|
}
|
2012-09-12 19:09:27 +02:00
|
|
|
else if (key == Key(Key::Modifiers::Control, 'i') or // tab completion
|
2012-09-11 14:27:21 +02:00
|
|
|
key == Key::BackTab)
|
2012-09-03 14:22:02 +02:00
|
|
|
{
|
2012-09-11 14:27:21 +02:00
|
|
|
const bool reverse = (key == Key::BackTab);
|
2012-09-12 19:09:27 +02:00
|
|
|
CandidateList& candidates = m_completions.candidates;
|
|
|
|
// first try, we need to ask our completer for completions
|
2012-09-03 14:22:02 +02:00
|
|
|
if (m_current_completion == -1)
|
|
|
|
{
|
2013-01-28 13:48:34 +01:00
|
|
|
m_completions = m_completer(context(), line,
|
2012-10-13 21:57:03 +02:00
|
|
|
line.byte_count_to(m_line_editor.cursor_pos()));
|
2012-09-11 14:27:21 +02:00
|
|
|
if (candidates.empty())
|
2012-09-03 14:22:02 +02:00
|
|
|
return;
|
|
|
|
|
2013-01-28 13:48:34 +01:00
|
|
|
context().ui().menu_hide();
|
2013-02-18 14:13:01 +01:00
|
|
|
DisplayCoord menu_pos{ context().ui().dimensions().line, 0_char };
|
2013-01-28 13:48:34 +01:00
|
|
|
context().ui().menu_show(candidates, menu_pos, MenuStyle::Prompt);
|
2012-11-29 19:56:34 +01:00
|
|
|
|
2013-03-05 19:03:42 +01:00
|
|
|
bool use_common_prefix = context().options()["complete_prefix"].get<bool>();
|
2012-12-07 19:17:49 +01:00
|
|
|
String prefix = use_common_prefix ? common_prefix(candidates) : String();
|
|
|
|
if (m_completions.end - m_completions.start > prefix.length())
|
|
|
|
prefix = line.substr(m_completions.start,
|
|
|
|
m_completions.end - m_completions.start);
|
2012-11-29 19:56:34 +01:00
|
|
|
|
|
|
|
auto it = find(candidates, prefix);
|
|
|
|
if (it == candidates.end())
|
|
|
|
{
|
|
|
|
m_current_completion = use_common_prefix ? candidates.size() : 0;
|
2012-09-12 19:09:27 +02:00
|
|
|
candidates.push_back(std::move(prefix));
|
2012-11-29 19:56:34 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
m_current_completion = use_common_prefix ? it - candidates.begin() : 0;
|
2012-09-03 14:22:02 +02:00
|
|
|
}
|
2012-11-29 19:56:34 +01:00
|
|
|
else if (not reverse and ++m_current_completion >= candidates.size())
|
2012-09-11 14:27:21 +02:00
|
|
|
m_current_completion = 0;
|
2012-11-29 19:56:34 +01:00
|
|
|
else if (reverse and --m_current_completion < 0)
|
2012-09-12 19:09:27 +02:00
|
|
|
m_current_completion = candidates.size()-1;
|
2012-09-03 14:22:02 +02:00
|
|
|
|
2012-09-12 19:09:27 +02:00
|
|
|
const String& completion = candidates[m_current_completion];
|
2013-01-28 13:48:34 +01:00
|
|
|
context().ui().menu_select(m_current_completion);
|
2012-10-13 21:57:03 +02:00
|
|
|
|
|
|
|
m_line_editor.insert_from(line.char_count_to(m_completions.start),
|
|
|
|
completion);
|
2012-12-11 13:44:14 +01:00
|
|
|
|
|
|
|
// when we have only one completion candidate, make next tab complete
|
|
|
|
// from the new content.
|
|
|
|
if (candidates.size() == 1)
|
|
|
|
m_current_completion = -1;
|
2012-09-03 14:22:02 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-01-28 13:48:34 +01:00
|
|
|
context().ui().menu_hide();
|
2012-09-03 14:22:02 +02:00
|
|
|
m_current_completion = -1;
|
2012-10-13 21:57:03 +02:00
|
|
|
m_line_editor.handle_key(key);
|
2012-09-03 14:22:02 +02:00
|
|
|
}
|
2013-01-28 13:48:34 +01:00
|
|
|
context().ui().print_status(m_prompt + line,
|
2012-10-13 21:57:03 +02:00
|
|
|
m_prompt.char_length() + m_line_editor.cursor_pos());
|
2013-01-28 13:48:34 +01:00
|
|
|
m_callback(line, PromptEvent::Change, context());
|
2012-09-03 14:22:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
PromptCallback m_callback;
|
|
|
|
Completer m_completer;
|
|
|
|
const String m_prompt;
|
|
|
|
Completions m_completions;
|
|
|
|
int m_current_completion = -1;
|
2012-10-13 21:57:03 +02:00
|
|
|
String m_prefix;
|
|
|
|
LineEditor m_line_editor;
|
2012-11-07 20:36:45 +01:00
|
|
|
bool m_insert_reg = false;
|
2012-09-03 14:22:02 +02:00
|
|
|
|
|
|
|
static std::unordered_map<String, std::vector<String>> ms_history;
|
|
|
|
std::vector<String>::iterator m_history_it;
|
|
|
|
};
|
2012-09-26 14:22:24 +02:00
|
|
|
std::unordered_map<String, std::vector<String>> Prompt::ms_history;
|
2012-09-03 14:22:02 +02:00
|
|
|
|
2012-10-17 13:14:03 +02:00
|
|
|
class NextKey : public InputMode
|
2012-09-05 00:21:19 +02:00
|
|
|
{
|
|
|
|
public:
|
2012-10-17 13:14:03 +02:00
|
|
|
NextKey(InputHandler& input_handler, KeyCallback callback)
|
|
|
|
: InputMode(input_handler), m_callback(callback) {}
|
2012-09-05 00:21:19 +02:00
|
|
|
|
2013-01-28 13:48:34 +01:00
|
|
|
void on_key(const Key& key) override
|
2012-09-05 00:21:19 +02:00
|
|
|
{
|
2012-09-24 19:39:40 +02:00
|
|
|
reset_normal_mode();
|
2013-01-28 13:48:34 +01:00
|
|
|
m_callback(key, context());
|
2012-09-05 00:21:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
KeyCallback m_callback;
|
|
|
|
};
|
|
|
|
|
2013-03-08 18:43:14 +01:00
|
|
|
static std::pair<CandidateList, BufferIterator> complete_word(const BufferIterator& pos)
|
|
|
|
{
|
2013-03-09 13:23:47 +01:00
|
|
|
if (pos.is_begin() or not is_word(*utf8::previous(pos)))
|
|
|
|
return { {}, pos };
|
|
|
|
|
2013-03-08 18:43:14 +01:00
|
|
|
BufferIterator end = pos;
|
|
|
|
BufferIterator begin = end-1;
|
|
|
|
while (not begin.is_begin() and is_word(*begin))
|
|
|
|
--begin;
|
|
|
|
if (not is_word(*begin))
|
|
|
|
++begin;
|
|
|
|
|
|
|
|
const Buffer& buffer = pos.buffer();
|
2013-03-09 13:30:10 +01:00
|
|
|
String ex = R"(\<\Q)" + buffer.string(begin, end) + R"(\E\w+\>)";
|
2013-03-08 18:43:14 +01:00
|
|
|
Regex re(ex.begin(), ex.end());
|
2013-03-09 13:30:10 +01:00
|
|
|
using RegexIt = boost::regex_iterator<BufferIterator>;
|
2013-03-08 18:43:14 +01:00
|
|
|
|
|
|
|
CandidateList result;
|
2013-03-09 13:30:10 +01:00
|
|
|
for (RegexIt it(buffer.begin(), buffer.end(), re), re_end; it != re_end; ++it)
|
2013-03-08 18:43:14 +01:00
|
|
|
{
|
|
|
|
auto& match = (*it)[0];
|
|
|
|
if (match.first <= pos and pos < match.second)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
String content = buffer.string(match.first, match.second);
|
|
|
|
if (not contains(result, content))
|
|
|
|
result.emplace_back(std::move(content));
|
|
|
|
}
|
|
|
|
std::sort(result.begin(), result.end());
|
2013-03-09 13:30:10 +01:00
|
|
|
return { std::move(result), begin };
|
2013-03-08 18:43:14 +01:00
|
|
|
}
|
|
|
|
|
2013-03-09 14:23:19 +01:00
|
|
|
static std::pair<CandidateList, BufferIterator> complete_opt(const BufferIterator& pos, OptionManager& options)
|
|
|
|
{
|
|
|
|
using StringList = std::vector<String>;
|
|
|
|
const StringList& opt = options["completions"].get<StringList>();
|
|
|
|
if (opt.empty())
|
|
|
|
return { {}, pos };
|
|
|
|
|
|
|
|
auto& desc = opt[0];
|
|
|
|
Regex re(R"((\d+):(\d+)@(\d+))");
|
|
|
|
boost::match_results<String::iterator> match;
|
|
|
|
if (boost::regex_match(desc.begin(), desc.end(), match, re))
|
|
|
|
{
|
|
|
|
LineCount line = str_to_int(String(match[1].first, match[1].second)) - 1;
|
|
|
|
ByteCount column = str_to_int(String(match[2].first, match[2].second)) - 1;
|
|
|
|
int timestamp = str_to_int(String(match[3].first, match[3].second));
|
|
|
|
|
|
|
|
if (timestamp == pos.buffer().timestamp() and line == pos.line() and column == pos.column())
|
|
|
|
return { { opt.begin() + 1, opt.end() }, pos };
|
|
|
|
}
|
|
|
|
return { {}, pos };
|
|
|
|
}
|
|
|
|
|
2013-03-12 19:23:41 +01:00
|
|
|
class BufferCompleter : public OptionManagerWatcher
|
2012-09-30 16:24:06 +02:00
|
|
|
{
|
|
|
|
public:
|
2013-03-12 19:23:41 +01:00
|
|
|
BufferCompleter(const Context& context)
|
|
|
|
: m_context(context)
|
2012-09-30 16:24:06 +02:00
|
|
|
{
|
2013-03-12 19:23:41 +01:00
|
|
|
m_context.options().register_watcher(*this);
|
|
|
|
}
|
|
|
|
~BufferCompleter()
|
|
|
|
{
|
|
|
|
m_context.options().unregister_watcher(*this);
|
|
|
|
}
|
|
|
|
BufferCompleter(const BufferCompleter&) = delete;
|
|
|
|
BufferCompleter operator=(const BufferCompleter&) = delete;
|
|
|
|
|
|
|
|
void select(int offset)
|
|
|
|
{
|
|
|
|
if (not setup_ifn())
|
2012-09-30 16:24:06 +02:00
|
|
|
return;
|
|
|
|
|
2013-03-12 19:23:41 +01:00
|
|
|
m_context.buffer().erase(m_position, m_position + m_completions[m_current_completion].length());
|
2013-03-19 14:15:42 +01:00
|
|
|
m_current_completion = (m_current_completion + offset) % (int)m_completions.size();
|
|
|
|
if (m_current_completion < 0)
|
|
|
|
m_current_completion += m_completions.size();
|
2013-03-12 19:23:41 +01:00
|
|
|
m_context.buffer().insert(m_position, m_completions[m_current_completion]);
|
|
|
|
m_context.ui().menu_select(m_current_completion);
|
2012-09-30 16:24:06 +02:00
|
|
|
}
|
|
|
|
|
2013-03-12 19:23:41 +01:00
|
|
|
void reset()
|
2012-09-30 16:24:06 +02:00
|
|
|
{
|
|
|
|
m_position = BufferIterator();
|
2013-03-12 19:23:41 +01:00
|
|
|
m_context.ui().menu_hide();
|
2012-09-30 16:24:06 +02:00
|
|
|
}
|
|
|
|
private:
|
2013-03-12 19:23:41 +01:00
|
|
|
void on_option_changed(const Option& opt) override
|
|
|
|
{
|
|
|
|
if (opt.name() == "completions")
|
|
|
|
{
|
|
|
|
reset();
|
|
|
|
select(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool setup_ifn()
|
2012-09-30 16:24:06 +02:00
|
|
|
{
|
|
|
|
if (not m_position.is_valid())
|
|
|
|
{
|
2013-03-15 18:20:35 +01:00
|
|
|
BufferIterator cursor = m_context.editor().main_selection().last();
|
2013-03-12 19:23:41 +01:00
|
|
|
auto completions = complete_opt(cursor, m_context.options());
|
2013-03-09 14:23:19 +01:00
|
|
|
if (completions.first.empty())
|
|
|
|
completions = complete_word(cursor);
|
2013-03-08 18:43:14 +01:00
|
|
|
m_completions = std::move(completions.first);
|
2012-09-30 16:24:06 +02:00
|
|
|
if (m_completions.empty())
|
|
|
|
return false;
|
|
|
|
|
2013-03-08 18:43:14 +01:00
|
|
|
assert(cursor >= completions.second);
|
|
|
|
m_position = completions.second;
|
2013-03-12 19:23:41 +01:00
|
|
|
DisplayCoord menu_pos = m_context.window().display_position(m_position);
|
|
|
|
m_context.ui().menu_show(m_completions, menu_pos, MenuStyle::Inline);
|
2012-09-30 16:24:06 +02:00
|
|
|
|
2013-03-12 19:23:41 +01:00
|
|
|
m_completions.push_back(m_context.buffer().string(m_position, cursor));
|
2012-09-30 16:24:06 +02:00
|
|
|
m_current_completion = m_completions.size() - 1;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-03-12 19:23:41 +01:00
|
|
|
const Context& m_context;
|
2012-09-30 16:24:06 +02:00
|
|
|
BufferIterator m_position;
|
|
|
|
CandidateList m_completions;
|
|
|
|
int m_current_completion = -1;
|
|
|
|
};
|
|
|
|
|
2012-10-17 13:14:03 +02:00
|
|
|
class Insert : public InputMode
|
2012-09-05 14:27:14 +02:00
|
|
|
{
|
|
|
|
public:
|
2013-01-28 13:48:34 +01:00
|
|
|
Insert(InputHandler& input_handler, InsertMode mode)
|
|
|
|
: InputMode(input_handler),
|
|
|
|
m_inserter(context().editor(), mode),
|
2013-03-12 19:23:41 +01:00
|
|
|
m_completer(context()),
|
2013-01-17 13:58:57 +01:00
|
|
|
m_idle_timer{Clock::now() + idle_timeout,
|
2013-01-28 13:48:34 +01:00
|
|
|
[this](Timer& timer) {
|
|
|
|
context().hooks().run_hook("InsertIdle", "", context());
|
2013-03-12 19:23:41 +01:00
|
|
|
m_completer.reset();
|
2013-01-28 13:48:34 +01:00
|
|
|
if (context().editor().selections().size() == 1)
|
2013-03-12 19:23:41 +01:00
|
|
|
m_completer.select(0);
|
2013-01-15 14:15:12 +01:00
|
|
|
}}
|
2012-09-05 14:27:14 +02:00
|
|
|
{
|
2013-02-18 14:07:30 +01:00
|
|
|
last_insert().first = mode;
|
|
|
|
last_insert().second.clear();
|
2013-01-28 13:48:34 +01:00
|
|
|
context().hooks().run_hook("InsertBegin", "", context());
|
2012-09-05 14:27:14 +02:00
|
|
|
}
|
|
|
|
|
2013-01-28 13:48:34 +01:00
|
|
|
void on_key(const Key& key) override
|
2012-09-05 14:27:14 +02:00
|
|
|
{
|
2013-02-18 14:07:30 +01:00
|
|
|
last_insert().second.push_back(key);
|
2012-09-05 14:27:14 +02:00
|
|
|
if (m_insert_reg)
|
|
|
|
{
|
|
|
|
if (key.modifiers == Key::Modifiers::None)
|
2013-01-28 13:48:34 +01:00
|
|
|
m_inserter.insert(RegisterManager::instance()[key.key].values(context()));
|
2012-09-05 14:27:14 +02:00
|
|
|
m_insert_reg = false;
|
|
|
|
return;
|
|
|
|
}
|
2013-01-17 14:22:24 +01:00
|
|
|
bool update_completions = true;
|
2013-01-17 13:58:57 +01:00
|
|
|
bool moved = false;
|
2012-11-08 14:05:00 +01:00
|
|
|
if (key == Key::Escape or key == Key{ Key::Modifiers::Control, 'c' })
|
2012-09-05 14:27:14 +02:00
|
|
|
{
|
2013-01-28 13:48:34 +01:00
|
|
|
context().hooks().run_hook("InsertEnd", "", context());
|
2013-03-12 19:23:41 +01:00
|
|
|
m_completer.reset();
|
2012-11-08 14:05:00 +01:00
|
|
|
reset_normal_mode();
|
|
|
|
}
|
|
|
|
else if (key == Key::Backspace)
|
|
|
|
m_inserter.erase();
|
|
|
|
else if (key == Key::Left)
|
2013-01-17 14:22:24 +01:00
|
|
|
{
|
2012-11-26 19:38:07 +01:00
|
|
|
m_inserter.move_cursors(-1_char);
|
2013-01-17 14:22:24 +01:00
|
|
|
moved = true;
|
|
|
|
}
|
2012-11-08 14:05:00 +01:00
|
|
|
else if (key == Key::Right)
|
2013-01-17 13:58:57 +01:00
|
|
|
{
|
2012-11-26 19:38:07 +01:00
|
|
|
m_inserter.move_cursors(1_char);
|
2013-01-17 13:58:57 +01:00
|
|
|
moved = true;
|
|
|
|
}
|
2012-11-08 14:05:00 +01:00
|
|
|
else if (key == Key::Up)
|
2013-01-17 13:58:57 +01:00
|
|
|
{
|
2012-11-26 19:38:07 +01:00
|
|
|
m_inserter.move_cursors(-1_line);
|
2013-01-17 13:58:57 +01:00
|
|
|
moved = true;
|
|
|
|
}
|
2012-11-08 14:05:00 +01:00
|
|
|
else if (key == Key::Down)
|
2013-01-17 13:58:57 +01:00
|
|
|
{
|
2012-11-26 19:38:07 +01:00
|
|
|
m_inserter.move_cursors(1_line);
|
2013-01-17 13:58:57 +01:00
|
|
|
moved = true;
|
|
|
|
}
|
2012-11-08 14:05:00 +01:00
|
|
|
else if (key.modifiers == Key::Modifiers::None)
|
2013-01-30 19:04:03 +01:00
|
|
|
{
|
2012-11-08 14:05:00 +01:00
|
|
|
m_inserter.insert(codepoint_to_str(key.key));
|
2013-01-30 19:04:03 +01:00
|
|
|
context().hooks().run_hook("InsertKey", key_to_str(key), context());
|
|
|
|
}
|
2012-11-08 14:05:00 +01:00
|
|
|
else if (key == Key{ Key::Modifiers::Control, 'r' })
|
|
|
|
m_insert_reg = true;
|
|
|
|
else if ( key == Key{ Key::Modifiers::Control, 'm' })
|
|
|
|
m_inserter.insert(String() + '\n');
|
|
|
|
else if ( key == Key{ Key::Modifiers::Control, 'i' })
|
|
|
|
m_inserter.insert(String() + '\t');
|
|
|
|
else if ( key == Key{ Key::Modifiers::Control, 'n' })
|
|
|
|
{
|
2013-03-12 19:23:41 +01:00
|
|
|
m_completer.select(1);
|
2013-01-17 14:22:24 +01:00
|
|
|
update_completions = false;
|
2012-11-08 14:05:00 +01:00
|
|
|
}
|
|
|
|
else if ( key == Key{ Key::Modifiers::Control, 'p' })
|
|
|
|
{
|
2013-03-12 19:23:41 +01:00
|
|
|
m_completer.select(-1);
|
2013-01-17 14:22:24 +01:00
|
|
|
update_completions = false;
|
2012-11-08 14:05:00 +01:00
|
|
|
}
|
|
|
|
|
2013-01-17 14:22:24 +01:00
|
|
|
if (update_completions)
|
2013-01-17 13:58:57 +01:00
|
|
|
m_idle_timer.set_next_date(Clock::now() + idle_timeout);
|
|
|
|
if (moved)
|
2013-01-30 19:04:03 +01:00
|
|
|
context().hooks().run_hook("InsertMove", key_to_str(key), context());
|
2012-09-05 14:27:14 +02:00
|
|
|
}
|
|
|
|
private:
|
|
|
|
bool m_insert_reg = false;
|
|
|
|
IncrementalInserter m_inserter;
|
2013-03-08 18:43:14 +01:00
|
|
|
BufferCompleter m_completer;
|
2013-03-12 19:23:41 +01:00
|
|
|
Timer m_idle_timer;
|
2012-09-05 14:27:14 +02:00
|
|
|
};
|
|
|
|
|
2012-09-26 14:22:24 +02:00
|
|
|
}
|
|
|
|
|
2012-10-17 13:14:03 +02:00
|
|
|
void InputMode::reset_normal_mode()
|
2012-09-26 14:22:24 +02:00
|
|
|
{
|
2012-11-27 18:52:43 +01:00
|
|
|
m_input_handler.m_mode_trash.emplace_back(std::move(m_input_handler.m_mode));
|
|
|
|
m_input_handler.m_mode.reset(new InputModes::Normal(m_input_handler));
|
2012-09-26 14:22:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-01-28 13:48:34 +01:00
|
|
|
InputHandler::InputHandler(UserInterface& ui)
|
|
|
|
: m_context(*this, ui), m_mode(new InputModes::Normal(*this))
|
2012-09-05 14:27:14 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-10-17 13:14:03 +02:00
|
|
|
InputHandler::~InputHandler()
|
2012-09-24 14:03:04 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-01-29 13:49:01 +01:00
|
|
|
void InputHandler::insert(InsertMode mode)
|
2012-09-05 14:27:14 +02:00
|
|
|
{
|
2012-11-27 18:52:43 +01:00
|
|
|
m_mode_trash.emplace_back(std::move(m_mode));
|
2013-01-28 13:48:34 +01:00
|
|
|
m_mode.reset(new InputModes::Insert(*this, mode));
|
2012-09-05 14:27:14 +02:00
|
|
|
}
|
|
|
|
|
2013-01-29 13:49:01 +01:00
|
|
|
void InputHandler::repeat_last_insert()
|
2012-09-03 14:22:02 +02:00
|
|
|
{
|
2013-02-18 14:07:30 +01:00
|
|
|
if (m_last_insert.second.empty())
|
2012-09-07 14:28:27 +02:00
|
|
|
return;
|
|
|
|
|
2012-09-05 14:27:14 +02:00
|
|
|
std::vector<Key> keys;
|
2013-02-18 14:07:30 +01:00
|
|
|
swap(keys, m_last_insert.second);
|
2012-09-26 20:07:06 +02:00
|
|
|
// context.last_insert will be refilled by the new Insert
|
2012-09-05 14:27:14 +02:00
|
|
|
// this is very inefficient.
|
2012-11-27 18:52:43 +01:00
|
|
|
m_mode_trash.emplace_back(std::move(m_mode));
|
2013-02-18 14:07:30 +01:00
|
|
|
m_mode.reset(new InputModes::Insert(*this, m_last_insert.first));
|
2012-09-05 14:27:14 +02:00
|
|
|
for (auto& key : keys)
|
2013-01-28 13:48:34 +01:00
|
|
|
m_mode->on_key(key);
|
2012-10-17 13:14:03 +02:00
|
|
|
assert(dynamic_cast<InputModes::Normal*>(m_mode.get()) != nullptr);
|
2012-09-03 14:22:02 +02:00
|
|
|
}
|
|
|
|
|
2012-10-17 13:14:03 +02:00
|
|
|
void InputHandler::prompt(const String& prompt, Completer completer,
|
2013-01-29 13:49:01 +01:00
|
|
|
PromptCallback callback)
|
2012-09-03 14:22:02 +02:00
|
|
|
{
|
2012-11-27 18:52:43 +01:00
|
|
|
m_mode_trash.emplace_back(std::move(m_mode));
|
2013-01-28 13:48:34 +01:00
|
|
|
m_mode.reset(new InputModes::Prompt(*this, prompt, completer, callback));
|
2012-09-03 14:22:02 +02:00
|
|
|
}
|
|
|
|
|
2012-10-17 13:14:03 +02:00
|
|
|
void InputHandler::menu(const memoryview<String>& choices,
|
2013-01-29 13:49:01 +01:00
|
|
|
MenuCallback callback)
|
2012-09-03 14:22:02 +02:00
|
|
|
{
|
2012-11-27 18:52:43 +01:00
|
|
|
m_mode_trash.emplace_back(std::move(m_mode));
|
2013-01-28 13:48:34 +01:00
|
|
|
m_mode.reset(new InputModes::Menu(*this, choices, callback));
|
2012-09-03 14:22:02 +02:00
|
|
|
}
|
|
|
|
|
2012-10-17 13:14:03 +02:00
|
|
|
void InputHandler::on_next_key(KeyCallback callback)
|
2012-09-05 00:21:19 +02:00
|
|
|
{
|
2012-11-27 18:52:43 +01:00
|
|
|
m_mode_trash.emplace_back(std::move(m_mode));
|
2012-10-17 13:14:03 +02:00
|
|
|
m_mode.reset(new InputModes::NextKey(*this, callback));
|
2012-09-05 00:21:19 +02:00
|
|
|
}
|
|
|
|
|
2012-10-29 18:59:41 +01:00
|
|
|
bool is_valid(const Key& key)
|
|
|
|
{
|
|
|
|
return key != Key::Invalid and key.key <= 0x10FFFF;
|
|
|
|
}
|
|
|
|
|
2013-01-29 13:49:01 +01:00
|
|
|
void InputHandler::handle_available_inputs()
|
2012-09-03 14:22:02 +02:00
|
|
|
{
|
2012-11-27 18:52:43 +01:00
|
|
|
m_mode_trash.clear();
|
2013-01-29 13:49:01 +01:00
|
|
|
while (m_context.ui().is_key_available())
|
2012-10-28 09:26:54 +01:00
|
|
|
{
|
2013-01-29 13:49:01 +01:00
|
|
|
Key key = m_context.ui().get_key();
|
2012-10-29 18:59:41 +01:00
|
|
|
if (is_valid(key))
|
2013-02-18 18:58:07 +01:00
|
|
|
{
|
|
|
|
const bool was_recording = is_recording();
|
|
|
|
|
2013-01-28 13:48:34 +01:00
|
|
|
m_mode->on_key(key);
|
2013-02-18 18:58:07 +01:00
|
|
|
|
|
|
|
// do not record the key that made us enter or leave recording mode.
|
|
|
|
if (was_recording and is_recording())
|
|
|
|
m_recorded_keys += key_to_str(key);
|
|
|
|
}
|
2012-11-27 18:52:43 +01:00
|
|
|
m_mode_trash.clear();
|
2012-10-28 09:26:54 +01:00
|
|
|
}
|
2012-09-03 14:22:02 +02:00
|
|
|
}
|
|
|
|
|
2013-02-18 18:58:07 +01:00
|
|
|
void InputHandler::start_recording(char reg)
|
|
|
|
{
|
|
|
|
assert(m_recording_reg == 0);
|
2013-02-21 13:34:34 +01:00
|
|
|
m_recorded_keys = "";
|
2013-02-18 18:58:07 +01:00
|
|
|
m_recording_reg = reg;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool InputHandler::is_recording() const
|
|
|
|
{
|
|
|
|
return m_recording_reg != 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void InputHandler::stop_recording()
|
|
|
|
{
|
|
|
|
assert(m_recording_reg != 0);
|
|
|
|
RegisterManager::instance()[m_recording_reg] = memoryview<String>(m_recorded_keys);
|
|
|
|
m_recording_reg = 0;
|
|
|
|
}
|
|
|
|
|
2012-09-03 14:22:02 +02:00
|
|
|
}
|