lyx_mirror/src/mathed/InsetMathMBox.h
Richard Heck a01cb111a0 Change the interface to a paragraph's layout. We still store a LayoutPtr, but now privately, and make a Layout const & available to clients.
The need for a LayoutPtr arises from the fact that (a) we do not want to give our clients a Layout &, since we do not want them to be able to change our Layout; but (b) we also need to be able to change which layout is ours. So we cannot store a Layout const &. Or so it seems to the compiler.



git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23522 a592a061-630c-0410-9148-cb99ea01b6c8
2008-03-06 21:31:27 +00:00

71 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.
*/
#define MATH_MBOX
#ifdef MATH_MBOX
#ifndef MATH_MBOXINSET_H
#define MATH_MBOXINSET_H
#include "InsetMath.h"
#include "Text.h"
namespace lyx {
class Buffer;
class BufferView;
// almost a substitute for the real text inset...
class InsetMathMBox : public InsetMath {
public:
///
explicit InsetMathMBox();
explicit InsetMathMBox(Layout const & layout);
/// 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;
///
bool inMathed() const { return false; }
///
bool isActive() const { return true; }
///
void write(WriteStream & os) const;
///
int latex(odocstream & os, OutputParams const & runparams) const;
///
Text * getText(int) const;
///
void cursorPos(BufferView const & bv, CursorSlice const & sl,
bool boundary, int & x, int & y) const;
protected:
virtual void doDispatch(Cursor & cur, FuncRequest & cmd);
///
mutable Text text_;
private:
virtual Inset * clone() const;
};
} // namespace lyx
#endif //MATH_MBOXINSET_H
#endif //MATH_MBOX