2001-11-05 17:08:45 +00:00
|
|
|
|
// -*- C++ -*-
|
2003-08-19 13:00:56 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file math_binaryopinset.h
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2001-11-05 17:08:45 +00:00
|
|
|
|
#ifndef MATH_BINARYOPINSET_H
|
|
|
|
|
#define MATH_BINARYOPINSET_H
|
|
|
|
|
|
|
|
|
|
#include "math_nestinset.h"
|
2003-09-05 14:09:58 +00:00
|
|
|
|
#include "metricsinfo.h"
|
2001-11-05 17:08:45 +00:00
|
|
|
|
|
|
|
|
|
|
2003-08-19 13:00:56 +00:00
|
|
|
|
/// An inset for multiplication
|
2001-11-05 17:08:45 +00:00
|
|
|
|
class MathBinaryOpInset : public MathNestInset {
|
|
|
|
|
public:
|
|
|
|
|
///
|
|
|
|
|
explicit MathBinaryOpInset(char op);
|
|
|
|
|
///
|
2003-09-05 14:09:58 +00:00
|
|
|
|
virtual std::auto_ptr<InsetBase> clone() const;
|
2001-11-05 17:08:45 +00:00
|
|
|
|
///
|
2003-03-21 14:20:48 +00:00
|
|
|
|
void draw(PainterInfo &, int x, int y) const;
|
2001-11-05 17:08:45 +00:00
|
|
|
|
///
|
2001-11-09 08:35:57 +00:00
|
|
|
|
void write(WriteStream & os) const;
|
2001-11-05 17:08:45 +00:00
|
|
|
|
///
|
2001-11-09 08:35:57 +00:00
|
|
|
|
void normalize(NormalStream &) const;
|
2001-11-05 17:08:45 +00:00
|
|
|
|
///
|
2003-03-21 14:20:48 +00:00
|
|
|
|
void metrics(MetricsInfo & st) const;
|
2001-11-05 17:08:45 +00:00
|
|
|
|
private:
|
|
|
|
|
///
|
|
|
|
|
int opwidth() const;
|
|
|
|
|
///
|
|
|
|
|
char op_;
|
|
|
|
|
///
|
2003-03-21 14:20:48 +00:00
|
|
|
|
mutable MetricsInfo mi_;
|
2001-11-05 17:08:45 +00:00
|
|
|
|
};
|
|
|
|
|
#endif
|