]> git.lyx.org Git - lyx.git/blob - src/frontends/LyXKeySym.h
fix rbearing
[lyx.git] / src / frontends / LyXKeySym.h
1 // -*- C++ -*-
2 /**
3  * \file LyXKeySym.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Asger and Juergen
8  *
9  * Full author contact details are available in file CREDITS
10  */
11
12 #ifndef LYXKEYSYM_H
13 #define LYXKEYSYM_H
14
15 #include "LString.h"
16 #include <boost/shared_ptr.hpp>
17
18 /**
19  * This is a base class for representing a keypress.
20  * Each frontend has to implement this to provide
21  * the functionality that LyX needs in regards to
22  * key presses.
23  */
24 class LyXKeySym {
25 public:
26         LyXKeySym() {}
27
28         virtual ~LyXKeySym() {}
29
30         /// Initialize with the name of a key. F. ex. "space" or "a"
31         virtual void init(string const & symbolname) = 0;
32
33         /// Is this a valid key?
34         virtual bool isOK() const = 0;
35
36         /// Is this a modifier key only?
37         virtual bool isModifier() const = 0;
38
39         /// What is the symbolic name of this key? F.ex. "Return" or "c"
40         virtual string getSymbolName() const = 0;
41
42         /**
43          * Return the value of the keysym into the local ISO encoding.
44          * This converts the LyXKeySym to a 8-bit encoded character.
45          * This relies on user to use the right encoding.
46          */
47         virtual char getISOEncoded() const = 0;
48
49         /**
50          * We need to be able to equality compare these for the
51          * sake of the keymap business.
52          */
53         virtual bool operator==(LyXKeySym const & k) const = 0;
54 };
55
56 typedef boost::shared_ptr<LyXKeySym> LyXKeySymPtr;
57
58 #endif