lyx_mirror/src/mathed/math_macroarg.C

63 lines
1.1 KiB
C++
Raw Normal View History

#ifdef __GNUG__
#pragma implementation
#endif
#include "math_macroarg.h"
#include "math_macro.h"
#include "math_defs.h"
#include "mathed/support.h"
#include "debug.h"
MathMacroArgument::MathMacroArgument(int n)
: number_(n)
{
if (n < 1 || n > 9) {
lyxerr << "MathMacroArgument::MathMacroArgument: wrong Argument id: "
<< n << std::endl;
}
}
MathInset * MathMacroArgument::clone() const
{
return new MathMacroArgument(*this);
}
void MathMacroArgument::draw(Painter & pain, int x, int y)
{
char str[] = "#0";
str[1] += number_;
drawStr(pain, LM_TC_TEX, size(), x, y, str);
}
void MathMacroArgument::metrics(MathStyles st)
{
char str[] = "#0";
str[1] += number_;
size_ = st;
mathed_string_dim(LM_TC_TEX, size(), str, ascent_, descent_, width_);
}
void MathMacroArgument::write(std::ostream & os, bool /*fragile*/) const
{
os << '#' << number_ << ' ';
}
void MathMacroArgument::writeNormal(std::ostream & os) const
{
os << "[macroarg " << number_ << "] ";
}
void MathMacroArgument::substitute(MathArray & array, MathMacro const & m) const
{
array.push_back(m.cell(number_ - 1));
}