mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
3072b1111e
* src/mathed/math_factory.C (createMathInset): handle \phantom, \hphantom and \vphantom * src/mathed/Makefile.am: add math_phantominset.[Ch] * src/mathed/math_phantominset.[Ch]: new phantom inset git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13680 a592a061-630c-0410-9148-cb99ea01b6c8
45 lines
855 B
C++
45 lines
855 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file math_phantominset.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 "math_nestinset.h"
|
|
|
|
class MathPhantomInset : public MathNestInset {
|
|
public:
|
|
///
|
|
enum Kind {
|
|
phantom,
|
|
vphantom,
|
|
hphantom
|
|
};
|
|
///
|
|
explicit MathPhantomInset(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(std::ostream & os) const;
|
|
private:
|
|
///
|
|
virtual std::auto_ptr<InsetBase> doClone() const;
|
|
///
|
|
Kind kind_;
|
|
};
|
|
|
|
#endif
|