X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fkbmap.C;h=30161748cb8dda04c22fbd546aec93162f064914;hb=35204f8f33d7400a5fefeffea533fb4cb4097211;hp=e494868c77e305b044a4a80e4c0cd93a55acfd97;hpb=250d7506c6783120b6f4244f2309bd727e2b1adb;p=lyx.git diff --git a/src/kbmap.C b/src/kbmap.C index e494868c77..30161748cb 100644 --- a/src/kbmap.C +++ b/src/kbmap.C @@ -24,7 +24,12 @@ #include "support/filetools.h" -using lyx::support::i18nLibFileSearch; +#include + + +namespace lyx { + +using support::i18nLibFileSearch; using std::endl; using std::string; @@ -195,7 +200,7 @@ kb_keymap::lookup(LyXKeySymPtr key, if (cit->table.get()) { // this is a prefix key - set new map seq->curmap = cit->table.get(); - static FuncRequest prefix(LFUN_PREFIX); + static FuncRequest prefix(LFUN_COMMAND_PREFIX); return prefix; } else { // final key - reset map @@ -253,6 +258,7 @@ void kb_keymap::defkey(kb_sequence * seq, it->table.reset(); } it->func = func; + it->func.origin = FuncRequest::KEYBOARD; return; } else if (!it->table.get()) { lyxerr << "Error: New binding for '" << seq->print() @@ -271,6 +277,7 @@ void kb_keymap::defkey(kb_sequence * seq, newone->mod = seq->modifiers[r]; if (r + 1 == seq->length()) { newone->func = func; + newone->func.origin = FuncRequest::KEYBOARD; newone->table.reset(); return; } else { @@ -281,26 +288,63 @@ void kb_keymap::defkey(kb_sequence * seq, } -string const kb_keymap::findbinding(FuncRequest const & func, - string const & prefix) const +string const kb_keymap::printbindings(FuncRequest const & func) const +{ + std::ostringstream res; + Bindings bindings = findbindings(func); + for (Bindings::const_iterator cit = bindings.begin(); + cit != bindings.end() ; ++cit) + res << '[' << cit->print() << ']'; + return res.str(); +} + + +kb_keymap::Bindings +kb_keymap::findbindings(FuncRequest const & func) const +{ + return findbindings(func, kb_sequence(0, 0)); +} + + +kb_keymap::Bindings +kb_keymap::findbindings(FuncRequest const & func, + kb_sequence const & prefix) const { - string res; + Bindings res; if (table.empty()) return res; Table::const_iterator end = table.end(); for (Table::const_iterator cit = table.begin(); cit != end; ++cit) { if (cit->table.get()) { - res += cit->table->findbinding(func, - prefix - + printKey((*cit)) - + ' '); + kb_sequence seq = prefix; + seq.addkey(cit->code, cit->mod.first); + Bindings res2 = + cit->table->findbindings(func, seq); + res.insert(res.end(), res2.begin(), res2.end()); } else if (cit->func == func) { - res += '['; - res += prefix + printKey((*cit)); - res += "] "; + kb_sequence seq = prefix; + seq.addkey(cit->code, cit->mod.first); + res.push_back(seq); } } return res; } + + +std::pair +kb_keymap::find1keybinding(FuncRequest const & func) const +{ + Table::const_iterator end = table.end(); + for (Table::const_iterator cit = table.begin(); + cit != end; ++cit) { + if (!cit->table.get() && cit->func == func) + return std::make_pair(cit->code.get(), cit->mod.first); + } + + return std::make_pair(0, key_modifier::none); +} + + +} // namespace lyx