]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathChar.h
* up/down jumps between macro parameters
[lyx.git] / src / mathed / InsetMathChar.h
1 // -*- C++ -*-
2 /**
3  * \file InsetMathChar.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author André Pönitz
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef MATH_CHARINSET_H
13 #define MATH_CHARINSET_H
14
15 #include "InsetMath.h"
16
17 #include "Font.h"
18
19 namespace lyx {
20
21 /// The base character inset.
22 class InsetMathChar : public InsetMath {
23 public:
24         ///
25         explicit InsetMathChar(char_type c);
26         ///
27         bool metrics(MetricsInfo & mi, Dimension & dim) const;
28         ///
29         void draw(PainterInfo & pi, int x, int y) const;
30         ///
31         void metricsT(TextMetricsInfo const & mi, Dimension & dim) const;
32         ///
33         void drawT(TextPainter &, int x, int y) const;
34         ///
35         int kerning() const { return kerning_; }
36
37         ///
38         void write(WriteStream & os) const;
39         ///
40         void normalize(NormalStream & ns) const;
41         ///
42         void octave(OctaveStream & os) const;
43         ///
44         void mathmlize(MathStream & ms) const;
45         /// identifies Charinsets
46         InsetMathChar const * asCharInset() const { return this; }
47         ///
48         char_type getChar() const { return char_; }
49         ///
50         bool isRelOp() const;
51
52 private:
53         virtual std::auto_ptr<Inset> doClone() const;
54         /// the character
55         char_type char_;
56         /// cached kerning for superscript
57         mutable int kerning_;
58 };
59
60 } // namespace lyx
61
62 #endif