A bit more re-organization.
[lyx.git] / src / mathed / InsetMathMBox.cpp
blobcea14a23b950ece5e0bef5dc0ebd9c6be950579f
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.
6 * \author André Pönitz
8 * Full author contact details are available in file CREDITS.
9 */
11 #include <config.h>
13 #include "InsetMathMBox.h"
14 #include "MathData.h"
15 #include "MathStream.h"
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"
28 #include "support/debug.h"
30 using namespace std;
32 namespace lyx {
35 InsetMathMBox::InsetMathMBox(Buffer * buffer) : InsetMath(buffer), text_(buffer)
37 text_.paragraphs().clear();
38 text_.paragraphs().push_back(Paragraph());
42 InsetMathMBox::InsetMathMBox(Buffer * buffer, Layout const & layout)
43 : InsetMath(buffer), text_(buffer)
45 text_.paragraphs().clear();
46 text_.paragraphs().push_back(Paragraph());
47 text_.paragraphs().back().setLayout(layout);
51 Inset * InsetMathMBox::clone() const
53 return new InsetMathMBox(*this);
57 void InsetMathMBox::metrics(MetricsInfo & mi, Dimension & dim) const
59 TextMetrics & tm = mi.base.bv->textMetrics(&text_.text());
60 tm.metrics(mi, dim);
61 metricsMarkers2(dim);
65 void InsetMathMBox::draw(PainterInfo & pi, int x, int y) const
67 pi.base.bv->textMetrics(&text_.text()).draw(pi, x + 1, y);
68 drawMarkers(pi, x, y);
72 void InsetMathMBox::write(WriteStream & ws) const
74 if (ws.latex()) {
75 ws << "\\mbox{\n";
76 TexRow texrow;
77 OutputParams runparams(&buffer().params().encoding());
78 latexParagraphs(buffer(), text_.text(), ws.os(), texrow, runparams);
79 ws.addlines(texrow.rows());
80 ws << "}";
81 } else {
82 ws << "\\mbox{\n";
83 ostringstream os;
84 text_.text().write(os);
85 ws.os() << from_utf8(os.str());
86 ws << "}";
91 int InsetMathMBox::latex(odocstream & os, OutputParams const & runparams) const
93 os << "\\mbox{\n";
94 TexRow texrow;
95 latexParagraphs(buffer(), text_.text(), os, texrow, runparams);
96 os << "}";
97 return texrow.rows();
101 void InsetMathMBox::doDispatch(Cursor & cur, FuncRequest & cmd)
103 text_.text().dispatch(cur, cmd);
107 Text * InsetMathMBox::getText(int) const
109 return &text_.text();
113 void InsetMathMBox::cursorPos(BufferView const & bv,
114 CursorSlice const & sl, bool boundary, int & x, int & y) const
116 x = bv.textMetrics(&text_.text()).cursorX(sl, boundary);
117 y = bv.textMetrics(&text_.text()).cursorY(sl, boundary);
121 } // namespace lyx