mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
2c535ef9e9
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8459 a592a061-630c-0410-9148-cb99ea01b6c8
53 lines
1.1 KiB
C++
53 lines
1.1 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file math_mboxinset.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 "math_diminset.h"
|
|
#include "lyxtext.h"
|
|
|
|
class BufferView;
|
|
|
|
|
|
// not yet a substitute for the real text inset...
|
|
|
|
class MathMBoxInset : public MathDimInset {
|
|
public:
|
|
///
|
|
MathMBoxInset(BufferView & bv);
|
|
///
|
|
std::auto_ptr<InsetBase> clone() const;
|
|
/// 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 priv_dispatch(LCursor & cur, FuncRequest const & cmd);
|
|
|
|
///
|
|
void write(WriteStream & os) const;
|
|
///
|
|
bool inMathed() const { return false; }
|
|
|
|
///
|
|
LyXText * getText(int) const;
|
|
///
|
|
void getCursorPos(CursorSlice const & cur, int & x, int & y) const;
|
|
protected:
|
|
///
|
|
mutable LyXText text_;
|
|
///
|
|
BufferView * const bv_;
|
|
};
|
|
|
|
#endif
|