2003-09-12 10:14:31 +00:00
|
|
|
|
// -*- C++ -*-
|
|
|
|
|
/**
|
2006-09-17 09:14:18 +00:00
|
|
|
|
* \file InsetMathBoldSymbol.h
|
2003-09-12 10:14:31 +00:00
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef MATH_BOLDSYMBOLINSET_H
|
|
|
|
|
#define MATH_BOLDSYMBOLINSET_H
|
|
|
|
|
|
2006-09-17 09:14:18 +00:00
|
|
|
|
#include "InsetMathNest.h"
|
2003-09-12 10:14:31 +00:00
|
|
|
|
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
namespace lyx {
|
|
|
|
|
|
|
|
|
|
|
2003-10-13 09:43:15 +00:00
|
|
|
|
/// Inset for AMSTeX's \boldsymbol
|
2006-09-16 18:11:38 +00:00
|
|
|
|
class InsetMathBoldSymbol : public InsetMathNest {
|
2003-09-12 10:14:31 +00:00
|
|
|
|
public:
|
2008-03-12 14:33:16 +00:00
|
|
|
|
enum Kind {
|
|
|
|
|
BOLD,
|
|
|
|
|
HEAVY
|
|
|
|
|
};
|
2003-09-12 10:14:31 +00:00
|
|
|
|
///
|
2008-03-12 14:33:16 +00:00
|
|
|
|
InsetMathBoldSymbol(Kind kind = BOLD);
|
2003-09-12 10:14:31 +00:00
|
|
|
|
///
|
2007-09-21 20:39:47 +00:00
|
|
|
|
void metrics(MetricsInfo & mi, Dimension & dim) const;
|
2003-09-12 10:14:31 +00:00
|
|
|
|
///
|
|
|
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
|
|
|
|
///
|
|
|
|
|
void metricsT(TextMetricsInfo const & mi, Dimension & dim) const;
|
|
|
|
|
///
|
|
|
|
|
void drawT(TextPainter & pi, int x, int y) const;
|
|
|
|
|
///
|
|
|
|
|
void validate(LaTeXFeatures & features) const;
|
|
|
|
|
///
|
|
|
|
|
void write(WriteStream & os) const;
|
|
|
|
|
///
|
2006-10-22 10:15:23 +00:00
|
|
|
|
void infoize(odocstream & os) const;
|
2008-03-12 14:33:16 +00:00
|
|
|
|
///
|
|
|
|
|
Kind kind_;
|
2004-11-23 23:04:52 +00:00
|
|
|
|
private:
|
2007-08-30 18:03:17 +00:00
|
|
|
|
virtual Inset * clone() const;
|
2003-09-12 10:14:31 +00:00
|
|
|
|
};
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
2003-09-12 10:14:31 +00:00
|
|
|
|
#endif
|