lyx_mirror/src/frontends/qt2/QLyXKeySym.C
John Levon ab66fde591 check for isNull
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5811 a592a061-630c-0410-9148-cb99ea01b6c8
2002-12-12 17:12:20 +00:00

114 lines
2.2 KiB
C

/**
* \file QLyXKeySym.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Asger and Juergen
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include "QLyXKeySym.h"
#include "qlkey.h"
#include "debug.h"
#include <qevent.h>
using std::endl;
QLyXKeySym::QLyXKeySym()
: LyXKeySym(), key_(0)
{
}
void QLyXKeySym::set(QKeyEvent * ev)
{
key_ = ev->key();
if (ev->text().isNull()) {
lyxerr[Debug::KEY] << "keyevent has isNull() text !" << endl;
text_ = "";
return;
}
text_ = ev->text();
lyxerr[Debug::KEY] << "Setting key to " << key_ << ", " << text_.latin1() << endl;
}
void QLyXKeySym::init(string const & symbolname)
{
key_ = string_to_qkey(symbolname);
text_ = symbolname.c_str();
lyxerr[Debug::KEY] << "Init key to " << key_ << ", " << text_.latin1() << endl;
}
bool QLyXKeySym::isOK() const
{
bool const ok(!(text_.isEmpty() && key_ == Qt::Key_unknown));
lyxerr[Debug::KEY] << "isOK is " << ok << endl;
return ok;
}
bool QLyXKeySym::isModifier() const
{
bool const mod(q_is_modifier(key_));
lyxerr[Debug::KEY] << "isMod is " << mod << endl;
return mod;
}
string QLyXKeySym::getSymbolName() const
{
string sym(qkey_to_string(key_));
if (sym.empty()) {
lyxerr[Debug::KEY] << "sym empty in getSymbolName()" << endl;
if (!text_.isEmpty())
sym = text_.latin1();
}
lyxerr[Debug::KEY] << "getSymbolName() -> " << sym << endl;
return sym;
}
char QLyXKeySym::getISOEncoded() const
{
lyxerr[Debug::KEY] << "getISO returning " << text_.latin1()[0] << endl;
return text_.latin1()[0];
}
bool QLyXKeySym::isText() const
{
if (text_.isEmpty()) {
lyxerr[Debug::KEY] << "text_ empty, isText() == false" << endl;
return false;
}
QChar const c(text_[0]);
lyxerr[Debug::KEY] << "isText for key " << key_
<< " isPrint is " << c.isPrint() << endl;
return c.isPrint();
}
bool operator==(LyXKeySym const & k1, LyXKeySym const & k2)
{
// note we ignore text_ here (non-strict ==), because
// text_ is not filled out by keymap initialisation
return static_cast<QLyXKeySym const &>(k1).key()
== static_cast<QLyXKeySym const &>(k2).key();
}