X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fkbsequence.C;h=0d701cdb28ea982ad740bf828fecd98f9f4d7287;hb=6a55be9506b112110826cf63bc21786044569f1d;hp=af6c725c0dd83f965aaf8caf47d33ee44a73a632;hpb=99d1627a471b92f403598d03dfc861ddc3c11be0;p=lyx.git diff --git a/src/kbsequence.C b/src/kbsequence.C index af6c725c0d..0d701cdb28 100644 --- a/src/kbsequence.C +++ b/src/kbsequence.C @@ -1,27 +1,33 @@ /** * \file kbsequence.C - * Copyright 1995-2002 the LyX Team - * Read the file COPYING + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * \author John Levon + * \author Lars Gullik Bjønnes + * \author Jean-Marc Lasgouttes + * \author John Levon + * + * Full author contact details are available in file CREDITS. */ #include +#include "kbsequence.h" + #include "gettext.h" +#include "kbmap.h" +#include "lfuns.h" -#include "frontends/mouse_state.h" +#include "frontends/LyXKeySym.h" #include "frontends/LyXKeySymFactory.h" -#include "kbsequence.h" -#include "kbmap.h" -#include "commandtags.h" -#include "debug.h" using std::make_pair; +using std::string; -int kb_sequence::addkey(LyXKeySymPtr key, - key_modifier::state mod, key_modifier::state nmod) +FuncRequest const & +kb_sequence::addkey(LyXKeySymPtr key, + key_modifier::state mod, key_modifier::state nmod) { // adding a key to a deleted sequence // starts a new sequence @@ -38,7 +44,8 @@ int kb_sequence::addkey(LyXKeySymPtr key, return curmap->lookup(key, mod, this); } - return LFUN_UNKNOWN_ACTION; + static FuncRequest unknown(LFUN_UNKNOWN_ACTION); + return unknown; } @@ -130,7 +137,7 @@ string const kb_sequence::print() const KeySequence::size_type i, length = sequence.size(); for (i = 0; i < length; ++i) { - buf += kb_keymap::printKeysym(sequence[i], modifiers[i].first); + buf += sequence[i]->print(modifiers[i].first); // append a blank if (i + 1 < length) {