mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
85 lines
1.6 KiB
C++
85 lines
1.6 KiB
C++
|
/**
|
|||
|
* \file math_mboxinset.C
|
|||
|
* This file is part of LyX, the document processor.
|
|||
|
* Licence details can be found in the file COPYING.
|
|||
|
*
|
|||
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
|||
|
*
|
|||
|
* Full author contact details are available in file CREDITS.
|
|||
|
*/
|
|||
|
|
|||
|
#include <config.h>
|
|||
|
|
|||
|
#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<InsetBase> MathMBoxInset::clone() const
|
|||
|
{
|
|||
|
return auto_ptr<InsetBase>(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 << "}";
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
DispatchResult MathMBoxInset::priv_dispatch(LCursor & cur, FuncRequest const & cmd)
|
|||
|
{
|
|||
|
return 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;
|
|||
|
}
|