2001-02-26 12:53:35 +00:00
|
|
|
|
// -*- C++ -*-
|
2003-08-19 13:00:56 +00:00
|
|
|
|
/**
|
2006-09-17 09:14:18 +00:00
|
|
|
|
* \file InsetMathDecoration.h
|
2003-08-19 13:00:56 +00:00
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Alejandro Aguilar Sierra
|
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
|
|
|
|
|
2001-02-13 13:28:32 +00:00
|
|
|
|
#ifndef MATH_DECORATIONINSET_H
|
|
|
|
|
#define MATH_DECORATIONINSET_H
|
|
|
|
|
|
2006-09-17 09:14:18 +00:00
|
|
|
|
#include "InsetMathNest.h"
|
2001-02-13 13:28:32 +00:00
|
|
|
|
|
2001-02-26 12:53:35 +00:00
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
namespace lyx {
|
|
|
|
|
|
2002-07-17 10:25:33 +00:00
|
|
|
|
class latexkeys;
|
|
|
|
|
|
2003-08-19 13:00:56 +00:00
|
|
|
|
/// Decorations and accents over (below) a math object
|
2006-09-16 18:11:38 +00:00
|
|
|
|
class InsetMathDecoration : public InsetMathNest {
|
2001-02-13 13:28:32 +00:00
|
|
|
|
public:
|
|
|
|
|
///
|
2006-09-16 18:11:38 +00:00
|
|
|
|
explicit InsetMathDecoration(latexkeys const * key);
|
2001-02-13 13:28:32 +00:00
|
|
|
|
///
|
2003-03-21 14:20:48 +00:00
|
|
|
|
void draw(PainterInfo &, int x, int y) const;
|
2001-02-13 13:28:32 +00:00
|
|
|
|
///
|
2001-11-09 08:35:57 +00:00
|
|
|
|
void write(WriteStream & os) const;
|
2001-02-13 13:28:32 +00:00
|
|
|
|
///
|
2006-11-28 15:15:49 +00:00
|
|
|
|
bool metrics(MetricsInfo & mi, Dimension & dim) const;
|
2001-07-13 07:55:55 +00:00
|
|
|
|
///
|
2001-11-09 08:35:57 +00:00
|
|
|
|
void normalize(NormalStream & os) const;
|
2001-09-11 10:58:17 +00:00
|
|
|
|
///
|
2006-10-22 10:15:23 +00:00
|
|
|
|
void infoize(odocstream & os) const;
|
2002-06-24 15:37:14 +00:00
|
|
|
|
///
|
2001-09-11 10:58:17 +00:00
|
|
|
|
bool isScriptable() const;
|
2005-01-08 20:28:29 +00:00
|
|
|
|
///
|
|
|
|
|
void validate(LaTeXFeatures & features) const;
|
2001-08-15 06:53:25 +00:00
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
|
private:
|
2007-08-30 18:03:17 +00:00
|
|
|
|
virtual Inset * clone() const;
|
2001-02-13 13:28:32 +00:00
|
|
|
|
///
|
2001-08-15 06:53:25 +00:00
|
|
|
|
bool upper() const;
|
2001-02-13 13:28:32 +00:00
|
|
|
|
///
|
2001-08-15 06:53:25 +00:00
|
|
|
|
bool protect() const;
|
2001-09-12 15:56:09 +00:00
|
|
|
|
/// is it a wide decoration?
|
|
|
|
|
bool wide() const;
|
2005-01-08 20:28:29 +00:00
|
|
|
|
/// does this need AMS
|
2005-01-05 17:34:12 +00:00
|
|
|
|
bool ams() const;
|
2001-08-15 06:53:25 +00:00
|
|
|
|
|
|
|
|
|
///
|
2002-07-17 10:25:33 +00:00
|
|
|
|
latexkeys const * key_;
|
2001-08-06 17:20:26 +00:00
|
|
|
|
/// height cache of deco
|
|
|
|
|
mutable int dh_;
|
|
|
|
|
/// vertical offset cache of deco
|
|
|
|
|
mutable int dy_;
|
2002-03-19 16:55:58 +00:00
|
|
|
|
/// width for non-wide deco
|
|
|
|
|
mutable int dw_;
|
2001-02-13 13:28:32 +00:00
|
|
|
|
};
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
2001-02-13 13:28:32 +00:00
|
|
|
|
#endif
|