mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
78 lines
1.6 KiB
C
78 lines
1.6 KiB
C
|
// -*- C++ -*-
|
|||
|
/**
|
|||
|
* \file QLyXKeySym.h
|
|||
|
* This file is part of LyX, the document processor.
|
|||
|
* Licence details can be found in the file COPYING.
|
|||
|
*
|
|||
|
* \author Asger and J<EFBFBD>rgen
|
|||
|
* \author John Levon
|
|||
|
*
|
|||
|
* Full author contact details are available in file CREDITS.
|
|||
|
*/
|
|||
|
|
|||
|
#ifndef QLYXKEYSYM_H
|
|||
|
#define QLYXKEYSYM_H
|
|||
|
|
|||
|
#include "frontends/LyXKeySym.h"
|
|||
|
|
|||
|
#include <qstring.h>
|
|||
|
//Added by qt3to4:
|
|||
|
#include <QKeyEvent>
|
|||
|
|
|||
|
class QKeyEvent;
|
|||
|
|
|||
|
/**
|
|||
|
* Qt-specific key press.
|
|||
|
*
|
|||
|
* This is some really sick stuff.
|
|||
|
*/
|
|||
|
class QLyXKeySym : public LyXKeySym {
|
|||
|
public:
|
|||
|
QLyXKeySym();
|
|||
|
|
|||
|
virtual ~QLyXKeySym() {}
|
|||
|
|
|||
|
/// delayed constructor
|
|||
|
void set(QKeyEvent * ev);
|
|||
|
|
|||
|
/// set from a LyX symbolic name
|
|||
|
virtual void init(std::string const & symbolname);
|
|||
|
|
|||
|
/// Is this a valid key?
|
|||
|
virtual bool isOK() const;
|
|||
|
|
|||
|
/// Is this a modifier key only?
|
|||
|
virtual bool isModifier() const;
|
|||
|
|
|||
|
/// return the LyX symbolic name
|
|||
|
virtual std::string getSymbolName() const;
|
|||
|
|
|||
|
/// Is this normal insertable text ? (last ditch attempt only)
|
|||
|
virtual bool isText() const;
|
|||
|
|
|||
|
/**
|
|||
|
* Return the value of the keysym into the local ISO encoding.
|
|||
|
* This converts the LyXKeySym to a 8-bit encoded character.
|
|||
|
* This relies on user to use the right encoding.
|
|||
|
*/
|
|||
|
virtual char getISOEncoded(std::string const & encoding) const;
|
|||
|
|
|||
|
/// Return a human-readable version of a key+modifier pair.
|
|||
|
virtual std::string const print(key_modifier::state mod) const;
|
|||
|
|
|||
|
///
|
|||
|
QString const qprint(key_modifier::state mod) const;
|
|||
|
|
|||
|
///
|
|||
|
int key() const {
|
|||
|
return key_;
|
|||
|
}
|
|||
|
private:
|
|||
|
/// the Qt sym value
|
|||
|
int key_;
|
|||
|
/// the event string value
|
|||
|
QString text_;
|
|||
|
};
|
|||
|
|
|||
|
#endif // QLYXKEYSYM_H
|