]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathMBox.cpp
Fix bug 5802 (http://bugzilla.lyx.org/show_bug.cgi?id=5802)
[lyx.git] / src / mathed / InsetMathMBox.cpp
1 /**
2  * \file InsetMathMBox.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author André Pönitz
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "InsetMathMBox.h"
14 #include "MathData.h"
15 #include "MathStream.h"
16
17 #include "BufferView.h"
18 #include "Buffer.h"
19 #include "BufferParams.h"
20 #include "Cursor.h"
21 #include "MetricsInfo.h"
22 #include "output_latex.h"
23 #include "OutputParams.h"
24 #include "Paragraph.h"
25 #include "TexRow.h"
26 #include "TextMetrics.h"
27
28 #include "support/debug.h"
29
30 using namespace std;
31
32 namespace lyx {
33
34
35 InsetMathMBox::InsetMathMBox()
36 {
37         text_.paragraphs().clear();
38         text_.paragraphs().push_back(Paragraph());
39 }
40
41
42 InsetMathMBox::InsetMathMBox(Layout const & layout)
43 {
44         text_.paragraphs().clear();
45         text_.paragraphs().push_back(Paragraph());
46         text_.paragraphs().back().setLayout(layout);
47 }
48
49
50 Inset * InsetMathMBox::clone() const
51 {
52         return new InsetMathMBox(*this);
53 }
54
55
56 void InsetMathMBox::metrics(MetricsInfo & mi, Dimension & dim) const
57 {
58         TextMetrics & tm = mi.base.bv->textMetrics(&text_);
59         tm.metrics(mi, dim);
60         metricsMarkers2(dim);
61 }
62
63
64 void InsetMathMBox::draw(PainterInfo & pi, int x, int y) const
65 {
66         pi.base.bv->textMetrics(&text_).draw(pi, x + 1, y);
67         drawMarkers(pi, x, y);
68 }
69
70
71 void InsetMathMBox::write(WriteStream & ws) const
72 {
73         if (ws.latex()) {
74                 ws << "\\mbox{\n";
75                 TexRow texrow;
76                 OutputParams runparams(&buffer().params().encoding());
77                 latexParagraphs(buffer(), text_, ws.os(), texrow, runparams);
78                 ws.addlines(texrow.rows());
79                 ws << "}";
80         } else {
81                 ws << "\\mbox{\n";
82                 ostringstream os;
83                 text_.write(buffer(), os);
84                 ws.os() << from_utf8(os.str());
85                 ws << "}";
86         }
87 }
88
89
90 int InsetMathMBox::latex(odocstream & os, OutputParams const & runparams) const
91 {
92         os << "\\mbox{\n";
93         TexRow texrow;
94         latexParagraphs(buffer(), text_, os, texrow, runparams);
95         os << "}";
96         return texrow.rows();
97 }
98
99
100 void InsetMathMBox::doDispatch(Cursor & cur, FuncRequest & cmd)
101 {
102         text_.dispatch(cur, cmd);
103 }
104
105
106 Text * InsetMathMBox::getText(int) const
107 {
108         return &text_;
109 }
110
111
112 void InsetMathMBox::cursorPos(BufferView const & bv,
113                 CursorSlice const & sl, bool boundary, int & x, int & y) const
114 {
115         x = bv.textMetrics(&text_).cursorX(sl, boundary);
116         y = bv.textMetrics(&text_).cursorY(sl, boundary);
117 }
118
119
120 } // namespace lyx