2006-04-15 09:54:24 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
2006-09-17 09:14:18 +00:00
|
|
|
* \file InsetMathPhantom.h
|
2006-04-15 09:54:24 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Georg Baum
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MATH_PHANTOMINSET_H
|
|
|
|
#define MATH_PHANTOMINSET_H
|
|
|
|
|
2006-09-17 09:14:18 +00:00
|
|
|
#include "InsetMathNest.h"
|
2006-04-15 09:54:24 +00:00
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
class InsetMathPhantom : public InsetMathNest {
|
2006-04-15 09:54:24 +00:00
|
|
|
public:
|
|
|
|
///
|
|
|
|
enum Kind {
|
|
|
|
phantom,
|
|
|
|
vphantom,
|
|
|
|
hphantom
|
|
|
|
};
|
|
|
|
///
|
2006-09-16 18:11:38 +00:00
|
|
|
explicit InsetMathPhantom(Kind);
|
2006-04-15 09:54:24 +00:00
|
|
|
///
|
|
|
|
void metrics(MetricsInfo & mi, Dimension & dim) const;
|
|
|
|
///
|
|
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
|
|
|
///
|
|
|
|
void write(WriteStream & os) const;
|
|
|
|
/// write normalized content
|
|
|
|
void normalize(NormalStream & ns) const;
|
|
|
|
///
|
|
|
|
void infoize(std::ostream & os) const;
|
|
|
|
private:
|
|
|
|
///
|
|
|
|
virtual std::auto_ptr<InsetBase> doClone() const;
|
|
|
|
///
|
|
|
|
Kind kind_;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|