mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
6c300f72a2
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15422 a592a061-630c-0410-9148-cb99ea01b6c8
64 lines
1.3 KiB
C++
64 lines
1.3 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file InsetMathMBox.h
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef MATH_MBOXINSET_H
|
|
#define MATH_MBOXINSET_H
|
|
|
|
#include "InsetMathDim.h"
|
|
#include "lyxtext.h"
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
// almost a substitute for the real text inset...
|
|
|
|
class InsetMathMBox : public InsetMathDim {
|
|
public:
|
|
///
|
|
explicit InsetMathMBox(BufferView & bv);
|
|
/// this stores metrics information in cache_
|
|
void metrics(MetricsInfo & mi, Dimension & dim) const;
|
|
/// draw according to cached metrics
|
|
void draw(PainterInfo &, int x, int y) const;
|
|
///
|
|
void drawSelection(PainterInfo & pi, int x, int y) const;
|
|
///
|
|
bool inMathed() const { return false; }
|
|
///
|
|
bool isActive() const { return true; }
|
|
|
|
///
|
|
void write(WriteStream & os) const;
|
|
///
|
|
int latex(Buffer const &, odocstream & os,
|
|
OutputParams const & runparams) const;
|
|
///
|
|
LyXText * getText(int) const;
|
|
///
|
|
void cursorPos(BufferView const & bv, CursorSlice const & sl,
|
|
bool boundary, int & x, int & y) const;
|
|
protected:
|
|
virtual void doDispatch(LCursor & cur, FuncRequest & cmd);
|
|
|
|
///
|
|
mutable LyXText text_;
|
|
///
|
|
BufferView * const bv_;
|
|
private:
|
|
virtual std::auto_ptr<InsetBase> doClone() const;
|
|
};
|
|
|
|
|
|
|
|
} // namespace lyx
|
|
#endif
|