X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fkbsequence.C;h=0d701cdb28ea982ad740bf828fecd98f9f4d7287;hb=9ee46b846e5e84ad40ceda4f4af94aeb86cd90a2;hp=29f2cdc80f22993d154b9b316124c0ee68bb5e36;hpb=31538bd39e1a235d27d5841d6ddacba915fd6b3b;p=lyx.git diff --git a/src/kbsequence.C b/src/kbsequence.C index 29f2cdc80f..0d701cdb28 100644 --- a/src/kbsequence.C +++ b/src/kbsequence.C @@ -1,60 +1,51 @@ -/* This file is part of - * ====================================================== +/** + * \file kbsequence.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor - * - * Copyright 1995 Matthias Ettrich - * Copyright 1995-2001 The LyX Team. + * \author Lars Gullik Bjønnes + * \author Jean-Marc Lasgouttes + * \author John Levon * - * ====================================================== */ + * Full author contact details are available in file CREDITS. + */ #include -//#include -#include - -#include "gettext.h" - -#ifdef __GNUG__ -#pragma implementation -#endif #include "kbsequence.h" -#include "kbmap.h" -#include "commandtags.h" -#include "debug.h" +#include "gettext.h" +#include "kbmap.h" +#include "lfuns.h" -using std::vector; -using std::endl; -using std::hex; -using std::dec; - +#include "frontends/LyXKeySym.h" +#include "frontends/LyXKeySymFactory.h" -// The only modifiers that we handle. We want to throw away things -// like NumLock. -enum { ModsMask = ShiftMask | ControlMask | Mod1Mask }; +using std::make_pair; +using std::string; -int kb_sequence::addkey(unsigned int key, unsigned int mod, unsigned int 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 if (deleted_) { deleted_ = false; - length_ = 0; sequence.clear(); modifiers.clear(); } - modifiers.push_back(mod + (nmod << 16)); + modifiers.push_back(make_pair(mod, nmod)); sequence.push_back(key); - ++length_; if (curmap) { return curmap->lookup(key, mod, this); } - - return LFUN_UNKNOWN_ACTION; + + static FuncRequest unknown(LFUN_UNKNOWN_ACTION); + return unknown; } @@ -63,26 +54,27 @@ string::size_type kb_sequence::parse(string const & s) if (s.empty()) return 1; string::size_type i = 0; - unsigned int mod = 0; - unsigned int nmod = 0; + key_modifier::state mod = key_modifier::none; + key_modifier::state nmod = key_modifier::none; + while (i < s.length()) { if (s[i] == ' ') ++i; if (i >= s.length()) break; - + if (i + 1 < s.length() && s[i + 1] == '-') { switch (s[i]) { case 's': case 'S': - mod |= ShiftMask; + mod |= key_modifier::shift; i += 2; continue; case 'c': case 'C': - mod |= ControlMask; + mod |= key_modifier::ctrl; i += 2; continue; case 'm': case 'M': - mod |= Mod1Mask; + mod |= key_modifier::alt; i += 2; continue; default: @@ -92,15 +84,15 @@ string::size_type kb_sequence::parse(string const & s) && s[i + 2] == '-') { switch (s[i + 1]) { case 's': case 'S': - nmod |= ShiftMask; + nmod |= key_modifier::shift; i += 3; continue; case 'c': case 'C': - nmod |= ControlMask; + nmod |= key_modifier::ctrl; i += 3; continue; case 'm': case 'M': - nmod |= Mod1Mask; + nmod |= key_modifier::alt; i += 3; continue; default: @@ -111,23 +103,23 @@ string::size_type kb_sequence::parse(string const & s) string::size_type j = i; for (; j < s.length() && s[j] != ' '; ++j) tbuf += s[j]; // (!!!check bounds :-) - - KeySym key = XStringToKeysym(tbuf.c_str()); - if (key == NoSymbol) { - lyxerr[Debug::KBMAP] - << "kbmap.C: No such keysym: " - << tbuf << endl; + + LyXKeySymPtr key(LyXKeySymFactory::create()); + key->init(tbuf); + + if ( ! key->isOK() ) { return j; } + i = j; - + addkey(key, mod, nmod); - mod = 0; + mod = key_modifier::none; } } - + // empty sequence? - if (!length_) + if (sequence.size() == 0) return 0; // everything is fine @@ -141,12 +133,14 @@ string const kb_sequence::print() const //if (deleted_) // return buf; - - for (vector::size_type i = 0; i < length_; ++i) { - buf += kb_keymap::printKeysym(sequence[i], modifiers[i] & 0xffff); + + KeySequence::size_type i, length = sequence.size(); + + for (i = 0; i < length; ++i) { + buf += sequence[i]->print(modifiers[i].first); // append a blank - if (i + 1 < length_) { + if (i + 1 < length) { buf += ' '; } } @@ -175,26 +169,6 @@ void kb_sequence::mark_deleted() } -unsigned int kb_sequence::getsym() const -{ - if (length_ == 0) return NoSymbol; - return sequence[length_ - 1]; -} - - -char kb_sequence::getiso() const -{ - unsigned int const c = getsym(); - - lyxerr[Debug::KBMAP] << "Raw keysym: " - << hex << c << dec << endl; - lyxerr[Debug::KBMAP] << "byte 3: " - << hex << (c & 0xff00) << dec - << endl; - return kb_keymap::getiso(c); -} - - void kb_sequence::reset() { mark_deleted(); @@ -203,6 +177,6 @@ void kb_sequence::reset() void kb_sequence::clear() { - length_ = 0; + sequence.clear(); reset(); }