lyx_mirror/src/mathed/InsetMathPhantom.h
Richard Heck ea44f30077 Ignore phantoms for now.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33984 a592a061-630c-0410-9148-cb99ea01b6c8
2010-03-31 20:31:15 +00:00

58 lines
1.0 KiB
C++

// -*- C++ -*-
/**
* \file InsetMathPhantom.h
* 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
#include "InsetMathNest.h"
namespace lyx {
class InsetMathPhantom : public InsetMathNest {
public:
///
enum Kind {
phantom,
vphantom,
hphantom
};
///
explicit InsetMathPhantom(Buffer * buf, Kind);
///
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(odocstream & os) const;
///
InsetCode lyxCode() const { return MATH_PHANTOM_CODE; }
/// Nothing for now
void mathmlize(MathStream &) const {}
/// Nothing for HTML
void htmlize(HtmlStream &) const {}
private:
///
virtual Inset * clone() const;
///
Kind kind_;
};
} // namespace lyx
#endif