mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-28 04:17:43 +00:00
eb2d373e4b
Copy-pasting $#\n$ from text to LyX gives the error message: MathMacroArgument::MathMacroArgument: wrong Argument id and it is not hard to get a crash soon after. There are legitimate uses of # not followed by 1..9 in LaTeX and it is good to parse them correctly when importing from LaTeX.
98 lines
1.7 KiB
C++
98 lines
1.7 KiB
C++
/**
|
|
* \file MathMacroArgument.cpp
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Alejandro Aguilar Sierra
|
|
* \author André Pönitz
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "MathMacroArgument.h"
|
|
#include "MathStream.h"
|
|
#include "MathSupport.h"
|
|
|
|
#include "support/debug.h"
|
|
#include "support/lassert.h"
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
Inset * InsetMathHash::clone() const
|
|
{
|
|
return new InsetMathHash(*this);
|
|
}
|
|
|
|
|
|
void InsetMathHash::write(WriteStream & os) const
|
|
{
|
|
os << str_;
|
|
}
|
|
|
|
|
|
void InsetMathHash::metrics(MetricsInfo & mi, Dimension & dim) const
|
|
{
|
|
metricsStrRedBlack(mi, dim, str_);
|
|
}
|
|
|
|
|
|
void InsetMathHash::draw(PainterInfo & pi, int x, int y) const
|
|
{
|
|
drawStrRed(pi, x, y, str_);
|
|
}
|
|
|
|
|
|
void InsetMathHash::normalize(NormalStream & os) const
|
|
{
|
|
os << "[hash " << str_ << "] ";
|
|
}
|
|
|
|
|
|
MathMacroArgument::MathMacroArgument(int n)
|
|
: number_(n)
|
|
{
|
|
if (n < 1 || n > 9) {
|
|
LYXERR0("MathMacroArgument::MathMacroArgument: wrong Argument id: "
|
|
<< n);
|
|
LASSERT(false, n = 1);
|
|
}
|
|
|
|
// The profiler tells us not to use
|
|
// str_ = '#' + convert<docstring>(n);
|
|
// so we do the conversion of n to ASCII manually.
|
|
// This works because 1 <= n <= 9.
|
|
str_.resize(2);
|
|
str_[1] = '0' + n;
|
|
}
|
|
|
|
|
|
Inset * MathMacroArgument::clone() const
|
|
{
|
|
return new MathMacroArgument(*this);
|
|
}
|
|
|
|
|
|
void MathMacroArgument::setNumber(int n)
|
|
{
|
|
if (n < 1 || n > 9) {
|
|
LYXERR0("MathMacroArgument::setNumber: wrong Argument id: " << n);
|
|
LASSERT(false, return);
|
|
}
|
|
|
|
number_ = n;
|
|
str_[1] = '0' + n;
|
|
}
|
|
|
|
|
|
void MathMacroArgument::normalize(NormalStream & os) const
|
|
{
|
|
os << "[macroarg " << str_ << "] ";
|
|
}
|
|
|
|
|
|
} // namespace lyx
|