/** * \file math_mboxinset.C * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * * \author André Pönitz * * Full author contact details are available in file CREDITS. */ #include #include "math_mboxinset.h" #include "math_data.h" #include "math_mathmlstream.h" #include "BufferView.h" #include "buffer.h" #include "bufferparams.h" #include "debug.h" #include "metricsinfo.h" #include "paragraph.h" using std::auto_ptr; using std::endl; MathMBoxInset::MathMBoxInset(BufferView & bv) : text_(&bv, true), bv_(&bv) { text_.paragraphs().push_back(Paragraph()); text_.paragraphs().back(). layout(bv.buffer()->params().getLyXTextClass().defaultLayout()); text_.redoParagraph(text_.paragraphs().begin()); } auto_ptr MathMBoxInset::clone() const { return auto_ptr(new MathMBoxInset(*this)); } void MathMBoxInset::metrics(MetricsInfo & mi, Dimension & dim) const { text_.metrics(mi, dim); metricsMarkers2(dim); dim_ = dim; } void MathMBoxInset::draw(PainterInfo & pi, int x, int y) const { text_.draw(pi, x + 1, y); drawMarkers(pi, x, y); } void MathMBoxInset::write(WriteStream & os) const { os << "\\mbox{\n"; text_.write(*bv_->buffer(), os.os()); os << "}"; } void MathMBoxInset::priv_dispatch(LCursor & cur, FuncRequest const & cmd) { text_.dispatch(cur, cmd); } LyXText * MathMBoxInset::getText(int) const { return &text_; } void MathMBoxInset::getCursorPos(CursorSlice const & cur, int & x, int & y) const { x = text_.cursorX(cur); //y = text_.cursorY(cur); y = 100; }